/* ============================================
   JAMBO MEGA DETAIL — Luxury Theme
   Premium Hand Wash & Detailing · Woodstock, GA
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Legacy colors (kept for compatibility) */
  --brown: #6d3a1f;
  --brown-dark: #4a2512;
  --cyan: #00bcd4;
  --cyan-dark: #0097a7;
  --purple: #7b1fa2;
  --purple-dark: #4a148c;
  --crimson: #b71c1c;
  --crimson-dark: #7f0000;
  --teal: #c9a96e;
  --teal-dark: #b8985d;
  --teal-light: #d4b87a;

  /* Neutrals */
  --navy: #0a0f1a;
  --navy-light: #111827;
  --navy-deep: #060a14;
  --charcoal: #1a1f2e;
  --slate: #2a3040;
  --white: #ffffff;
  --off-white: #f8f8f9;
  --light-gray: #eef0f4;
  --mid-gray: #6b7280;
  --dark-text: #1f2937;
  --body-text: #374151;
  --text-light: #f0ede8;
  --text-muted-light: #9ca3af;

  --radius: 14px;
  --radius-lg: 24px;
  --radius-sm: 8px;

  /* Gold accent family — the luxury palette */
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-dark: #b8985d;

  /* Warm neutral */
  --cream: #faf8f5;

  --shadow: 0 4px 30px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 50px rgba(0,0,0,.1);
  --shadow-dark: 0 8px 40px rgba(0,0,0,.4);
  --shadow-gold: 0 4px 30px rgba(201, 169, 110, .1);
  --shadow-hover: 0 16px 60px rgba(0,0,0,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
section { position: relative; }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark-text);
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.08rem;
  color: var(--mid-gray);
  max-width: 640px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.accent-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
  margin: 16px 0;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* --- Dark section overrides --- */
.dark-section { background: var(--navy); color: var(--text-light); }
.dark-section .section-label { color: var(--gold-light); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-subtitle { color: var(--text-muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .88rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(201, 169, 110, .3);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(201, 169, 110, .1);
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
}
.btn-outline-dark:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: .85rem; }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(201, 169, 110, .15), 0 2px 20px rgba(0,0,0,.05);
}
.navbar.scrolled .nav-brand-name { color: var(--dark-text); }
.navbar.scrolled .nav-brand-tagline { color: var(--teal-dark); }
.navbar.scrolled .nav-links a { color: var(--dark-text); }
.navbar.scrolled .nav-links a:hover { color: var(--teal-dark); }
.navbar.scrolled .nav-toggle span { background: var(--dark-text); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}
.nav-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-brand-text { display: flex; flex-direction: column; overflow: hidden; }
.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
  transition: color var(--transition);
}
.nav-brand-tagline {
  font-size: .65rem;
  color: var(--teal-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links {
  display: none;
  gap: 32px;
}
.nav-links a {
  color: var(--text-light);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: none;
  white-space: nowrap;
  padding: 10px 28px;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 26, .98);
  backdrop-filter: blur(16px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ============================================
   HERO  (Dark)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease forwards;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6,10,20,.92) 0%, rgba(10,15,26,.7) 40%, rgba(10,15,26,.6) 60%, rgba(6,10,20,.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110,.12);
  border: 1px solid rgba(201, 169, 110,.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .75rem;
  color: var(--teal-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--white);
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.9;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 110, .2);
}
.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   ABOUT  (White)
   ============================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-image-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}
.about-image-badge .badge-text { font-size: .8rem; line-height: 1.4; color: var(--dark-text); }
.about-image-badge .badge-text strong { display: block; color: var(--teal-dark); font-size: .85rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.about-feature {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.about-feature:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 1.1rem;
}
.about-feature h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-text);
}
.about-feature p {
  font-size: .8rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

/* ============================================
   SERVICES  (Light Gray)
   ============================================ */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201, 169, 110, .3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 110, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-dark);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-text);
}
.service-card p {
  font-size: .9rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================
   PRICING / PACKAGES  (Dark)
   ============================================ */
.pricing { background: var(--navy); color: var(--text-light); }
.pricing .section-title { color: var(--white); }
.pricing .section-label { color: var(--gold-light); }
.pricing .section-subtitle { color: var(--text-muted-light); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 50px;
}
.pricing-toggle span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted-light);
}
.pricing-toggle span.active { color: var(--teal); }
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--slate);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}
.toggle-switch.active { background: var(--teal); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch.active::after { transform: translateX(24px); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

/* --- Individual Pricing Card Colors --- */
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  color: var(--white);
  border: 1px solid rgba(201, 169, 110, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,.5);
  border-color: rgba(201, 169, 110, .2);
}
/* Subtle colored top border accent instead of full gradient background */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.pricing-card.card-brown::before,
.pricing-card.card-cyan::before,
.pricing-card.card-purple::before,
.pricing-card.card-crimson::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.pricing-badge {
  position: absolute;
  top: 4px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: .5px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-price .amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--teal-light);
  letter-spacing: -1px;
}
.pricing-price .period {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.pricing-note {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  line-height: 1.5;
}
.pricing-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 20px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.pricing-features li .check {
  color: var(--teal-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card .btn {
  width: 100%;
  justify-content: center;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  margin-top: auto;
  backdrop-filter: blur(4px);
}
.pricing-card .btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110,.3);
}

/* --- Pricing Row Labels --- */
.pricing-row-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  margin-top: 8px;
}
.pricing-row-label + .pricing-grid { margin-bottom: 40px; }

/* --- Pricing Tabs --- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}
.pricing-tab {
  background: var(--slate);
  color: var(--text-muted-light);
  border: 1px solid rgba(255,255,255,.1);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: .5px;
}
.pricing-tab:hover {
  background: rgba(201, 169, 110,.15);
  color: var(--teal-light);
  border-color: var(--teal);
}
.pricing-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: var(--gold);
}
.pricing-tab-content {
  display: none;
}
.pricing-tab-content.active {
  display: block;
}

/* ============================================
   COMMUNITY / KINDNESS  (White)
   ============================================ */
.community { background: var(--white); }
.community-intro {
  max-width: 700px;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}
.community-card {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, .12);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all var(--transition);
}
.community-card:hover {
  border-color: rgba(201, 169, 110, .3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.community-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 110, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--teal-dark);
}
.community-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-text);
}
.community-card p {
  font-size: .88rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================
   GLEAMING CARS CAROUSEL
   Auto-rotating 3-visible-slide carousel.
   Center slide = full opacity; side slides = dimmed.
   Matches Trail Hand Wash "Gleaming Cars in Action" effect.
   ============================================ */

/* Section background — light gray to contrast with surrounding dark/white sections */
.gleaming-carousel-section {
  background: var(--navy);
  overflow: hidden;              /* prevent horizontal scroll from carousel */
}
.gleaming-carousel-section .section-label { color: var(--gold-light); }
.gleaming-carousel-section .section-title { color: var(--white); }
.gleaming-carousel-section .section-subtitle { color: var(--text-muted-light); }

/* Viewport crops side images — only ~60% of the track is visible */
.gleaming-viewport {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  /* Width extends beyond container so side images peek from edges */
  width: 80%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Track holds all slides in a row; slides via translateX */
.gleaming-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease-in-out;  /* smooth slide animation */
  will-change: transform;
}

/* Each slide: fixed fraction of viewport width, side-by-side */
.gleaming-slide {
  flex: 0 0 50%;                /* center slide takes ~50% of viewport */
  padding: 0 6px;               /* small gap between slides */
  opacity: 0.3;                 /* dimmed by default (side slides) */
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: scale(0.92);       /* slightly smaller when not active */
  position: relative;            /* anchor for caption overlay */
}

/* Active/center slide: full opacity and full scale */
.gleaming-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Images fill their slide container */
.gleaming-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}

/* ---- Always-visible caption overlay ---- */
/* Anchored to bottom of each slide; gradient keeps text readable */
.gleaming-caption {
  position: absolute;
  bottom: 0;
  left: 6px;                     /* match slide padding */
  right: 6px;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(10, 15, 26, .85) 0%, rgba(10, 15, 26, .55) 60%, transparent 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;          /* don't block hover/scroll on the slide */
}
/* Category tag — teal pill, larger for readability */
.gleaming-caption-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}
/* Vehicle name — bold and prominent */
.gleaming-caption strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
/* Description text — readable size */
.gleaming-caption p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
  margin: 0;
}

/* Responsive: adjust slide widths and image height at smaller screens */
@media (max-width: 768px) {
  .gleaming-viewport {
    width: 92%;
  }
  .gleaming-slide {
    flex: 0 0 70%;              /* show mostly one image on mobile */
  }
  .gleaming-slide img {
    height: 280px;
  }
  /* Slightly smaller caption text on mobile */
  .gleaming-caption {
    padding: 16px 12px 12px;
  }
  .gleaming-caption strong {
    font-size: 1rem;
  }
  .gleaming-caption p {
    font-size: .82rem;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .gleaming-slide {
    flex: 0 0 50%;
  }
  .gleaming-slide img {
    height: 340px;
  }
}
@media (min-width: 1024px) {
  .gleaming-viewport {
    width: 85%;
    max-width: 1200px;
  }
  .gleaming-slide {
    flex: 0 0 40%;              /* ~40% so 3 slides comfortably visible */
  }
  .gleaming-slide img {
    height: 420px;
  }
  .gleaming-caption {
    padding: 24px 20px 18px;
  }
}


/* ============================================
   REVIEWS  (Light Gray)
   ============================================ */
.reviews { background: var(--off-white); }
.reviews .section-label { color: var(--gold-dark); }
.reviews .section-title { color: var(--dark-text); }
/* Infinite marquee — CSS-only continuous scroll (Zips-style) */
@keyframes reviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Break out of .container to span full viewport width */
.reviews-container {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 80s linear infinite;
}
.reviews-container:hover .reviews-track {
  animation-play-state: paused;
}
.review-card {
  flex: 0 0 300px;
  width: 300px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .review-card { flex: 0 0 360px; width: 360px; }
}
.review-card-inner {
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid rgba(201, 169, 110, .12);
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
  text-align: center;
  background: var(--navy);
  transition: all var(--transition);
}
.review-card-inner:hover {
  border-color: rgba(201, 169, 110, .25);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
/* Override color variants — unified luxury dark */
.review-card-inner.card-brown,
.review-card-inner.card-cyan,
.review-card-inner.card-purple,
.review-card-inner.card-crimson {
  background: var(--navy);
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.1rem;
}
.review-text {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.review-author strong {
  color: var(--teal-light);
  font-size: .95rem;
}
.review-author span {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
}

/* ============================================
   CONTACT  (White)
   ============================================ */
.contact { background: var(--cream); }

/* Spray Wax Promo */
.spray-wax-promo {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, .15);
}
.promo-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.promo-tagline {
  color: var(--teal-light);
  font-size: .95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.promo-steps {
  display: grid;
  gap: 32px;
}
.promo-step h4 {
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.promo-step p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}
.promo-tags {
  margin-top: 12px;
  line-height: 2;
}
.promo-tags span {
  color: var(--teal-light);
  font-size: .9rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
.contact-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(201, 169, 110,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark-text);
}
.contact-card p, .contact-card a {
  font-size: .85rem;
  color: var(--mid-gray);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, .12);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark-text);
}
.contact-form-wrap .form-sub {
  font-size: .88rem;
  color: var(--mid-gray);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--dark-text);
  font-size: .9rem;
  font-family: var(--font);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(201, 169, 110,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ============================================
   MAP
   ============================================ */
.map-section { background: var(--white); padding: 60px 0 80px; }
.map-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.map-info .section-label { text-align: left; }
.map-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, .15);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================================
   FOOTER  (Dark)
   ============================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 169, 110, .3);
  padding: 60px 0 0;
  color: var(--text-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand-tagline {
  display: block;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-top: 2px;
}
.footer-about p {
  font-size: .85rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted-light);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 3px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted-light);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-muted-light);
}
.footer-hours-row .day { color: var(--text-light); font-weight: 500; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-light);
  transition: all var(--transition);
  font-size: .75rem;
  font-weight: 700;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 169, 110, .1);
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted-light);
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border: none;
  box-shadow: 0 4px 20px rgba(201, 169, 110,.3);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.chat-toggle:hover { transform: scale(1.08); }
.chat-toggle svg { width: 24px; height: 24px; }
.chat-window {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 340px;
  max-height: 440px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 900;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-window.open { display: flex; }
.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
}
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  background: var(--white);
}
.chat-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: .85rem;
  line-height: 1.5;
  max-width: 85%;
}
.chat-msg.bot {
  background: var(--off-white);
  color: var(--body-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--teal);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-input {
  display: flex;
  border-top: 1px solid var(--light-gray);
}
.chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: var(--dark-text);
  font-size: .85rem;
  font-family: var(--font);
}
.chat-input input:focus { outline: none; }
.chat-input button {
  background: none;
  border: none;
  color: var(--teal-dark);
  padding: 14px 16px;
  font-weight: 700;
  font-size: .85rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}
.blog-hero .section-title { color: var(--white); }
.blog-hero .section-label { color: var(--gold-light); }
.blog-hero .section-subtitle { color: var(--text-muted-light); margin-left: auto; margin-right: auto; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(201, 169, 110, .1);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 169, 110, .25);
}
.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.blog-card-body {
  padding: 28px;
}
.blog-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: .92rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card-meta {
  font-size: .78rem;
  color: var(--text-muted-light);
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 12px;
}
.blog-card-link:hover { color: var(--teal); }

/* Blog Article Page */
.blog-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.blog-article h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 32px 0 14px;
}
.blog-article h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 24px 0 10px;
}
.blog-article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 18px;
}
.blog-article ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.blog-article ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 8px;
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 24px;
}
.blog-back-link:hover { color: var(--teal); }

/* ============================================
   BOOKING STEPS — How to Book Section
   ============================================ */
.booking-steps { background: var(--navy); color: var(--text-light); }
.booking-steps .section-title { color: var(--white); }
.booking-steps .section-label { color: var(--gold-light); }
.booking-steps .section-subtitle { color: var(--text-muted-light); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
  align-items: center;
}
.step-card {
  background: var(--charcoal);
  border: 1px solid rgba(201, 169, 110, .1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: rgba(201, 169, 110, .25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.step-link {
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .5px;
}
.step-link:hover { color: var(--gold-light); }
.step-arrow {
  display: none;
  justify-content: center;
  color: var(--gold);
  opacity: .4;
}
.step-arrow svg { width: 28px; height: 28px; }

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  padding: 10px 0;
  font-size: .85rem;
  font-weight: 500;
  transform: translateY(0);
  transition: transform var(--transition);
}
.urgency-banner.hidden { transform: translateY(-100%); }
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  overflow: hidden;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.urgency-cta {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.urgency-cta:hover { color: var(--navy); opacity: .8; }
.urgency-close {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
  opacity: .6;
  padding: 0 4px;
}
.urgency-close:hover { opacity: 1; }

/* Navbar offset is set dynamically by JS to match banner height */

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.call-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.call-float:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(201, 169, 110, .4);
}
.call-float svg { width: 22px; height: 22px; }

/* ============================================
   FIRST VISIT SPECIAL POPUP
   ============================================ */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 20, .7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.promo-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.promo-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transform: scale(.9);
  transition: transform .4s ease;
}
.promo-popup-overlay.active .promo-popup { transform: scale(1); }
.promo-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--mid-gray);
  line-height: 1;
}
.promo-popup-close:hover { color: var(--dark-text); }
.promo-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.promo-popup-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.promo-popup-text {
  font-size: .95rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.promo-popup-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.promo-popup-fine {
  font-size: .75rem;
  color: var(--text-muted-light);
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-top: 1px solid rgba(201, 169, 110, .2);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 12px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-cta-call:hover { color: var(--gold-light); }
.mobile-cta-book {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-cta-book:hover { color: var(--navy); }

/* ============================================
   RESPONSIVE
   ============================================ */
/* Show mobile CTA bar on small screens */
@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body { padding-bottom: 70px; }
  /* Move floating buttons above the sticky bar */
  .chat-toggle { bottom: 84px; }
  .call-float { bottom: 148px; }
  /* Compact urgency banner on mobile */
  .urgency-banner { font-size: .75rem; padding: 6px 0; }
  .urgency-inner { gap: 4px 8px; }
  /* Give navbar a background on mobile so it's readable over the hero */
  .navbar { background: rgba(10, 15, 26, .85); backdrop-filter: blur(12px); }
  .nav-logo { width: 44px; height: 44px; }
  .nav-brand-name { font-size: .95rem; }
  .nav-brand-tagline { font-size: .55rem; }
  /* Push hero content below fixed banner + navbar */
  .hero { align-items: flex-start; }
  .hero-content { padding-top: 180px; }
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .step-arrow { display: none; }
}

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .map-wrapper iframe { height: 450px; }
}

@media (min-width: 1060px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .community-grid { grid-template-columns: repeat(4, 1fr); }
  .map-split { grid-template-columns: 1fr 1.2fr; }
  .map-wrapper iframe { height: 100%; min-height: 450px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
  }
  .step-arrow { display: flex; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp .6s forwards;
}
