/* === VARIABLES === */
:root {
  --gold: #F5B731;
  --gold-light: #FFD166;
  --orange: #E87722;
  --navy: #0D1233;
  --navy-mid: #1E2547;
  --black: #080808;
  --white: #ffffff;
  --off-white: #F7F7F8;
  --light-gray: #F0F1F5;
  --mid-gray: #D1D5DB;
  --text-gray: #6B7280;
  --text-dark: #0D0D14;
  --surface: #FAFAFA;
  --surface-elevated: #FFFFFF;
  --glow-gold: rgba(245, 183, 49, 0.18);
  --glow-orange: rgba(232, 119, 34, 0.12);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(10px); opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.05s; }

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 36px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(245,183,49,0.35), 0 0 0 0 rgba(245,183,49,0);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(245,183,49,0.55), 0 0 0 4px rgba(245,183,49,0.12);
}
.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.7s ease;
}
.btn-primary.btn-large {
  font-size: 1rem;
  padding: 18px 48px;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 34px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: inline-block;
  transition: all 0.25s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-ghost.btn-large {
  font-size: 1rem;
  padding: 17px 48px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  border-radius: 100px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(245,183,49,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(245,183,49,0.45) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.7);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mobile-call {
  margin: 8px 32px 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black) !important;
  text-align: center;
  padding: 14px 32px !important;
  border-radius: 100px;
  font-weight: 700 !important;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.7) 35%,
    rgba(8,8,8,0.82) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 6s ease infinite;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(245,183,49,0.12) 0%, transparent 65%);
}
.hero-glow--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(232,119,34,0.1) 0%, transparent 65%);
  animation-delay: 3s;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 32px;
  animation: fadeUp 1s ease forwards;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-content h1 .gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot { animation: scrollDot 2s ease infinite; }

/* === STATS === */
.stats {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 44px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  color: var(--gold);
  font-size: 0.75em;
  vertical-align: super;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* === SECTION SHARED === */
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold); }
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header.light h2 { color: var(--white); }
.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

/* === SERVICES === */
.services {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.3), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: linear-gradient(135deg, rgba(240,241,245,0.8), rgba(220,222,230,0.5));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,0.04);
}
.service-card {
  background: var(--white);
  padding: 44px 38px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 38px; right: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0), transparent);
  transition: background 0.3s ease;
}
.service-card:hover {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF0 100%);
}
.service-card:hover::after {
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.35), transparent);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--orange);
  position: relative;
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,183,49,0.08), rgba(232,119,34,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .service-icon::before { opacity: 1; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.service-card p {
  color: var(--text-gray);
  line-height: 1.75;
  font-size: 0.91rem;
}

/* === MOBILE DETAILING === */
.detailing {
  padding: 140px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.detailing::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(245,183,49,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.detailing::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.detailing-sub { color: rgba(255,255,255,0.45) !important; }
.detailing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.detail-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.detail-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,183,49,0.2);
  transform: translateY(-6px);
}
.detail-card--featured {
  background: linear-gradient(145deg, rgba(245,183,49,0.08), rgba(232,119,34,0.05));
  border-color: rgba(245,183,49,0.25);
}
.detail-card--featured:hover { border-color: rgba(245,183,49,0.5); }
.detail-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.detail-price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.detail-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}
.detail-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.91rem;
  line-height: 1.75;
  flex: 1;
}
.detail-book {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,183,49,0.3);
  border-radius: 100px;
  padding: 10px 24px;
  text-align: center;
  transition: all 0.25s ease;
}
.detail-book:hover {
  background: rgba(245,183,49,0.1);
  border-color: var(--gold);
  color: var(--white);
}

/* === SERVICE AREAS === */
.areas {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
}
.areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.2), transparent);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.area-card {
  background: var(--white);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
}
.area-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(245,183,49,0.12), rgba(232,119,34,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.area-icon svg { width: 26px; height: 26px; }
.area-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}
.area-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.area-cities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 8px;
}
.area-cities li {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Book CTA location buttons */
.book-location-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.book-call {
  display: inline-block;
}

/* === GALLERY === */
.gallery {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 100%);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8,8,8,0.5);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,183,49,0.25);
}

/* === VAN PROOF === */
.van-proof {
  padding: 120px 0;
  background: var(--off-white);
}
.van-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.van-photo {
  flex: 1.1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}
.van-photo img { width: 100%; object-fit: cover; display: block; }
.van-text { flex: 1; }
.van-text .eyebrow { display: block; }
.van-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.van-text p {
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.van-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.van-list li {
  color: var(--text-dark);
  font-size: 0.97rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.van-list li svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* === WHY US === */
.why-us {
  padding: 140px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,183,49,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease infinite;
}
.why-us::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.06);
}
.why-card {
  background: rgba(255,255,255,0.01);
  padding: 56px 36px;
  transition: background 0.3s ease;
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0), transparent);
  transition: background 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.04); }
.why-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.4), transparent);
}
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(245,183,49,0.25), rgba(232,119,34,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.why-card p {
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  font-size: 0.91rem;
}

/* === REVIEWS === */
.reviews {
  padding: 140px 0;
  background: var(--surface);
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.2), transparent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.review-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 64px rgba(0,0,0,0.1);
  border-color: rgba(245,183,49,0.15);
}
.stars {
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.review-card p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 0.96rem;
  flex: 1;
  font-style: italic;
  opacity: 0.85;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,18,51,0.25);
}
.reviewer strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
}
.reviewer span {
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* === BOOK === */
.book {
  padding: 160px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1233 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245,183,49,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.book-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.book-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.book-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-bottom: 48px;
  line-height: 1.7;
}
.book-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}
.footer-logo { height: 44px; width: auto; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

/* === MOBILE STICKY CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  padding: 12px 16px 20px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 12px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 100px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245,183,49,0.4);
}
.sticky-cta-call {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}
.sticky-cta-call:hover { border-color: var(--gold); color: var(--gold); }
.sticky-cta-call svg { width: 20px; height: 20px; }

/* === COMING SOON TAG === */
.coming-soon-tag {
  display: inline-block;
  margin-left: 8px;
  background: rgba(245,183,49,0.12);
  border: 1px solid rgba(245,183,49,0.3);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  vertical-align: middle;
  white-space: nowrap;
}

/* === FAQ === */
.faq {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,183,49,0.25), transparent);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 32px rgba(0,0,0,0.04);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  transition: background 0.2s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item.open { background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF0 100%); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245,183,49,0.1), rgba(232,119,34,0.07));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faq-icon svg { width: 14px; height: 14px; color: var(--orange); transition: transform 0.3s ease; }
.faq-item.open .faq-icon { background: linear-gradient(135deg, rgba(245,183,49,0.18), rgba(232,119,34,0.12)); }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 40px 28px;
  color: var(--text-gray);
  font-size: 0.97rem;
  line-height: 1.85;
}
.faq-answer a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--gold); }

/* === LEAD CAPTURE / QUOTE FORM === */
.lead-capture {
  padding: 140px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lead-capture::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,183,49,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.lead-capture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lead-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}
.lead-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead-text p {
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 36px;
}
.lead-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-perks li {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lead-perks li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.lead-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 48px 44px;
  backdrop-filter: blur(12px);
}
#lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-optional {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.25);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(245,183,49,0.45);
  background: rgba(255,255,255,0.07);
}
.form-group textarea { resize: none; line-height: 1.7; }

/* SMS opt-in */
.sms-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  background: rgba(245,183,49,0.05);
  border: 1px solid rgba(245,183,49,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.sms-opt:hover { border-color: rgba(245,183,49,0.35); background: rgba(245,183,49,0.08); }
.sms-opt input[type="checkbox"] { display: none; }
.sms-box {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(245,183,49,0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sms-box svg { width: 12px; height: 10px; opacity: 0; transition: opacity 0.2s ease; }
.sms-opt input:checked ~ .sms-box {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
}
.sms-opt input:checked ~ .sms-box svg { opacity: 1; }
.sms-label-wrap { display: flex; flex-direction: column; gap: 3px; }
.sms-label-wrap strong { color: var(--white); font-size: 0.93rem; font-weight: 600; }
.sms-label-wrap span { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* Submit button */
.btn-form-submit {
  width: 100%;
  text-align: center;
  padding: 17px 32px;
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: none;
}
.btn-form-submit.loading .btn-label { opacity: 0.4; }
.btn-form-submit.loading .btn-spinner { display: block; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-privacy {
  text-align: center;
  color: rgba(255,255,255,0.22);
  font-size: 0.78rem;
  margin-top: -4px;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,183,49,0.15), rgba(232,119,34,0.1));
  border: 1.5px solid rgba(245,183,49,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.success-icon svg { width: 28px; height: 28px; }
.form-success h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.form-success p {
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-size: 0.97rem;
  max-width: 340px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .gallery-item--wide { grid-column: span 2; }
  .detailing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .van-inner { flex-direction: column; gap: 48px; }
  .van-photo { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; }
  .stat-divider { display: none; }
}

@media (max-width: 1024px) {
  .lead-inner { grid-template-columns: 1fr; gap: 56px; }
  .lead-text { text-align: center; }
  .lead-perks { align-items: flex-start; display: inline-flex; text-align: left; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .hero-content h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  .sticky-cta { display: flex; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4 / 3; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .detailing-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .area-card { padding: 44px 32px; }
  .book-location-btns { flex-direction: column; align-items: center; }
  .book-location-btns .btn-primary { width: 100%; max-width: 320px; text-align: center; }
  .faq-question { padding: 22px 24px; font-size: 0.97rem; }
  .faq-answer p { padding: 0 24px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-wrap { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .stat { flex: 0 0 100%; }
  .book { padding: 100px 24px; }
  .btn-primary.btn-large, .btn-ghost.btn-large { width: 100%; text-align: center; }
  .book-actions { flex-direction: column; }
}
