@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Lacquer&family=Rubik+Glitch&display=swap");

:root {
  --color-black: #0a0a0a;
  --color-charcoal: #111111;
  --color-dark: #1a1a1a;
  --color-darker: #0d0d0d;
  --color-accent: #00d4aa;
  --color-accent-light: #33e0be;
  --color-accent-dark: #00a888;
  --color-off-white: #f8f6f2;
  --color-white: #ffffff;
  --color-gray: #7a7a7a;
  --color-gray-light: #a8a8a8;
  --color-gray-dark: #2a2a2a;
  --font-display: "Anton", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-grunge: "Lacquer", cursive;
  --font-glitch: "Rubik Glitch", system-ui;
  --font-grunge: "Lacquer", cursive;
  --font-glitch: "Rubik Glitch", system-ui;
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-accent: 0 0 30px rgba(0, 212, 170, 0.25);
  --shadow-accent-strong: 0 0 50px rgba(0, 212, 170, 0.35);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
  --container-max: 1200px;
  --section-py: 100px;
  --nav-height: 80px;
}

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-black);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ============ GRUNGE TEXT EFFECT ============ */

.grunge {
  font-family: var(--font-display);
  position: relative;
  display: inline-block;
  filter: url(#grunge-filter);
  -webkit-filter: url(#grunge-filter);
}

.grunge-text {
  font-family: var(--font-grunge);
  position: relative;
  letter-spacing: 3px;
  text-shadow: 2px 2px 0px rgba(0,212,170,0.15), -1px -1px 0px rgba(0,0,0,0.3);
}

.grunge-text::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.grunge-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 2px;
}

/* ============ TYPOGRAPHY ============ */

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); letter-spacing: 1px; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: 0.5px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); letter-spacing: 0.5px; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.4rem); letter-spacing: 0.5px; }

.text-accent { color: var(--color-accent); }
.text-off-white { color: var(--color-off-white); }
.text-gray { color: var(--color-gray); }
.text-center { text-align: center; }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative; overflow: hidden;
  min-height: 56px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-black);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  box-shadow: var(--shadow-accent-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent; color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover {
  background: var(--color-accent); color: var(--color-black);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent; color: var(--color-off-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: var(--color-accent); color: var(--color-black);
  border-color: var(--color-accent);
}

.btn-sm { padding: 12px 28px; font-size: 0.85rem; min-height: 48px; }
.btn-lg { padding: 20px 48px; font-size: 1.05rem; min-height: 64px; }

/* ============ SECTIONS ============ */

.section { padding: var(--section-py) 0; position: relative; }
.section-dark { background-color: var(--color-charcoal); }
.section-dark h2 { color: var(--color-off-white); }
.section-dark h3 { color: var(--color-off-white); }
.section-dark .section-subtitle { color: var(--color-gray-light); }
.section-accent { background: linear-gradient(180deg, var(--color-off-white) 0%, #eceeea 100%); }

.section-label {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-accent);
  margin-bottom: 16px; display: block;
}
.section-title { margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--color-gray); max-width: 600px; line-height: 1.8; }

.gold-line {
  height: 2px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto; max-width: 200px;
}
.accent-line {
  height: 2px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto; max-width: 200px;
}

/* ============ PARTICLE BG ============ */

.particle-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden; pointer-events: none; z-index: 0;
}

.particle {
  position: absolute; border-radius: 50%;
  background: var(--color-accent); opacity: 0.12;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.12; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============ ANIMATED LINES ============ */

.gold-accent-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 60px; overflow: hidden; opacity: 0.25; z-index: 0;
}
.gold-accent-line .line {
  position: absolute; top: 50%; width: 200%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  animation: slideLine 8s linear infinite;
}
@keyframes slideLine { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ============ SCROLL REVEAL ============ */

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.stagger-children .reveal { transition-delay: calc(0.03s * var(--i)); }

/* ============ COUNTER ============ */

.counter {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent); display: block; line-height: 1;
}

/* ============ NAVIGATION ============ */

.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
  z-index: 1000; transition: all var(--transition-smooth); background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  height: 70px;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.navbar-brand {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--color-off-white); letter-spacing: 4px; transition: color var(--transition-fast);
}
.navbar.scrolled .navbar-brand { color: var(--color-accent); }
.navbar-brand span { color: var(--color-accent); }

.navbar-nav { display: flex; align-items: center; gap: 36px; }
.navbar-nav a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8); transition: color var(--transition-fast); position: relative;
}
.navbar.scrolled .navbar-nav a { color: rgba(255, 255, 255, 0.7); }
.navbar-nav a:hover { color: var(--color-accent); }
.navbar-nav a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--color-accent); transition: width var(--transition-smooth);
}
.navbar-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 28px !important; background: var(--color-accent) !important;
  color: var(--color-black) !important; border-radius: 2px; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-accent-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 5px;
}
.hamburger span { width: 28px; height: 2px; background: var(--color-off-white); transition: all var(--transition-fast); }
.navbar.scrolled .hamburger span { background: var(--color-accent); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(10, 10, 10, 0.98); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--color-off-white); letter-spacing: 4px; transition: color var(--transition-fast); }
.mobile-nav a:hover { color: var(--color-accent); }

/* ============ HERO ============ */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--color-black);
  padding: 0 24px;
}

.hero-bg-gradient {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(0, 212, 170, 0.06) 0%, transparent 40%),
    var(--color-black);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
  margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border: 1px solid rgba(0, 212, 170, 0.3);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 30px;
  animation: fadeInDown 1s ease-out;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

.hero-title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: var(--color-off-white); line-height: 1.05; margin-bottom: 24px;
  position: relative; z-index: 1; text-align: center; width: 100%;
}
.hero-title .gold { color: var(--color-accent); }

.hero-title .grunge-layer {
  position: relative; display: inline-block;
}

.hero-title .noise-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.04; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-gray-light); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.8; font-weight: 300;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* ============ ANIMATION KEYFRAMES ============ */

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes slideLine { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

/* ============ SERVICE CARDS ============ */

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

.service-card {
  background: var(--color-white); padding: 40px 32px;
  position: relative; overflow: hidden; transition: all var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.06); isolation: isolate;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition-smooth);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-dark); border-color: rgba(0, 212, 170, 0.2); }

.service-card .icon-wrap {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 212, 170, 0.1); border-radius: 4px; margin-bottom: 24px; transition: all var(--transition-smooth);
}
.service-card:hover .icon-wrap { background: var(--color-accent); }
.service-card:hover .icon-wrap svg { stroke: var(--color-black); }
.service-card .icon-wrap svg { width: 28px; height: 28px; stroke: var(--color-accent); transition: stroke var(--transition-smooth); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--color-black); }
.service-card p { color: var(--color-gray-dark); font-size: 0.95rem; line-height: 1.7; }

.service-card .card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-accent);
  transition: gap var(--transition-fast);
}
.service-card:hover .card-link { gap: 14px; }

/* ============ STATS ============ */

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.stat-item { text-align: center; padding: 40px 20px; }
.stat-number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--color-accent); display: block; line-height: 1; }
.stat-label { font-size: 0.85rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gray); margin-top: 12px; }

/* ============ TESTIMONIALS ============ */

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--color-white); padding: 36px; border-left: 3px solid var(--color-accent); transition: all var(--transition-smooth); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-dark); }
.testimonial-card .stars { color: var(--color-accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card .quote { font-size: 1rem; line-height: 1.8; color: var(--color-gray); margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--color-accent); display: flex; align-items: center; justify-content: center; color: var(--color-black); font-weight: 800; font-size: 1.1rem; }
.testimonial-card .author-name { font-weight: 700; color: var(--color-black); }
.testimonial-card .author-role { font-size: 0.8rem; color: var(--color-gray); }

/* ============ PORTFOLIO ============ */

.portfolio-filter { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; background: transparent;
  color: var(--color-gray); border: 1px solid rgba(0, 0, 0, 0.1); cursor: pointer; transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active { background: var(--color-black); color: var(--color-off-white); border-color: var(--color-black); }
.filter-btn.active { background: var(--color-accent); color: var(--color-black); border-color: var(--color-accent); }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.portfolio-item { position: relative; overflow: hidden; background: var(--color-dark); border-radius: 4px; aspect-ratio: 4/3; cursor: pointer; }
.portfolio-item .portfolio-img { width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-dark), var(--color-darker)); transition: transform var(--transition-slow); display: flex; align-items: center; justify-content: center; position: relative; }
.portfolio-item .portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transition: opacity var(--transition-smooth); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-img { transform: scale(1.08); }
.portfolio-item .portfolio-overlay h4 { color: var(--color-off-white); font-size: 1.3rem; margin-bottom: 6px; }
.portfolio-item .portfolio-overlay p { color: var(--color-accent); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.portfolio-item .portfolio-category { position: absolute; top: 20px; right: 20px; padding: 6px 14px; background: var(--color-accent); color: var(--color-black); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

/* ============ LOGOS STRIP ============ */

.logos-strip { padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.logos-strip .container { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.logo-item { font-family: var(--font-display); font-size: 1.4rem; color: rgba(255,255,255,0.2); letter-spacing: 3px; transition: color var(--transition-fast); }
.logo-item:hover { color: var(--color-accent); }

/* ============ WHY AUREVO ============ */

.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px; }
.why-item { text-align: center; padding: 40px 24px; }
.why-item .number { font-family: var(--font-display); font-size: 3.5rem; color: var(--color-accent); line-height: 1; margin-bottom: 16px; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 12px; }
.why-item p { color: var(--color-gray); font-size: 0.95rem; line-height: 1.7; }

/* ============ PROCESS ============ */

.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; position: relative; }
.process-steps::before { content: ""; position: absolute; top: 40px; left: 5%; right: 5%; height: 2px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); }
.process-step { text-align: center; position: relative; }
.process-step .step-num {
  width: 80px; height: 80px; margin: 0 auto 24px; border: 2px solid var(--color-accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--color-accent);
  position: relative; z-index: 1; background: var(--color-off-white); transition: all var(--transition-smooth);
}
.process-step:hover .step-num { background: var(--color-accent); color: var(--color-black); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--color-gray); font-size: 0.9rem; line-height: 1.6; }

/* ============ BENEFITS ============ */

.benefits-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--color-white); border: 1px solid rgba(0,0,0,0.06); transition: all var(--transition-smooth); }
.benefit-item:hover { border-color: var(--color-accent); transform: translateY(-2px); box-shadow: var(--shadow-dark); }
.benefit-item .benefit-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 212, 170, 0.1); border-radius: 4px; }
.benefit-item .benefit-icon svg { width: 20px; height: 20px; stroke: var(--color-accent); }
.benefit-item h4 { font-size: 1rem; margin-bottom: 6px; }
.benefit-item p { color: var(--color-gray); font-size: 0.9rem; line-height: 1.6; }

/* ============ PRICING ============ */

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.pricing-card { background: var(--color-white); padding: 48px 36px; border: 1px solid rgba(0,0,0,0.06); position: relative; transition: all var(--transition-smooth); isolation: isolate; }
.pricing-card.featured { border-color: var(--color-accent); }
.pricing-card.featured::before { content: "MOST POPULAR"; position: absolute; top: 20px; right: -36px; background: var(--color-accent); color: var(--color-black); padding: 6px 40px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-dark); }
.pricing-card .price-label { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--color-gray); margin-bottom: 12px; }
.pricing-card .price { font-family: var(--font-display); font-size: 3rem; color: var(--color-black); line-height: 1; margin-bottom: 8px; }
.pricing-card .price span { font-family: var(--font-body); font-size: 1rem; color: var(--color-gray); font-weight: 400; }
.pricing-card .price-desc { color: var(--color-gray); font-size: 0.9rem; margin-bottom: 30px; }
.pricing-card ul { margin-bottom: 36px; }
.pricing-card ul li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; color: var(--color-gray); display: flex; align-items: center; gap: 12px; }
.pricing-card ul li .check { width: 18px; height: 18px; flex-shrink: 0; background: var(--color-accent); display: flex; align-items: center; justify-content: center; }
.pricing-card ul li .check svg { width: 12px; height: 12px; stroke: var(--color-black); }

/* ============ BLOG ============ */

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.blog-card { background: var(--color-white); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: all var(--transition-smooth); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.blog-card .blog-img { background: linear-gradient(135deg, var(--color-dark), var(--color-darker)); position: relative; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: auto; object-fit: contain; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); display: block; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-featured-img { margin: 24px 0 32px; border-radius: 4px; overflow: hidden; max-height: 380px; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .blog-content { padding: 24px; }
.blog-card .blog-tag { display: inline-block; padding: 4px 12px; background: rgba(0, 212, 170, 0.1); color: var(--color-accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--color-gray); font-size: 0.88rem; line-height: 1.6; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.85rem; font-weight: 700; color: var(--color-accent); transition: gap var(--transition-fast); }
.blog-card:hover .read-more { gap: 10px; }

/* ============ CONTACT FORM ============ */

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-black); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; font-family: var(--font-body); font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.12); background: var(--color-white); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============ FOOTER ============ */

.footer { background: var(--color-black); color: rgba(255,255,255,0.7); padding-top: 44px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1.4fr 1.2fr; gap: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--color-off-white); letter-spacing: 2.5px; margin-bottom: 10px; }
.footer-brand span { color: var(--color-accent); }
.footer-about { font-size: 0.85rem; line-height: 1.55; margin-bottom: 16px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); transition: all var(--transition-fast); }
.footer-social a:hover { background: var(--color-accent); border-color: var(--color-accent); }
.footer-social a svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); transition: stroke var(--transition-fast); }
.footer-social a:hover svg { stroke: var(--color-black); }
.footer-col h4 { color: var(--color-off-white); font-family: var(--font-display); font-size: 1rem; margin-bottom: 12px; letter-spacing: 1px; }
.footer-col a { display: block; padding: 2.5px 0; font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--color-accent); }
/* Make the 3rd footer column (Services) display in 2 compact columns */
.footer-col:nth-child(3) { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; align-content: start; }
.footer-col:nth-child(3) h4 { grid-column: 1 / -1; margin-bottom: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.footer-newsletter p { font-size: 0.84rem; margin-bottom: 12px; line-height: 1.5; color: rgba(255,255,255,0.6); }
.footer-newsletter-form { display: flex; gap: 0; }
.footer-newsletter-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: var(--color-off-white); font-family: var(--font-body); font-size: 0.85rem; outline: none; }
.footer-newsletter-form input:focus { border-color: var(--color-accent); }
.footer-newsletter-form button { padding: 10px 20px; background: var(--color-accent); color: var(--color-black); border: none; font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background var(--transition-fast); }
.footer-newsletter-form button:hover { background: var(--color-accent-light); }
.footer-bottom { padding: 14px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: var(--color-accent); }

/* ============ ADMIN PANEL ============ */

.admin-toggle {
  position: fixed; bottom: 100px; right: 24px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-black); border: none; cursor: pointer; z-index: 9998;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-accent-strong); transition: all var(--transition-smooth); font-size: 1.4rem;
}
.admin-toggle:hover { transform: scale(1.1); }
.admin-panel {
  position: fixed; bottom: 0; right: 0; width: 420px; max-width: 100%; max-height: 80vh;
  background: var(--color-charcoal); z-index: 9999; transform: translateY(100%); transition: transform var(--transition-smooth); overflow-y: auto; box-shadow: -4px 0 40px rgba(0,0,0,0.5);
}
.admin-panel.open { transform: translateY(0); }
.admin-panel-header { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.admin-panel-header h3 { color: var(--color-off-white); font-family: var(--font-display); font-size: 1.2rem; }
.admin-panel-header .close-admin { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.5rem; transition: color var(--transition-fast); }
.admin-panel-header .close-admin:hover { color: var(--color-accent); }
.admin-panel-body { padding: 24px; }
.admin-field { margin-bottom: 20px; }
.admin-field label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.admin-field input, .admin-field textarea, .admin-field select {
  width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-off-white); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color var(--transition-fast);
}
.admin-field input:focus, .admin-field textarea:focus, .admin-field select:focus { border-color: var(--color-accent); }
.admin-field textarea { min-height: 80px; resize: vertical; }
.admin-save-btn { width: 100%; padding: 14px; background: var(--color-accent); color: var(--color-black); border: none; font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background var(--transition-fast); }
.admin-save-btn:hover { background: var(--color-accent-light); }

/* ============ WHATSAPP FLOATING BUTTON ============ */

.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white; border: none; cursor: pointer; z-index: 9000;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all var(--transition-smooth); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ============ LIVE CHAT WIDGET ============ */

.chat-widget {
  position: fixed; bottom: 100px; right: 28px; width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-black); border: none; cursor: pointer; z-index: 9000;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-accent-strong); transition: all var(--transition-smooth);
}
.chat-widget:hover { transform: scale(1.1); }
.chat-widget svg { width: 28px; height: 28px; }

.chat-popup {
  position: fixed; bottom: 180px; right: 28px; width: 380px; max-width: 100%; height: 480px;
  background: var(--color-white); border-radius: 8px; box-shadow: 0 10px 50px rgba(0,0,0,0.3); z-index: 9001;
  display: flex; flex-direction: column; overflow: hidden; transform: scale(0.8); opacity: 0; pointer-events: none; transition: all var(--transition-smooth); transform-origin: bottom right;
}
.chat-popup.open { transform: scale(1); opacity: 1; pointer-events: all; }
.chat-header { padding: 16px 20px; background: var(--color-black); color: var(--color-off-white); display: flex; justify-content: space-between; align-items: center; }
.chat-header h4 { font-family: var(--font-body); font-size: 0.95rem; color: var(--color-off-white); }
.chat-header .close-chat { background: none; border: none; color: var(--color-off-white); cursor: pointer; font-size: 1.2rem; }
.chat-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: var(--color-off-white); }
.chat-msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 0.85rem; line-height: 1.5; }
.chat-msg.bot { background: var(--color-white); border: 1px solid rgba(0,0,0,0.06); align-self: flex-start; }
.chat-msg.user { background: var(--color-accent); color: var(--color-black); align-self: flex-end; }
.chat-input-area { padding: 16px; border-top: 1px solid rgba(0,0,0,0.08); display: flex; gap: 8px; }
.chat-input-area input { flex: 1; padding: 10px 14px; border: 1px solid rgba(0,0,0,0.1); outline: none; font-family: var(--font-body); font-size: 0.85rem; }
.chat-input-area button { padding: 10px 16px; background: var(--color-accent); color: var(--color-black); border: none; cursor: pointer; font-weight: 700; font-size: 0.8rem; }

/* ============ LOADING SCREEN ============ */

.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--color-black); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-line { width: 0; height: 3px; background: var(--color-accent); animation: loaderExpand 0.8s ease-in-out forwards; }
@keyframes loaderExpand { 0% { width: 0; } 50% { width: 100%; } 100% { width: 100%; } }

/* ============ PAGE HEADER ============ */

.page-header { padding: 120px 0 80px; background: var(--color-charcoal); text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 170, 0.08) 0%, transparent 50%); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--color-off-white); margin-bottom: 16px; }
.page-header .breadcrumb { font-size: 0.85rem; color: var(--color-gray); letter-spacing: 2px; text-transform: uppercase; }
.page-header .breadcrumb a { color: var(--color-accent); }

/* ============ BACK TO TOP ============ */

.back-to-top {
  position: fixed; bottom: 28px; left: 28px; width: 44px; height: 44px; background: var(--color-black);
  border: 1px solid rgba(255,255,255,0.1); color: var(--color-off-white); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 9000; opacity: 0; visibility: hidden; transition: all var(--transition-smooth);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-accent); color: var(--color-black); border-color: var(--color-accent); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============ GRID PATTERN BG ============ */

.grid-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }


/* ============ HIGH ANIMATIONS ============ */

@keyframes glitchText {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -1px); }
  40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 3px); }
  60% { clip-path: inset(25% 0 58% 0); transform: translate(3px, 1px); }
  80% { clip-path: inset(54% 0 7% 0); transform: translate(-3px, -2px); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -3px); }
}

@keyframes heroTextReveal {
  0% { opacity: 0; transform: translateY(60px) skewY(3deg); filter: blur(10px); }
  60% { opacity: 1; transform: translateY(-5px) skewY(-1deg); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) skewY(0deg); filter: blur(0); }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  0% { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes slideUpBounce {
  0% { opacity: 0; transform: translateY(80px); }
  60% { opacity: 1; transform: translateY(-10px); }
  80% { transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes morphBg {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes borderGlow {
  0% { box-shadow: 0 0 5px rgba(0,212,170,0.2), inset 0 0 5px rgba(0,212,170,0.1); }
  50% { box-shadow: 0 0 20px rgba(0,212,170,0.4), inset 0 0 10px rgba(0,212,170,0.2); }
  100% { box-shadow: 0 0 5px rgba(0,212,170,0.2), inset 0 0 5px rgba(0,212,170,0.1); }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  50% { transform: translateY(-25px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0,212,170,0.5), 0 0 20px rgba(0,212,170,0.3), 0 0 40px rgba(0,212,170,0.1); }
  50% { text-shadow: 0 0 20px rgba(0,212,170,0.8), 0 0 40px rgba(0,212,170,0.5), 0 0 80px rgba(0,212,170,0.2); }
}

@keyframes stampIn {
  0% { opacity: 0; transform: scale(3) rotate(-15deg); }
  60% { opacity: 1; transform: scale(0.9) rotate(2deg); }
  80% { transform: scale(1.05) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes drawLine {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes morphShape {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Smooth scroll-triggered stagger animation */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.02s; }
  .stagger-children .reveal:nth-child(2) { transition-delay: 0.04s; }
  .stagger-children .reveal:nth-child(3) { transition-delay: 0.06s; }
  .stagger-children .reveal:nth-child(4) { transition-delay: 0.08s; }
  .stagger-children .reveal:nth-child(5) { transition-delay: 0.1s; }
  .stagger-children .reveal:nth-child(6) { transition-delay: 0.12s; }

/* Hero enhanced animations */
.hero-title {
  animation: heroTextReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-badge {
  animation: stampIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Service card hover enhanced */
.service-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 30px rgba(0,212,170,0.1);
}

/* Why Choose Us boxes animation */
.why-choose-card {
  background: var(--color-white);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.why-choose-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-choose-card:hover::before { transform: scaleX(1); }
.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 20px rgba(0,212,170,0.08);
  border-color: rgba(0,212,170,0.2);
}
.why-choose-card .card-number {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--color-accent);
  line-height: 1; margin-bottom: 16px; transition: all 0.4s ease;
}
.why-choose-card:hover .card-number {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(0,212,170,0.3);
}
.why-choose-card h4 {
  font-size: 1.1rem; margin-bottom: 10px; color: var(--color-black);
}
.why-choose-card p {
  color: var(--color-gray); font-size: 0.9rem; line-height: 1.7;
}

/* Morphing background blob for hero */
.hero-morph {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
  animation: morphShape 15s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}

/* Footer admin link */
.footer-admin-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.3s ease; cursor: pointer;
  background: none; font-family: var(--font-body);
}
.footer-admin-link:hover {
  color: var(--color-accent); border-color: var(--color-accent);
}

/* Admin auth overlay */
.admin-auth-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.admin-auth-overlay.active { opacity: 1; visibility: visible; }
.admin-auth-box {
  background: var(--color-charcoal); padding: 40px; width: 380px; max-width: 90%;
  border: 1px solid rgba(255,255,255,0.1);
}
.admin-auth-box h3 {
  color: var(--color-off-white); font-family: var(--font-display);
  font-size: 1.3rem; margin-bottom: 24px; text-align: center;
}
.admin-auth-box input {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); color: var(--color-off-white);
  font-family: var(--font-body); font-size: 0.95rem; outline: none;
  margin-bottom: 16px; transition: border-color 0.3s;
}
.admin-auth-box input:focus { border-color: var(--color-accent); }
.admin-auth-box .auth-btn {
  width: 100%; padding: 14px; background: var(--color-accent);
  color: var(--color-black); border: none; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.admin-auth-box .auth-btn:hover { background: var(--color-accent-light); }
.admin-auth-box .auth-error {
  color: #ff4444; font-size: 0.8rem; text-align: center; margin-top: 8px;
  display: none;
}
.admin-auth-box .auth-cancel {
  width: 100%; padding: 10px; background: transparent;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; cursor: pointer; margin-top: 8px; transition: all 0.3s;
}
.admin-auth-box .auth-cancel:hover { color: var(--color-off-white); border-color: rgba(255,255,255,0.3); }

/* Email float button */
.email-float {
  position: fixed; bottom: 100px; left: 28px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-black); border: none; cursor: pointer; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,212,170,0.4); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}
.email-float:hover { transform: scale(1.15); box-shadow: 0 6px 30px rgba(0,212,170,0.6); }
.email-float svg { width: 22px; height: 22px; }

/* Section reveal animations enhanced (Fast & Snappy) */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* Section divider animation */
.section-divider {
  width: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto; transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-divider.active { width: 200px; }



/* ============ HIGH ANIMATIONS ============ */

@keyframes glitchText {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -1px); }
  40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 3px); }
  60% { clip-path: inset(25% 0 58% 0); transform: translate(3px, 1px); }
  80% { clip-path: inset(54% 0 7% 0); transform: translate(-3px, -2px); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -3px); }
}

@keyframes heroTextReveal {
  0% { opacity: 0; transform: translateY(60px) skewY(3deg); filter: blur(10px); }
  60% { opacity: 1; transform: translateY(-5px) skewY(-1deg); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) skewY(0deg); filter: blur(0); }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  0% { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes slideUpBounce {
  0% { opacity: 0; transform: translateY(80px); }
  60% { opacity: 1; transform: translateY(-10px); }
  80% { transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes morphBg {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes borderGlow {
  0% { box-shadow: 0 0 5px rgba(0,212,170,0.2), inset 0 0 5px rgba(0,212,170,0.1); }
  50% { box-shadow: 0 0 20px rgba(0,212,170,0.4), inset 0 0 10px rgba(0,212,170,0.2); }
  100% { box-shadow: 0 0 5px rgba(0,212,170,0.2), inset 0 0 5px rgba(0,212,170,0.1); }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  50% { transform: translateY(-25px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0,212,170,0.5), 0 0 20px rgba(0,212,170,0.3), 0 0 40px rgba(0,212,170,0.1); }
  50% { text-shadow: 0 0 20px rgba(0,212,170,0.8), 0 0 40px rgba(0,212,170,0.5), 0 0 80px rgba(0,212,170,0.2); }
}

@keyframes stampIn {
  0% { opacity: 0; transform: scale(3) rotate(-15deg); }
  60% { opacity: 1; transform: scale(0.9) rotate(2deg); }
  80% { transform: scale(1.05) rotate(-1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes drawLine {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes morphShape {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Smooth scroll-triggered stagger animation */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.02s; }
  .stagger-children .reveal:nth-child(2) { transition-delay: 0.04s; }
  .stagger-children .reveal:nth-child(3) { transition-delay: 0.06s; }
  .stagger-children .reveal:nth-child(4) { transition-delay: 0.08s; }
  .stagger-children .reveal:nth-child(5) { transition-delay: 0.1s; }
  .stagger-children .reveal:nth-child(6) { transition-delay: 0.12s; }

/* Hero enhanced animations */
.hero-title {
  animation: heroTextReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-badge {
  animation: stampIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Service card hover enhanced (Snappy) */
.service-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15), 0 0 25px rgba(0,212,170,0.12);
  border-color: rgba(0,212,170,0.3);
}

/* Why Choose Us boxes animation (Fast) */
.why-choose-card {
  background: var(--color-white);
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.why-choose-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-choose-card:hover::before { transform: scaleX(1); }
.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1), 0 0 16px rgba(0,212,170,0.08);
  border-color: rgba(0,212,170,0.25);
}
.why-choose-card .card-number {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--color-accent);
  line-height: 1; margin-bottom: 12px; transition: transform 0.25s ease;
}
.why-choose-card:hover .card-number {
  transform: scale(1.08);
  text-shadow: 0 0 16px rgba(0,212,170,0.35);
}
.why-choose-card h4 {
  font-size: 1.05rem; margin-bottom: 8px; color: var(--color-black);
}
.why-choose-card p {
  color: var(--color-gray); font-size: 0.88rem; line-height: 1.6;
}

/* Morphing background blob for hero */
.hero-morph {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
  animation: morphShape 15s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}

/* Admin Auth Shake Animation */
@keyframes shakeAuth {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}
.admin-auth-box.shake {
  animation: shakeAuth 0.35s ease;
}

/* Admin Toast Notification */
.admin-toast {
  position: fixed; top: 24px; right: 24px;
  background: var(--color-charcoal); color: var(--color-off-white);
  padding: 14px 24px; border: 1px solid var(--color-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 15px rgba(0,212,170,0.2);
  z-index: 10002; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  transform: translateY(-20px); opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-toast.show {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.admin-toast svg {
  width: 20px; height: 20px; stroke: var(--color-accent); flex-shrink: 0;
}

/* Portfolio item remove button inside admin panel */
.admin-portfolio-list {
  margin-top: 12px; display: flex; flex-direction: column; gap: 8px;
}
.admin-portfolio-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.05); padding: 8px 12px; border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem; color: var(--color-off-white);
}
.admin-portfolio-del {
  background: rgba(255,68,68,0.15); border: 1px solid rgba(255,68,68,0.3);
  color: #ff6b6b; padding: 4px 8px; font-size: 0.75rem; cursor: pointer;
  transition: all 0.2s;
}
.admin-portfolio-del:hover {
  background: #ff4444; color: #fff;
}


/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 768px) {
  :root { --section-py: 70px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: none; }
  .mobile-nav.active { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid, .testimonials-grid, .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-morph { width: 200px; height: 200px; }
  .chat-popup { right: 10px; left: 10px; width: auto; bottom: 140px; height: 70vh; }
  .admin-panel { width: 100%; max-height: 90vh; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-newsletter-form { flex-wrap: wrap; }
  .footer-newsletter-form input { flex: 1 1 100%; }
  .footer-newsletter-form button { flex: 1 1 100%; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .email-float { bottom: 20px; left: 20px; width: 44px; height: 44px; }
  .chat-float { bottom: 80px; right: 20px; width: 50px; height: 50px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-info-grid { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .benefits-grid { grid-template-columns: 1fr !important; }
  .why-grid-3 { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .hero-morph { width: 140px; height: 140px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 46px; height: 46px; }
  .email-float { bottom: 16px; left: 16px; width: 40px; height: 40px; }
  .chat-float { bottom: 70px; right: 16px; width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

*:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
