/* ============================================================
   AK7 AUTO — PREMIUM CAR MODIFICATION | DUBAI
   Static Website Styles
   ============================================================ */

/* --- Google Fonts ---*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Cinzel:wght@400;600&display=swap');

/* --- Variables --- */
:root {
  --gold: #C9A227;
  --gold-h: #E5B92D;
  --purple: #4B0082;
  --bg: #050505;
  --paper: #0D0D12;
  --surface: #14141A;
  --border: rgba(255,255,255,0.07);
  --border-f: rgba(201,162,39,0.4);
  --text-1: #ffffff;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --green: #25D366;
  --green-h: #20BA5A;
  --radius: 0;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* --- Layout --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 96px; } }

.section { padding: 96px 0; }
.section-alt { background: var(--paper); }

/* --- Typography --- */
.heading-font { font-family: 'Outfit', sans-serif; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1; }
.text-gold { color: var(--gold); }
.overline {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.line { display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--text-1);
}
.section-title-center { text-align: center; }
.section-subtitle {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 20px auto 0;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 28px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-h);
  border-color: var(--gold-h);
  box-shadow: 0 0 32px rgba(201,162,39,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-whatsapp:hover { background: var(--green-h); border-color: var(--green-h); }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; object-fit: contain; mix-blend-mode: screen; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-wa { font-size: 0.8rem; font-weight: 600; color: var(--green); transition: color 0.2s; }
.nav-wa:hover { color: var(--green-h); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-menu .btn { width: 100%; margin-top: 8px; justify-content: center; }
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(5,5,5,0.55) 50%, rgba(5,5,5,0.3) 100%),
    linear-gradient(to right, rgba(5,5,5,0.7) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 900px;
}
.hero-overline { animation: fadeUp 0.9s var(--ease) 0.1s both; }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--text-1);
  margin-bottom: 28px;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s var(--ease) 0.55s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s var(--ease) 0.8s both;
}
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 0.9s var(--ease) 1.1s both;
}
.scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-3); }
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
}
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 48px;
  padding: 28px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  white-space: nowrap;
}
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 14px 0;
  background: #070707;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #3f3f46;
  padding: 0 16px;
  transition: color 0.2s;
}
.marquee-track span:hover { color: var(--gold); }
.marquee-sep { color: rgba(201,162,39,0.15); margin-left: 16px; }

/* ============================================================
   EMOTIONAL HOOK
   ============================================================ */
.emotional-hook { position: relative; overflow: hidden; }
.emotional-hook::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.05), transparent 70%);
  pointer-events: none;
}
.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
}
@media (max-width: 768px) { .hook-grid { grid-template-columns: 1fr; } }
.hook-col { border-left: 2px solid rgba(201,162,39,0.2); padding-left: 24px; }
.hook-col p { font-size: 1rem; color: var(--text-2); line-height: 1.8; margin-bottom: 20px; }
.hook-col p em { color: var(--text-1); font-style: italic; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}
.service-card.wide { grid-column: span 2; }
@media (max-width: 900px) { .service-card.wide { grid-column: span 1; } }
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-img { transform: scale(1.07); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(5,5,5,0.5) 50%, transparent 100%);
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, var(--bg) 10%, rgba(5,5,5,0.55) 50%, rgba(75,0,130,0.08) 100%);
}
.service-bar {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover .service-bar { opacity: 1; }
.service-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.service-content h3 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-1);
  margin-bottom: 6px;
}
.service-content p { font-size: 0.72rem; color: var(--text-3); line-height: 1.6; margin-bottom: 14px; }
.service-link {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--text-1); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-wrap { max-width: 900px; margin: 0 auto 40px; }
.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid var(--border);
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  transition: none;
}
.ba-before-overlay { position: absolute; inset: 0; background: rgba(5,5,5,0.25); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); }
.ba-circle {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-h);
  box-shadow: 0 0 24px rgba(201,162,39,0.4);
  z-index: 1;
}
.ba-circle svg { width: 18px; height: 18px; color: #000; }
.ba-label-after, .ba-label-before {
  position: absolute;
  top: 14px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  z-index: 5;
}
.ba-label-after { right: 14px; background: var(--gold); color: #000; }
.ba-label-before { left: 14px; background: rgba(30,30,30,0.9); color: var(--text-2); }
.ba-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
}
.ba-meta span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-3); }

/* ============================================================
   WHY AK7
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-copy h2 { margin-bottom: 28px; }
.why-copy p { font-size: 1rem; color: var(--text-2); line-height: 1.8; margin-bottom: 18px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.feature-item:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-2px); }
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 15px; height: 15px; color: var(--gold); }
.feature-item h3 { font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-1); margin-bottom: 4px; }
.feature-item p { font-size: 0.72rem; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 60px 0 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,162,39,0.2), transparent);
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 16px; } .steps-grid::before { display: none; } }
.step {
  text-align: center;
  padding: 0 16px 32px;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid rgba(201,162,39,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--gold);
  transition: border-color 0.3s;
  position: relative;
  z-index: 1;
}
.step:hover .step-num { border-color: var(--gold); }
.step h3 { font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-1); margin-bottom: 10px; }
.step p { font-size: 0.72rem; color: var(--text-3); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,162,39,0.25); transform: translateY(-4px); }
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: var(--gold); font-size: 13px; }
.quote-mark { font-family: 'Cinzel', serif; font-size: 3rem; color: rgba(201,162,39,0.25); line-height: 1; margin-bottom: -8px; }
.testimonial-card blockquote { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.testimonial-card .t-border { height: 1px; background: var(--border); margin-bottom: 14px; }
.testimonial-card .t-name { font-weight: 700; font-size: 0.85rem; color: var(--text-1); }
.testimonial-card .t-car { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-3); margin-top: 4px; }

/* ============================================================
   GALLERY
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 32px;
}
.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 8px 18px;
  border: 1px solid var(--border);
  color: var(--text-3);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { border-color: rgba(201,162,39,0.4); color: var(--gold); }
.filter-btn.active { background: var(--gold); color: #000; border-color: var(--gold); box-shadow: 0 0 16px rgba(201,162,39,0.3); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--paper);
}
.gallery-item.hidden { display: none; }
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 10px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-1); }
.gallery-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #000;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 7px 12px;
  transition: background 0.2s;
}
.gallery-cta:hover { background: var(--gold-h); }
.gallery-cat {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  color: var(--text-3);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 3px 8px;
}

/* ============================================================
   OBJECTION HANDLING (FAQ)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 6px; margin: 48px 0; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 16px;
  cursor: pointer;
  background: none;
  text-align: left;
}
.faq-toggle span {
  font-size: 0.95rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.4;
}
.faq-icon {
  width: 30px; height: 30px;
  background: rgba(201,162,39,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.faq-item.open .faq-icon { background: rgba(201,162,39,0.2); }
.faq-icon svg { width: 13px; height: 13px; color: var(--text-3); transition: all 0.3s; }
.faq-item.open .faq-icon svg { color: var(--gold); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; padding-top: 18px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-2); line-height: 1.8; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: url('assets/images/car-night.jpg') center/cover no-repeat;
}
.final-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.87);
}
.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,39,0.07), transparent 60%);
  pointer-events: none;
}
.final-cta-content { position: relative; z-index: 2; text-align: center; }
.final-cta-content h2 { margin-bottom: 20px; }
.final-cta-content .sub { font-size: 1.1rem; color: var(--text-2); line-height: 1.7; max-width: 600px; margin: 0 auto 12px; }
.final-cta-content .urgency { font-size: 0.82rem; color: var(--text-3); font-style: italic; margin-bottom: 48px; }
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) { .form-box { padding: 28px 20px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
}
.form-group input,
.form-group select {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: #3f3f46; }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select { background-color: #0a0a0a; cursor: pointer; }
.form-group select option { background: #0a0a0a; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-h); box-shadow: 0 0 28px rgba(201,162,39,0.35); }
.form-submit:disabled { background: rgba(201,162,39,0.4); cursor: not-allowed; }
.form-note { font-size: 0.7rem; color: var(--text-3); text-align: center; margin-top: 14px; }
.form-success {
  display: none;
  background: var(--surface);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 60px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 28px; height: 28px; color: var(--gold); }
.form-success h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 12px; }
.form-success p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; mix-blend-mode: screen; }
.footer-desc { font-size: 0.82rem; color: var(--text-3); line-height: 1.75; max-width: 240px; }
.footer-heading {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-1);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--gold); }
.f-icon {
  width: 30px; height: 30px;
  background: rgba(201,162,39,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.f-icon svg { width: 12px; height: 12px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 0.7rem; color: var(--text-3); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.45); }
.wa-float svg { width: 26px; height: 26px; color: #fff; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns .btn { width: 100%; }
  .form-box { padding: 28px 18px; }
  .steps-grid .step { text-align: left; display: flex; align-items: flex-start; gap: 16px; padding: 0 0 28px; }
  .steps-grid .step { text-align: left; }
  .step-num { width: 52px; height: 52px; flex-shrink: 0; margin: 0; }
}
