/* ===================================
   DC - COMPLETE STYLESHEET
   =================================== */

/* --- ROOT VARIABLES --- */
:root {
  /* Premium Palette */
  --bg-primary: #0a0a0a;        /* Deep charcoal, not pure black */
  --bg-secondary: #141414;      /* Slightly lighter for cards */
  --bg-elevated: #1c1c1c;       /* For hover states */
  --text-primary: #f5f0e8;      /* Warm white, not pure white */
  --text-secondary: #8a8580;    /* Warm grey for labels */
  --text-muted: #5a5550;        /* For disabled/placeholder */
  --accent: #c5a059;            /* Muted gold — premium, not flashy */
  --accent-rgb: 197, 160, 89;   /* RGB components of muted gold */
  --accent-hover: #d4af37;      /* Slightly brighter on hover */
  --border: rgba(245, 240, 232, 0.08); /* Subtle borders */

  /* Legacy variable mappings for global compatibility */
  --primary: var(--accent);
  --primary-dark: var(--accent-hover);
  --primary-glow: rgba(197, 160, 89, 0.15);
  --dark: var(--bg-primary);
  --dark-2: var(--bg-secondary);
  --dark-3: var(--bg-secondary);
  --dark-4: var(--bg-elevated);
  --dark-card: var(--bg-secondary);
  --light: var(--bg-elevated);
  --white: var(--text-primary);
  --text-muted-legacy: var(--text-muted);
  --text-secondary-legacy: var(--text-secondary);

  --border-light: rgba(245, 240, 232, 0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Space Grotesk', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --nav-h: 56px;
  --offer-h: 36px;
  --margin: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   OFFER ANNOUNCEMENT BAR (Blue, Closeable)
   =================================== */
.offer-bar {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  height: auto;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  position: relative;
  z-index: 1001;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.offer-bar.hidden {
  display: none;
}
.offer-close-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.offer-close-btn:hover {
  opacity: 1;
}
.offer-bar strong {
  color: var(--accent);
  font-weight: 600;
}
.offer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.offer-tag-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.offer-bar-text {
  font-size: 13px;
  font-weight: 400;
  color: inherit;
  text-align: center;
  line-height: 1.4;
}

/* ===================================
   NAVBAR — Dark bg + pill-box links
   =================================== */
.navbar {
  position: fixed;
  top: var(--offer-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1.25rem var(--margin);
  transition: top 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  top: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Nav Container (layout wrapper) ── */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  pointer-events: all;
}

/* ── Logo ── */
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 1px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.logo-img-main {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── Nav Links wrapper (centered in capsule) ── */
.nav-links-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-links-box > .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.nav-links > li { position: relative; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 7px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--primary);
  background: rgba(197, 160, 89, 0.08);
}
/* Active link gold highlight */
.nav-links a.active-link {
  color: var(--primary) !important;
}
.chevron-icon {
  transition: transform 0.25s ease;
  opacity: 0.8;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-dropdown-wrap:hover .chevron-icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── Services Dropdown ── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(38, 38, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  min-width: 220px;
  padding: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82) !important;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent !important;
  text-decoration: none;
}
.dropdown-item:hover {
  background: rgba(255,255,255,0.07) !important;
  color: var(--white) !important;
  padding-left: 22px !important;
}

/* ── Phone CTA Pill Button ── */
.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #3b6ee8;
  border-radius: 50px;
  padding: 6px 14px 6px 8px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 3px 14px rgba(59,110,232,0.4);
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-phone-btn:hover {
  background: #2d5bcc;
  box-shadow: 0 5px 22px rgba(59,110,232,0.6);
  transform: translateY(-1px);
}
.nav-phone-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.nav-phone-icon svg { width: 14px; height: 14px; }
.nav-phone-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 1.2;
}
.nav-phone-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav-phone-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1px;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu (floating panel below capsule) ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(19, 21, 25, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px 20px;
  border-radius: 20px;
  margin: 6px 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  pointer-events: all;
}
.mobile-menu a {
  padding: 13px 0;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); padding-left: 6px; }
.mobile-phone-link {
  color: #3b6ee8 !important;
  font-weight: 700 !important;
}
.mobile-book-btn {
  margin-top: 14px;
  background: var(--accent) !important;
  color: var(--bg-primary) !important;
  text-align: center;
  padding: 15px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  border-bottom: none !important;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.2);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: var(--text-primary);
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.2) 100%), url('assets/hero_dc.png?v=3');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Smooth Reveal Trigger */
.hero.hero-loaded .hero-bg {
  opacity: 1;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  position: static;
  z-index: 2;
}
.hero-content {
  position: absolute;
  bottom: 15%;
  left: max(24px, calc(var(--margin) - 80px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  text-align: left;
  z-index: 2;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em; /* wider than current */
  text-transform: uppercase;
  color: var(--accent); /* muted gold, not white */
  margin-bottom: 1rem;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.6s forwards;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em; /* tighter for impact */
  line-height: 0.95; /* tight, editorial */
  color: var(--text-primary);
  margin-bottom: 1rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-cta-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.8s forwards;
}
.hero-cta-group .btn-primary,
.hero-cta-group .btn-secondary {
  font-size: 0.72rem;
  padding: 0.8rem 1.6rem;
}

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

/* Base button styles */
.btn-primary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(245, 240, 232, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 240, 232, 0.4);
}


.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ===================================
   SECTION COMMON STYLES
   =================================== */
.section-tag, .section-eyebrow {
  display: inline-block;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.section-tag.light, .section-eyebrow.light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--text-muted);
}

/* ── White capsule eyebrows for dark-background sections ── */
.gallery-section .section-eyebrow,
.comparison-section .section-eyebrow,
.reviews-section .section-eyebrow,
.faq-section .section-eyebrow,
.how-it-works .section-eyebrow {
  background: #ffffff;
  border-color: #ffffff;
  color: #131313;
  text-shadow: none;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: none;
}
.section-subtitle, .section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.gradient-text {
  color: var(--accent);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-primary);
  text-align: center;
}
.services-section .section-title {
  color: var(--text-primary);
}
.services-section .section-subtitle,
.services-section .section-sub {
  color: var(--text-secondary);
  margin-left: auto;
  margin-right: auto;
}
.services-section .section-eyebrow {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--accent);
  text-shadow: none;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(6, 110px);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card placements */
.exterior-card {
  grid-column: 1;
  grid-row: 1 / span 3;
}
.ceramic-card {
  grid-column: 1;
  grid-row: 4 / span 3;
}
.interior-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.correction-card {
  grid-column: 2;
  grid-row: 3 / span 2;
}
.engine-card {
  grid-column: 2;
  grid-row: 5 / span 2;
}

/* Card styling */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--bg-secondary);
}
.service-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.1) 100%);
  transition: background 0.3s ease;
}
.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.8;
  line-height: 1;
}
.service-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.03);
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.05) 100%);
}

/* Mobile responsive for services grid */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .service-card {
    height: 240px;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages-section {
  padding: 100px 0 48px;
  background: var(--bg-primary);
  text-align: center;
}
.packages-section .section-title {
  color: var(--text-primary);
}
.packages-section .section-subtitle,
.packages-section .section-sub {
  color: var(--text-secondary);
  margin-left: auto;
  margin-right: auto;
}
.packages-section .section-eyebrow {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--accent);
  text-shadow: none;
}
.package-tabs {
  display: none;
}
.packages-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 30px 4px 40px;
  align-items: center;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  text-align: left;
}
.packages-grid::-webkit-scrollbar {
  height: 6px;
}
.packages-grid::-webkit-scrollbar-track {
  background: transparent;
}
.packages-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.packages-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
.package-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 520px;
  scroll-snap-align: start;
}
.package-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15);
}
.package-card-featured {
  min-height: 550px;
  border-left: 2px solid var(--accent) !important;
  background: var(--bg-secondary);
}
.package-popular-badge {
  display: none;
}
.package-badge, .package-tier-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-family: var(--font);
}
.package-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.package-price, .package-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.price-from {
  font-size: 13px;
  color: var(--text-muted);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.package-features li.disabled {
  opacity: 0.25;
  text-decoration: line-through;
  color: var(--text-muted);
}
.check {
  color: var(--text-secondary);
  font-weight: 700;
}
.cross {
  color: var(--text-muted);
  opacity: 0.5;
}
.package-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  margin-top: auto;
  width: 100%;
}
.package-btn-primary, .package-btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.package-btn-primary:hover, .package-btn-outline:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}
.package-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 16px;
  text-align: center;
}

/* Add-ons */
.addons-section { margin-top: 20px; margin-bottom: 0; }
.addons-title, .addons-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-family: var(--font);
}
.addons-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.addons-grid::-webkit-scrollbar { display: none; }
.addon-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: none;
}
.addon-item:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.addon-price {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin-left: 2px;
}

/* ===================================
   VEHICLES SECTION
   =================================== */
.vehicles-section {
  padding: 48px 0 80px;
  background: var(--bg-primary);
  text-align: center;
}
.vehicles-section .section-title {
  color: var(--text-primary);
}
.vehicles-section .section-subtitle,
.vehicles-section .section-sub {
  color: var(--text-secondary);
  margin-left: auto;
  margin-right: auto;
}
.vehicles-section .section-eyebrow {
  background: var(--bg-secondary);
  border-color: var(--border);
  color: var(--accent);
  text-shadow: none;
}
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.vehicle-item {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  gap: 12px;
}
.vehicle-item:hover {
  border-color: transparent;
  background: transparent;
  transform: translateY(-6px);
  box-shadow: none;
}
.vehicle-icon-img {
  width: 100%;
  max-width: 160px;
  height: 100px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}
.vehicle-item:hover .vehicle-icon-img {
  transform: scale(1.07);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.18));
}
.vehicle-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-mono), monospace;
  transition: var(--transition);
}
.vehicle-item:hover span {
  color: var(--accent);
}

/* ===================================
   SHINE BANNER
   =================================== */
.shine-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.shine-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.shine-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}
.shine-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}
.shine-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.shine-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(197, 160, 89, 0.4);
}
.shine-content p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}
.shine-cta { font-size: 18px; padding: 18px 44px; }

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
  padding: 100px 0 0;
  background: var(--bg-secondary);
  text-align: center;
}
.gallery-section .container { margin-bottom: 48px; }
.gallery-section .section-subtitle,
.gallery-section .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gallery-scroller-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 40px 0 80px;
  background: var(--bg-secondary);
}
.gallery-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gallery-row::before, .gallery-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}
.gallery-row::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary) 0%, rgba(20, 20, 20, 0) 100%);
}
.gallery-row::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary) 0%, rgba(20, 20, 20, 0) 100%);
}
.gallery-track {
  display: flex;
  gap: 2px;
  width: max-content;
  will-change: transform;
}
.row-left .gallery-track {
  animation: scrollLeft 45s linear infinite;
}
.row-right .gallery-track {
  animation: scrollRight 45s linear infinite;
}
.gallery-row:hover .gallery-track,
.gallery-track:hover {
  animation-play-state: paused;
}
.scroller-item {
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0 !important;
  border: none;
  flex-shrink: 0;
}
.scroller-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0 !important;
  filter: brightness(0.9);
  transform: scale(1.15); /* Zoom in to crop out Gemini watermark */
  transform-origin: center;
  transition: filter 0.3s ease;
}
.scroller-item:hover img {
  filter: brightness(1.1);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===================================
   COMPARISON SECTION
   =================================== */
.comparison-section {
  padding: 100px 0;
  background: var(--dark-2);
  text-align: center;
}
.comparison-section .section-subtitle,
.comparison-section .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.comparison-table-wrap {
  overflow-x: auto;
  background: var(--bg-primary);
  border: none;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--bg-primary);
}
.comparison-table th {
  padding: 1.25rem 2rem;
  font-size: 14px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.12);
}
.comparison-table th.feature-col {
  width: 45%;
  text-align: left;
  color: var(--text-primary);
  font-weight: 400;
}
.comparison-table th.carwash-col {
  width: 27.5%;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 500;
}
.comparison-table th.dc-col {
  width: 27.5%;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  border-left: 1px solid rgba(197, 160, 89, 0.15);
}
.comparison-table td {
  padding: 1.25rem 2rem;
  font-size: 14px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  text-align: center;
  background: transparent;
}
.comparison-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 400;
}
.comparison-table td.dc-col {
  border-left: 1px solid rgba(197, 160, 89, 0.15);
}
.comparison-table tbody tr {
  transition: background 0.2s ease;
}
.comparison-table tbody tr:hover {
  background: rgba(245, 240, 232, 0.02) !important;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Symbol specific styling */
.symbol-no {
  color: var(--text-muted);
  font-weight: 400;
}
.symbol-yes {
  color: var(--text-secondary);
  font-weight: 500;
}
.symbol-premium {
  color: var(--accent);
  font-weight: 600;
}
.symbol-partial {
  color: var(--text-muted);
  font-weight: 400;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}
.reviews-section .section-subtitle { margin-left: auto; margin-right: auto; }
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.review-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card.card-large {
  grid-column: span 2;
  padding: 48px;
}
.review-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: rgba(197, 160, 89, 0.1);
  font-family: var(--font-serif);
  font-style: italic;
}
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.review-name {
  font-weight: 600;
  color: var(--text-primary);
}
.review-divider {
  color: var(--text-secondary);
}
.review-location {
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: normal;
}

@media (max-width: 768px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card.card-large {
    grid-column: span 1;
    padding: 32px;
  }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
}
.faq-section .section-subtitle { margin-left: auto; margin-right: auto; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-style: normal;
  display: inline-block;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 24px 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================
   BOOKING SECTION
   =================================== */
.booking-section {
  padding: 100px 0;
  background: var(--dark);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.booking-left { padding-top: 20px; }
.booking-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--white);
}
.booking-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-badge span { font-size: 20px; }
.booking-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.form-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 33.3%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.price-estimate-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(197, 160, 89, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
}
.estimate-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.estimate-value {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.form-group input,
.form-group select {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a8580' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: none;
  transition: border-color 0.3s ease;
}
.form-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.form-btn-group button {
  flex: 1;
}
.booking-form-wrap .btn-primary,
.booking-form-wrap .form-submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.booking-form-wrap .btn-primary:hover,
.booking-form-wrap .form-submit-btn:hover {
  background: var(--accent-hover);
}
.booking-form-wrap .btn-secondary,
.booking-form-wrap .form-btn-prev {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 0 !important;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking-form-wrap .btn-secondary:hover,
.booking-form-wrap .form-btn-prev:hover {
  background: var(--bg-elevated);
  border-color: var(--text-secondary);
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 60px; margin-bottom: 20px; }
.form-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.form-success p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }
.whatsapp-quick-book {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.whatsapp-quick-book a {
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.whatsapp-quick-book a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
  padding: 100px 0;
  background: var(--dark-2);
  text-align: center;
}
.how-it-works .section-subtitle { margin-left: auto; margin-right: auto; }
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  padding: 32px 20px;
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 8px;
  transition: var(--transition);
}
.step-item:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number {
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--primary);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  font-size: 28px;
  color: var(--primary);
  align-self: center;
  padding: 0 4px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--bg-primary);
  padding: 80px 0 40px;
}
.footer-logo-large {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo-large img {
  height: clamp(50px, 8vw, 85px);
  width: auto;
  opacity: 0.1;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.footer-col-title {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li,
.footer-col ul li a {
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--text-primary);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.copyright-text {
  font-family: var(--font);
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.footer-social-monochrome {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social-monochrome a {
  color: var(--text-secondary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social-monochrome a:hover {
  color: var(--accent);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.float-call-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.2);
  z-index: 900;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.float-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(197, 160, 89, 0.4);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(197, 160, 89, 0.2); }
  50% { box-shadow: 0 8px 40px rgba(197, 160, 89, 0.4), 0 0 0 8px rgba(197, 160, 89, 0.08); }
}
.sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: none;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 12px;
}
.sticky-call {
  flex: 1;
  padding: 14px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0 !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease, background-color 0.2s ease;
}
.sticky-call:active {
  transform: scale(0.98);
}
.sticky-book {
  flex: 2;
  padding: 14px;
  text-align: center;
  background: var(--accent);
  border-radius: 0 !important;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.1s ease, background-color 0.2s ease;
}
.sticky-book:active {
  transform: scale(0.98);
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
/* ── Intermediate: hide phone label text to save space ── */
@media (max-width: 1100px) {
  .nav-phone-label { display: none; }
  .nav-phone-text { gap: 0; }
  .nav-phone-number { font-size: 12px; }
  .nav-phone-btn { padding: 5px 12px 5px 8px; gap: 6px; }
  .nav-phone-icon { width: 26px; height: 26px; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; --announce-h: 36px; --margin: 20px; }
  .nav-links { display: none; }
  .nav-phone-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    letter-spacing: -0.02em;
  }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .float-call-btn { display: none; }
  .sticky-book-bar { display: flex; }
  .hero-bg {
    background-image: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%), url('assets/hero_dc.png?v=3');
    background-position: 70% center;
  }
  .hero-container { padding: calc(var(--nav-h) + 20px) 20px 60px; align-items: flex-start; }
  .hero-content {
    position: absolute;
    bottom: 20%;
    left: var(--margin);
    right: var(--margin);
    align-items: flex-start;
    text-align: left;
    max-width: none;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn-primary, .hero-cta-group .btn-secondary {
    width: 100%;
    flex: none;
    min-width: 0;
    justify-content: center;
  }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-bottom: 0; }
  /* Mobile stacked comparison table */
  .comparison-table-wrap {
    overflow-x: visible;
    background: transparent;
    border: none;
  }
  .comparison-table {
    display: block;
    min-width: 0;
    background: transparent;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tbody {
    display: block;
  }
  .comparison-table tbody tr {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid rgba(245, 240, 232, 0.06);
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  .comparison-table tbody tr:hover {
    background: var(--bg-secondary) !important;
  }
  .comparison-table td {
    display: block;
    width: 100% !important;
    padding: 0.5rem 0 !important;
    text-align: right;
    border-bottom: none !important;
    border-left: none !important;
    background: transparent !important;
  }
  .comparison-table td:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    border-bottom: 1px solid rgba(245, 240, 232, 0.06) !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.5rem;
  }
  .comparison-table td:nth-child(2) {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .comparison-table td:nth-child(2)::before {
    content: "Regular Wash";
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
  }
  .comparison-table td:nth-child(3) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245, 240, 232, 0.03) !important;
    padding-top: 0.75rem !important;
    margin-top: 0.25rem;
  }
  .comparison-table td:nth-child(3)::before {
    content: "DC";
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .announcement-bar { font-size: 11px; flex-wrap: wrap; height: auto; padding: 6px 12px; gap: 4px; }
  :root { --announce-h: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .packages-section, .services-section, .gallery-section,
  .comparison-section, .reviews-section, .faq-section,
  .booking-section, .how-it-works, .vehicles-section { padding: 60px 0; }
  .booking-form-wrap { padding: 24px; }
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===================================
   SELECTION COLOR
   =================================== */
::selection { background: rgba(197, 160, 89, 0.2); color: var(--white); }

/* ===================================
   ICON SVG HELPERS
   =================================== */
.badge-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 8px;
  flex-shrink: 0;
}
.badge-icon-svg svg {
  width: 16px;
  height: 16px;
}
.footer-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.footer-icon-svg svg {
  width: 14px;
  height: 14px;
}

/* Highlighted Timing Card */
.footer-timing-card {
  background: rgba(197, 160, 89, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.timing-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.timing-row .footer-icon-svg {
  color: var(--primary);
  margin-right: 0;
}

/* ===================================
   TRANSITIONS & ANIMATIONS (PREMIUM)
   =================================== */

/* Button hover background fills from bottom */
.btn-primary, .btn-secondary, .package-btn, .form-submit-btn, .form-btn-prev, .booking-form-wrap button {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

.btn-primary::before, .form-submit-btn::before, .booking-form-wrap .btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-hover);
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-secondary::before, .package-btn::before, .form-btn-prev::before, .booking-form-wrap .btn-secondary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before, .form-submit-btn:hover::before, .booking-form-wrap .btn-primary:hover::before {
  height: 100%;
}

.btn-secondary:hover::before, .package-btn:hover::before, .form-btn-prev:hover::before, .booking-form-wrap .btn-secondary:hover::before {
  height: 100%;
}

.btn-secondary:hover, .package-btn:hover, .form-btn-prev:hover, .booking-form-wrap .btn-secondary:hover {
  color: var(--bg-primary) !important;
  border-color: var(--accent) !important;
}

/* Page load & Scroll reveal animations */
.load-reveal, .reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.reveal {
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.load-reveal.revealed, .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion: Disable all animations and transitions */
@media (prefers-reduced-motion: reduce) {
  .load-reveal, .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: scroll !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* ===================================
   PORTFOLIO DEMO MODAL & FOOTER LINKS
   =================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
}

.modal-content {
  background: #141414;
  border: 1px solid rgba(245, 240, 232, 0.08);
  max-width: 420px;
  width: 90%;
  padding: 2.5rem;
  border-radius: 0 !important;
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: var(--text-primary);
}

.modal-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.modal-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.modal-divider {
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.modal-subheading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn-primary, .modal-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
}
.modal-btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
}
.modal-btn-primary:hover {
  background: var(--accent-hover);
}
.modal-btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.modal-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Footer Admin Link Styling */
.admin-demo-wrap {
  margin-left: 8px;
  color: var(--text-muted);
}
.admin-demo-link {
  color: var(--accent);
  text-decoration: underline;
  transition: var(--transition);
}
.admin-demo-link:hover {
  color: var(--accent-hover);
}
.admin-demo-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.8;
}

