/* ============================================================
   BRITTAIN'S CAR WASH — Main Stylesheet
   Font: Poppins (Google Fonts)
   Colors: Blue #1448B8 | Red #D32F2F | White #FFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700;1,800&display=swap');

:root {
  /* Brand Colors */
  --navy:        #1448B8;
  --navy-dark:   #0C2D6B;
  --navy-mid:    #1C5ACF;
  --navy-light:  #2B72E8;
  --red:         #D32F2F;
  --red-dark:    #B71C1C;
  --red-light:   #EF5350;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-light:  #EEF1F8;
  --gray-mid:    #D6DBE8;
  --gray-text:   #56607A;
  --text:        #1C2235;
  --gold:        #F5A623;

  /* Typography */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Sizing */
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --max-width: 1200px;

  /* Shadows */
  --shadow:     0 2px 12px rgba(20,72,184,0.08);
  --shadow-md:  0 6px 24px rgba(20,72,184,0.13);
  --shadow-lg:  0 16px 48px rgba(20,72,184,0.20);
  --shadow-red: 0 6px 20px rgba(211,47,47,0.35);

  /* Transitions */
  --trans: 0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--gray-text); line-height: 1.72; }
p.lead { font-size: 1.15rem; color: var(--gray-text); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-white p, .text-white h1, .text-white h2, .text-white h3 { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-gray     { background: var(--off-white); }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Section spacing */
.section     { padding: 5.5rem 0; }
.section--sm { padding: 3rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title { margin-bottom: 0.75rem; color: var(--navy); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--trans),
    color var(--trans),
    border-color var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 2px 10px rgba(211,47,47,0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.60);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.90);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-dark);
  border-color: rgba(20,72,184,0.30);
}
.btn-outline-navy:hover {
  background: rgba(20,72,184,0.05);
  border-color: var(--navy);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: transparent;
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  padding: 0.38rem 0;
  font-size: 0.76rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 0;
  padding-left: 0;
}
.top-bar-socials a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: color var(--trans);
  line-height: 1;
}
.top-bar-socials a:hover { color: var(--white); }
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--trans);
  white-space: nowrap;
}
.top-bar-links a:hover { color: var(--white); }
.top-bar-links a i { font-size: 0.78rem; opacity: 0.85; }

/* Light header: top-bar stays dark on touchless/detail */
body.is-touchless .top-bar,
body.is-detail .top-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Express top-bar — light bubble blue */
body.is-express .top-bar {
  background: #E2F2FD;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.is-express .top-bar-socials a {
  color: rgba(10,26,50,0.65);
}
body.is-express .top-bar-socials a:hover {
  color: var(--navy-dark);
}
body.is-express .top-bar-links a {
  color: rgba(10,26,50,0.80);
}
body.is-express .top-bar-links a:hover {
  color: var(--navy-dark);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.32);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

/* Brittain's wordmark image — homepage header + footer */
.wordmark-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.footer-wordmark-img {
  height: 48px;
  background: var(--white);
  border-radius: 8px;
  padding: 5px 10px;
}

/* Light frosted header — homepage and all service pages */
body.is-home .site-header,
body.is-express .site-header,
body.is-touchless .site-header,
body.is-detail .site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(20,72,184,0.10);
  box-shadow: 0 2px 18px rgba(20,72,184,0.08);
}
/* Light header: nav stretches to fill available space */
body.is-express .site-nav,
body.is-touchless .site-nav,
body.is-detail .site-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0 1rem 0 0;
}

/* Default: plain navy — no red regardless of aria-current */
body.is-home .site-nav a,
body.is-express .site-nav a,
body.is-express .site-nav a[aria-current="page"],
body.is-touchless .site-nav a,
body.is-touchless .site-nav a[aria-current="page"],
body.is-detail .site-nav a,
body.is-detail .site-nav a[aria-current="page"] {
  color: #111;
  background: transparent;
  border-bottom: none;
}

/* Red (service color) only on hover */
body.is-home .site-nav a:hover { background: rgba(20,72,184,0.06); color: var(--navy-dark); }
body.is-express .site-nav a:hover  { color: #D32F2F; background: rgba(211,47,47,0.08); }
body.is-touchless .site-nav a:hover { color: #1565C0; background: rgba(21,101,192,0.08); }
body.is-detail .site-nav a:hover   { color: #00695C; background: rgba(0,105,92,0.08); }
body.is-home .nav-toggle,
body.is-express .nav-toggle,
body.is-touchless .nav-toggle,
body.is-detail .nav-toggle { color: var(--navy); }
body.is-home .mobile-nav,
body.is-express .mobile-nav,
body.is-touchless .mobile-nav,
body.is-detail .mobile-nav { background: rgba(255,255,255,0.98); }
body.is-home .mobile-nav a,
body.is-express .mobile-nav a,
body.is-touchless .mobile-nav a,
body.is-detail .mobile-nav a { color: var(--navy); border-bottom-color: rgba(20,72,184,0.07); }
body.is-home .mobile-nav a:hover,
body.is-express .mobile-nav a:hover,
body.is-touchless .mobile-nav a:hover,
body.is-detail .mobile-nav a:hover { background: rgba(20,72,184,0.04); }


/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.25;
  flex-shrink: 0;
  margin-left: 0;
  padding-left: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(211,47,47,0.45);
  overflow: hidden;
}
.logo-mark svg { display: block; }
.logo-text { line-height: 1.2; }
.logo-text span {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.03em;
}

/* Desktop nav */
.site-nav { display: none; }
.site-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.45rem;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,0.09); }
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.09);
  border-bottom: 2px solid var(--red);
}

.header-cta { display: none; }

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.5rem;
  font-size: 1.35rem;
  line-height: 1;
  transition: opacity var(--trans);
}
.nav-toggle:hover { opacity: 0.75; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 0.5rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--trans);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); }
.mobile-nav .mobile-nav-cta { padding: 1rem 1.5rem; }
.mobile-nav .mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  /* Gradient fallback — shows when no photo is present */
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Photo layer — drop /images/hero.jpg to activate */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(9, 14, 26, 0.68) 0%,
    rgba(27, 42, 74, 0.50) 55%,
    rgba(9, 14, 26, 0.65) 100%
  );
}

/* Light hero — used on service pages instead of the dark photo-hero */
.hero-light {
  min-height: calc(100vh - 130px);
  background:
    radial-gradient(circle at 15% 45%, rgba(0,195,230,0.09) 0%, transparent 55%),
    radial-gradient(circle at 85% 60%, rgba(0,170,210,0.07) 0%, transparent 50%),
    linear-gradient(180deg, #FDFEFF 0%, #EEF9FD 38%, #E2F6FC 100%);
  color: var(--navy-dark);
}
body.is-express  .hero-light {
  background:
    radial-gradient(circle at 8% 45%, rgba(211,47,47,0.14) 0%, transparent 52%),
    radial-gradient(circle at 88% 25%, rgba(0,195,230,0.07) 0%, transparent 45%),
    linear-gradient(160deg, #FFFFFF 0%, #FEF0F0 42%, #FAEBEB 100%);
}
body.is-touchless .hero-light {
  background:
    radial-gradient(circle at 10% 50%, rgba(21,101,192,0.07) 0%, transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(0,195,230,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #FDFEFF 0%, #EEF4FD 38%, #E4EEFC 100%);
}
body.is-detail   .hero-light {
  background:
    radial-gradient(circle at 10% 50%, rgba(0,105,92,0.07) 0%, transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(0,195,230,0.07) 0%, transparent 50%),
    linear-gradient(180deg, #FDFEFF 0%, #EEF8F5 38%, #E2F5F0 100%);
}
.hero-light::before {
  background-image: radial-gradient(rgba(0,150,200,0.05) 1px, transparent 1px);
}
.hero-light::after { border-color: rgba(0,170,210,0.06); }
.hero-light .hero-eyebrow { color: var(--navy); }
.hero-light h1 { color: var(--navy-dark); }
.hero-light .hero-sub { color: rgba(20,72,184,0.72); }
.hero-light .hero-trust { border-top-color: rgba(20,72,184,0.12); }
.hero-light .hero-trust-item { color: var(--navy); }
.hero-light .hero-trust-item strong { color: var(--navy-dark); }
.hero-light .hero-trust-item i { color: #FFD600; }
.hero-light .hero-brand-logo { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.10)); }

/* Service accent colors for section labels and checks */
body.is-touchless .section-label       { color: #1565C0; }
body.is-touchless .section-label::before { background: #1565C0; }
body.is-touchless .pkg-features .check { color: #1565C0; }
body.is-touchless .feature-item:hover .feature-icon { background: #1565C0; }
body.is-detail   .section-label        { color: #00695C; }
body.is-detail   .section-label::before { background: #00695C; }
body.is-detail   .pkg-features .check  { color: #00695C; }
body.is-detail   .feature-item:hover .feature-icon { background: #00695C; }

/* Subtle dot-grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Decorative arc accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 70px solid rgba(211,47,47,0.06);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-light);
}
.hero-eyebrow i { font-size: 0.75rem; }

.hero h1 { color: var(--white); max-width: 760px; }
.hero h1 em { font-style: normal; color: var(--red-light); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* Trust strip under hero actions */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
}
.hero-trust-item i { color: var(--gold); font-size: 0.85rem; }
.hero-trust-item strong { color: rgba(255,255,255,0.92); font-weight: 700; }

/* Legacy support — hero-badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
}
.hero-badge strong { color: rgba(255,255,255,0.92); }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 1.25rem; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: transform var(--trans), box-shadow var(--trans);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--red);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(211,47,47,0.30);
}
.step-text h4 { margin-bottom: 0.3rem; color: var(--navy); font-size: 1.05rem; }
.step-text p { font-size: 0.92rem; margin: 0; }

/* ============================================================
   HOMEPAGE WASH SERVICE CARDS
   ============================================================ */
.wash-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.wash-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--gray-light);
}
.wash-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image area — shows gradient when /images/*.jpg not present */
.wash-card-image {
  height: 210px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.wash-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
/* Large icon shows as texture when no photo */
.wash-card-image-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  color: rgba(255,255,255,0.10);
  font-size: 6rem;
}
.wash-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  z-index: 2;
}
.wash-card-body {
  padding: 1.75rem;
}
.wash-card-body h3 {
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}
.wash-card-tagline {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
}
.wash-card-features {
  list-style: none;
  margin: 0 0 1.25rem;
}
.wash-card-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.38rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
}
.wash-card-features li:last-child { border-bottom: none; }
.wash-card-features li i {
  color: var(--red);
  font-size: 0.75rem;
  width: 14px;
  flex-shrink: 0;
  text-align: center;
}
.wash-card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 1.1rem;
}
.wash-card-location i { color: var(--navy-light); font-size: 0.8rem; }
.wash-card-body .btn { width: 100%; justify-content: center; }

/* ============================================================
   GENERIC CARDS (used across service pages)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--gray-light);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 1.5rem 1.1rem;
}
.card-header h3 { color: var(--white); margin-bottom: 0.25rem; }
.card-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.card-body { padding: 1.5rem; }
.card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 0.75rem;
}
.card-location i { color: var(--navy-light); font-size: 0.8rem; }
.card-body .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* Wash brand card icon area (old homepage — kept for reference) */
.wash-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: white;
}
.wash-card .badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pkg-card {
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  background: var(--white);
}
.pkg-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pkg-card.featured { border-color: var(--red); box-shadow: 0 4px 20px rgba(211,47,47,0.12); }
.pkg-header {
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-bottom: 2px solid var(--gray-mid);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.pkg-card.featured .pkg-header { background: var(--navy); border-bottom-color: var(--navy-mid); }
.pkg-card.featured .pkg-header h3 { color: var(--white); }
.pkg-card.featured .pkg-pricing { color: var(--white); }
.pkg-card.featured .price-monthly { color: rgba(255,255,255,0.70); }
.pkg-name { margin-bottom: 0.15rem; color: var(--navy); font-size: 1.1rem; }
.pkg-card.featured .pkg-name { color: var(--white); }
.pkg-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}
.pkg-pricing { text-align: right; flex-shrink: 0; }
.price-single { font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pkg-card.featured .price-single { color: var(--white); }
.price-monthly { font-size: 0.82rem; color: var(--gray-text); margin-top: 0.15rem; }
.pkg-body { padding: 1.25rem 1.5rem 1.5rem; }
.pkg-features { margin-bottom: 1.25rem; }
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text);
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features .check {
  color: var(--red);
  font-size: 0.75rem;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}
.pkg-features .dash {
  color: var(--gray-mid);
  font-size: 0.75rem;
  width: 16px;
  flex-shrink: 0;
  text-align: center;
}
.pkg-body .btn { width: 100%; justify-content: center; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.featured-col { background: var(--red); }
.compare-table tbody td { text-align: center; background: var(--white); }
.compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.compare-table tbody tr:hover td { background: var(--off-white); }
.compare-table .check { color: var(--red); }
.compare-table .dash { color: var(--gray-mid); }
.compare-table .price-row td { font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.compare-table .price-row td.featured-col { color: var(--red); }

/* ============================================================
   LOCATION CARDS
   ============================================================ */
/* ── Location strip ─────────────────────────────────────────── */
.loc-faq-section { background: #EEF3FA; }

/* ── Location info (new clean layout) ───────────────────────── */
.loc-info {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 3rem;
  border: 1px solid rgba(12,45,107,0.07);
  box-shadow: 0 4px 24px rgba(12,45,107,0.06);
  overflow: hidden;
}
.loc-info-header {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.25rem 2.5rem;
}
.loc-info-left .section-label { margin-bottom: 0.25rem; }
.loc-info-heading {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.15;
}
.loc-info-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
  padding-bottom: 0.25rem;
}
.loc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--navy-dark);
  text-decoration: none;
  transition: color 0.2s;
}
a.loc-detail-item:hover { color: var(--red); }
.loc-detail-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(211,47,47,0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
a.loc-detail-item:hover .loc-detail-icon-wrap { background: var(--red); color: #fff; }
.loc-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 0.2rem;
}
.loc-detail-text strong { color: var(--navy-dark); font-weight: 700; font-style: normal; }
.loc-detail-text span { color: #64748b; font-size: 0.83rem; }
.loc-map-wrap {
  border-top: 1px solid rgba(12,45,107,0.07);
  height: 320px;
}
.loc-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 600px) {
  .loc-info-header { padding: 1.75rem; }
  .loc-info-details { grid-template-columns: 1fr; }
  .loc-map-wrap { height: 240px; }
}

/* ── Location card (legacy — keep for other pages) ───────────── */
.loc-card {
  background: var(--navy-dark);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: 0 6px 32px rgba(10,26,50,0.18);
}

.loc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.loc-card-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.loc-card-title i {
  font-size: 1.3rem;
  color: var(--red);
  flex-shrink: 0;
}
.loc-card-title h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.1rem;
  line-height: 1.2;
}
.loc-card-title span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.loc-card-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.loc-chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 0.2rem 0.65rem;
  font-family: var(--font);
}

.loc-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.loc-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
@media (max-width: 600px) {
  .loc-card-info { grid-template-columns: 1fr; }
}

.loc-card-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.15s;
  font-family: var(--font);
}
a.loc-card-row:hover { color: #fff; }
.loc-card-row strong { color: #fff; font-weight: 600; }

.loc-card-icon {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--red);
  opacity: 0.85;
}

.loc-card-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}
.loc-call-btn {
  border-color: rgba(255,255,255,0.22) !important;
  color: rgba(255,255,255,0.82) !important;
  background: transparent !important;
  font-size: 0.85rem !important;
  text-align: center;
}
.loc-call-btn:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

/* ── FAQ section ────────────────────────────────────────────── */
.faq-section { }

.faq-intro { margin-bottom: 2rem; }
.faq-intro h2 { margin: 0; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 3.5rem;
}
@media (min-width: 768px) {
  .faq-grid { grid-template-columns: 1fr 1fr; }
}

.faq-col {
  border-top: 1px solid var(--gray-light);
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  font-family: var(--font);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--red);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\f068'; }
.faq-item p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 0 0 0.75rem;
  padding-right: 1.5rem;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid rgba(20,72,184,0.20);
  border-radius: 40px;
  padding: 0.38rem 0.9rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.faq-cta:hover { background: rgba(20,72,184,0.06); border-color: rgba(20,72,184,0.35); }
.faq-cta i { font-size: 0.72rem; }

.faq-cta-spark {
  color: #92600a;
  border-color: rgba(255,193,0,0.40);
  background: rgba(255,214,0,0.10);
}
.faq-cta-spark:hover { background: rgba(255,214,0,0.22); border-color: rgba(255,193,0,0.60); }

.faq-cta-primary {
  color: var(--red);
  border-color: rgba(211,47,47,0.25);
  background: rgba(211,47,47,0.05);
}
.faq-cta-primary:hover { background: rgba(211,47,47,0.10); border-color: rgba(211,47,47,0.40); }

.location-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.location-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.location-card-header i { color: var(--red-light); font-size: 0.9rem; flex-shrink: 0; }
.location-card-header h3 { color: var(--white); font-size: 1.05rem; }
.location-card-body { padding: 1.5rem; }
.location-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  align-items: flex-start;
}
/* Supports both <span> emoji and <i> FA icon */
.location-detail-icon,
.location-detail i:first-child {
  color: var(--red);
  width: 18px;
  flex-shrink: 0;
  margin-top: 0.12rem;
  text-align: center;
  font-size: 0.85rem;
}
.location-detail-text a { color: var(--navy); font-weight: 600; }
.location-detail-text a:hover { color: var(--red); }
.hours-table { width: 100%; font-size: 0.88rem; border-collapse: collapse; }
.hours-table td { padding: 0.2rem 0; }
.hours-table td:first-child { color: var(--gray-text); width: 50%; }
.hours-table td:last-child { font-weight: 600; color: var(--navy); }
.location-services {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-chip {
  background: var(--gray-light);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
}
.location-card .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
}
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.rating-info strong { display: block; font-size: 1.15rem; color: var(--navy); font-weight: 800; }
.rating-info span { font-size: 0.82rem; color: var(--gray-text); }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--red);
  transition: transform var(--trans), box-shadow var(--trans);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 0.85rem; letter-spacing: 0.08em; }
.review-text {
  font-size: 0.97rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.68;
}
.review-author { font-size: 0.84rem; font-weight: 700; color: var(--navy); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.feature-icon {
  width: 62px;
  height: 62px;
  background: var(--gray-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--red);
  transition: background var(--trans), color var(--trans);
}
.feature-item:hover .feature-icon { background: var(--red); color: var(--white); }
.feature-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 0; }
.feature-item p { font-size: 0.82rem; margin: 0; }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { margin-bottom: 1rem; }
.two-col-text .btn { margin-top: 0.5rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 60px solid rgba(211,47,47,0.07);
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 0.85rem; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-band .btn-primary { font-size: 1.05rem; padding: 1.05rem 2.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.68);
  padding: 4rem 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.72; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.58); }
.footer-col .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 1rem;
  margin: 0.5rem 0;
}
.footer-col .phone-link:hover { color: var(--white); }
.footer-col .phone-link i { color: var(--red-light); font-size: 0.82rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.82rem;
}
.footer-legal a { color: rgba(255,255,255,0.45); margin-right: 1.25rem; }
.footer-legal a:hover { color: var(--white); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.88rem;
  transition: background var(--trans), color var(--trans);
}
.social-links a:hover { background: var(--red); color: var(--white); }

/* ============================================================
   CTA BAND — EXPRESS OVERRIDE
   ============================================================ */
body.is-express .cta-band {
  background: linear-gradient(140deg, #7f0000 0%, #B71C1C 30%, #D32F2F 62%, #EF5350 100%);
  padding: 6.5rem 0;
}
body.is-express .cta-band::before {
  background: repeating-linear-gradient(
    -52deg,
    rgba(255,255,255,0.028) 0px,
    rgba(255,255,255,0.028) 1px,
    transparent 1px,
    transparent 32px
  );
}
body.is-express .cta-band::after {
  top: -130px;
  right: -130px;
  left: auto;
  width: 560px;
  height: 560px;
  border-width: 80px;
  border-color: rgba(255,255,255,0.07);
}
.cta-band-deco {
  display: none;
}
body.is-express .cta-band-deco {
  display: block;
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 55px solid rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 0;
}
.cta-band-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1rem;
}
body.is-express .cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}
body.is-express .cta-band > .container > p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  color: rgba(255,255,255,0.82);
}
.cta-band-fine {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.72);
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  max-width: 500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.btn-white {
  background: #ffffff;
  color: #C62828;
  border: 2px solid #ffffff;
  font-weight: 800;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.btn-white:hover {
  background: #fff0f0;
  border-color: #fff0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
  color: #b71c1c;
}

/* ============================================================
   FOOTER — EXPRESS WHITE OVERRIDE
   ============================================================ */
body.is-express .site-footer {
  background: #ffffff;
  color: #4a5568;
  border-top: 1px solid #e2e8f0;
}
body.is-express .footer-brand p { color: #64748b; }
body.is-express .footer-col h4 { color: var(--navy-dark); }
body.is-express .footer-col a { color: #64748b; }
body.is-express .footer-col a:hover { color: var(--red); }
body.is-express .footer-col p { color: #64748b; }
body.is-express .footer-col .phone-link { color: var(--navy-dark); font-weight: 700; }
body.is-express .footer-col .phone-link:hover { color: var(--red); }
body.is-express .footer-bottom {
  border-top-color: #e2e8f0;
  color: #94a3b8;
}
body.is-express .footer-bottom p { color: #94a3b8; }
body.is-express .footer-legal a { color: #94a3b8; }
body.is-express .footer-legal a:hover { color: var(--navy-dark); }
body.is-express .social-links a { background: #f1f5f9; color: #475569; }
body.is-express .social-links a:hover { background: var(--red); color: #fff; }
.footer-optspot { font-size: 0.82rem; color: #94a3b8; }
.footer-optspot a { color: var(--red); font-weight: 600; text-decoration: none; }
.footer-optspot a:hover { color: var(--navy-dark); }

/* White footer — touchless, detail, about, contact */
body.is-touchless .site-footer,
body.is-detail .site-footer,
body.is-about .site-footer,
body.is-contact .site-footer {
  background: #ffffff;
  color: #4a5568;
  border-top: 1px solid #e2e8f0;
}
body.is-touchless .footer-brand p,
body.is-detail .footer-brand p,
body.is-about .footer-brand p,
body.is-contact .footer-brand p { color: #64748b; }
body.is-touchless .footer-col h4,
body.is-detail .footer-col h4,
body.is-about .footer-col h4,
body.is-contact .footer-col h4 { color: var(--navy-dark); }
body.is-touchless .footer-col a,
body.is-detail .footer-col a,
body.is-about .footer-col a,
body.is-contact .footer-col a { color: #64748b; }
body.is-touchless .footer-col a:hover,
body.is-detail .footer-col a:hover,
body.is-about .footer-col a:hover,
body.is-contact .footer-col a:hover { color: var(--navy-dark); }
body.is-touchless .footer-col p,
body.is-detail .footer-col p,
body.is-about .footer-col p,
body.is-contact .footer-col p { color: #64748b; }
body.is-touchless .footer-bottom,
body.is-detail .footer-bottom,
body.is-about .footer-bottom,
body.is-contact .footer-bottom { border-top-color: #e2e8f0; color: #94a3b8; }
body.is-touchless .footer-bottom p,
body.is-detail .footer-bottom p,
body.is-about .footer-bottom p,
body.is-contact .footer-bottom p { color: #94a3b8; }
body.is-touchless .footer-legal a,
body.is-detail .footer-legal a,
body.is-about .footer-legal a,
body.is-contact .footer-legal a { color: #94a3b8; }
body.is-touchless .footer-legal a:hover,
body.is-detail .footer-legal a:hover,
body.is-about .footer-legal a:hover,
body.is-contact .footer-legal a:hover { color: var(--navy-dark); }
body.is-touchless .social-links a,
body.is-detail .social-links a,
body.is-about .social-links a,
body.is-contact .social-links a { background: #f1f5f9; color: #475569; }
body.is-touchless .social-links a:hover,
body.is-about .social-links a:hover,
body.is-contact .social-links a:hover { background: var(--navy-dark); color: #fff; }
body.is-detail .social-links a:hover { background: #00695C; color: #fff; }

/* Touchless top-bar — light blue matching express */
body.is-touchless .top-bar {
  background: #E2F2FD;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.is-touchless .top-bar-socials a { color: rgba(10,26,50,0.65); }
body.is-touchless .top-bar-socials a:hover { color: var(--navy-dark); }
body.is-touchless .top-bar-links a { color: rgba(10,26,50,0.80); }
body.is-touchless .top-bar-links a:hover { color: var(--navy-dark); }

/* ============================================================
   FREE WASH PAGES (minimal header)
   ============================================================ */
.header-minimal .site-nav,
.header-minimal .header-cta,
.header-minimal .nav-toggle { display: none; }
.header-minimal .header-inner { justify-content: center; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--gray-mid); margin: 0; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.10s; }
.fade-up.delay-2 { transition-delay: 0.20s; }
.fade-up.delay-3 { transition-delay: 0.30s; }
.fade-up.delay-4 { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — Tablet 768px+
   ============================================================ */
@media (min-width: 768px) {
  .site-nav { display: flex; align-items: center; gap: 0.1rem; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero { min-height: 90vh; }
  .hero-inner { max-width: 700px; padding: 7rem 0 6rem; }

  .wash-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: row; }
  .step { flex: 1; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   RESPONSIVE — Desktop 1200px+
   ============================================================ */
@media (min-width: 1200px) {
  .wash-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cards-3 { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid.pkg-4 { grid-template-columns: repeat(4, 1fr); }
  .pkg-grid.pkg-3 { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid.loc-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   HOMEPAGE CHOOSER
   ============================================================ */

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.05); }
}
@keyframes bubble-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-12px) rotate(7deg); }
  70%       { transform: translateY(7px) rotate(-4deg); }
}
@keyframes pop-in {
  0%   { transform: translateY(28px) scale(0.85); opacity: 0; }
  65%  { transform: translateY(-4px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
  50%       { box-shadow: 0 10px 30px rgba(0,0,0,0.24); transform: translateY(-2px); }
}

/* --- Layout --- */
.chooser-hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 35%, rgba(0,195,230,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,170,210,0.06) 0%, transparent 45%),
    linear-gradient(180deg, #FDFEFF 0%, #EEF9FD 50%, #E2F6FC 100%);
  display: flex;
  align-items: center;
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* --- Bubbles --- */
.chooser-bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.chooser-bubble.b1 {
  width: 160px; height: 160px;
  border: 1.5px solid rgba(255,255,255,0.10);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.07) 0%, rgba(0,200,235,0.03) 60%, transparent 100%);
  box-shadow: inset 0 0 28px rgba(255,255,255,0.06);
  top: 8%; right: 7%;
  animation: bubble-float 7s ease-in-out infinite;
}
.chooser-bubble.b2 {
  width: 240px; height: 240px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05) 0%, rgba(0,190,228,0.02) 60%, transparent 100%);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.05);
  bottom: 6%; left: 3%;
  animation: bubble-float 9s ease-in-out infinite 1.5s;
}
.chooser-bubble.b3 {
  width: 95px; height: 95px;
  border: 1.5px solid rgba(255,255,255,0.10);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, rgba(0,205,238,0.03) 60%, transparent 100%);
  box-shadow: inset 0 0 14px rgba(255,255,255,0.06);
  top: 25%; right: 17%;
  animation: bubble-drift 5.5s ease-in-out infinite 0.5s;
}
.chooser-bubble.b4 {
  width: 60px; height: 60px;
  border: 1.5px solid rgba(255,255,255,0.09);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, rgba(0,200,235,0.03) 60%, transparent 100%);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.06);
  bottom: 26%; left: 16%;
  animation: bubble-drift 6s ease-in-out infinite 2s;
}
.chooser-bubble.b5 {
  width: 115px; height: 115px;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06) 0%, rgba(0,192,230,0.02) 60%, transparent 100%);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.05);
  top: 55%; right: 5%;
  animation: bubble-float 8s ease-in-out infinite 3s;
}
.chooser-bubble.b6 {
  width: 72px; height: 72px;
  border: 1.5px solid rgba(255,255,255,0.09);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.07) 0%, rgba(0,205,238,0.02) 60%, transparent 100%);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.06);
  top: 16%; left: 10%;
  animation: bubble-drift 4.5s ease-in-out infinite 1s;
}

/* Bubbles on light chooser-hero background need blue-tinted colors to be visible */
.chooser-hero .chooser-bubble.b1 {
  border-color: rgba(0, 155, 205, 0.20);
  background: radial-gradient(circle at 30% 30%, rgba(0, 200, 240, 0.10) 0%, rgba(0, 150, 200, 0.05) 60%, transparent 100%);
  box-shadow: inset 0 0 28px rgba(0, 195, 235, 0.09), 0 0 0 1px rgba(0, 180, 225, 0.06);
}
.chooser-hero .chooser-bubble.b2 {
  border-color: rgba(0, 135, 185, 0.15);
  background: radial-gradient(circle at 30% 30%, rgba(0, 185, 228, 0.09) 0%, rgba(0, 140, 192, 0.04) 60%, transparent 100%);
  box-shadow: inset 0 0 40px rgba(0, 190, 228, 0.08);
}
.chooser-hero .chooser-bubble.b3 {
  border-color: rgba(0, 162, 215, 0.20);
  background: radial-gradient(circle at 30% 30%, rgba(0, 205, 238, 0.12) 0%, rgba(0, 158, 210, 0.06) 60%, transparent 100%);
  box-shadow: inset 0 0 14px rgba(0, 205, 238, 0.10);
}
.chooser-hero .chooser-bubble.b4 {
  border-color: rgba(0, 162, 215, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(0, 200, 235, 0.12) 0%, rgba(0, 158, 210, 0.06) 60%, transparent 100%);
  box-shadow: inset 0 0 10px rgba(0, 200, 235, 0.09);
}
.chooser-hero .chooser-bubble.b5 {
  border-color: rgba(0, 140, 192, 0.15);
  background: radial-gradient(circle at 30% 30%, rgba(0, 192, 230, 0.10) 0%, rgba(0, 142, 195, 0.05) 60%, transparent 100%);
  box-shadow: inset 0 0 18px rgba(0, 192, 230, 0.08);
}
.chooser-hero .chooser-bubble.b6 {
  border-color: rgba(0, 162, 215, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(0, 205, 238, 0.11) 0%, rgba(0, 158, 210, 0.05) 60%, transparent 100%);
  box-shadow: inset 0 0 12px rgba(0, 205, 238, 0.09);
}

/* --- Intro block --- */
.chooser-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.chooser-intro .section-label {
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.chooser-intro h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  animation: pop-in 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.1s both;
}
.chooser-intro h1 span { color: var(--red); }
.chooser-subtext {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin: 0 auto;
  max-width: 420px;
  animation: pop-in 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}

/* --- Cards grid --- */
.chooser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .chooser-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .chooser-grid { gap: 2rem; }
}

/* Wrapper allows pill to overflow outside card bounds */
.chooser-card-wrap {
  position: relative;
  padding-top: 16px;
}

/* Yellow pill — floats above the card edge */
.service-pill {
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 10;
  background: #FFD600;
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
  white-space: nowrap;
}

/* --- Card --- */
.chooser-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(20,72,184,0.09);
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--c-accent, var(--red));
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
}
.chooser-card-wrap:hover .chooser-card { transform: translateY(-12px); }
.chooser-card.express  { --c-accent:#D32F2F; --c-btn:#D32F2F; --c-btn-hover:#B71C1C; --c-check:#D32F2F; }
.chooser-card.touchless { --c-accent:#1565C0; --c-btn:#1565C0; --c-btn-hover:#0D47A1; --c-check:#1565C0; }
.chooser-card.detail   { --c-accent:#00695C; --c-btn:#00695C; --c-btn-hover:#004D40; --c-check:#00695C; }
.chooser-card-wrap:hover .chooser-card.express  { box-shadow: 0 24px 48px rgba(211,47,47,0.18); }
.chooser-card-wrap:hover .chooser-card.touchless { box-shadow: 0 24px 48px rgba(21,101,192,0.18); }
.chooser-card-wrap:hover .chooser-card.detail   { box-shadow: 0 24px 48px rgba(0,105,92,0.18); }

/* --- Logo area --- */
.chooser-logo-wrap {
  height: 160px;
  padding: 1.25rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Express: warm red with diagonal speed-streak lines */
.chooser-card.express .chooser-logo-wrap {
  background:
    radial-gradient(circle at 80% 20%, rgba(211,47,47,0.16) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(211,47,47,0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.90) 0%, transparent 70%),
    linear-gradient(150deg, #FFE2E0 0%, #FFD6D4 60%, #FFCFCC 100%);
}
.chooser-card.express .chooser-logo-wrap::before,
.chooser-card.express .chooser-logo-wrap::after {
  content: '';
  position: absolute;
  width: 260%; height: 2px;
  left: -80%;
  border-radius: 2px;
}
.chooser-card.express .chooser-logo-wrap::before {
  background: linear-gradient(90deg, transparent, rgba(211,47,47,0.30), transparent);
  top: 38%;
  transform: rotate(-10deg);
}
.chooser-card.express .chooser-logo-wrap::after {
  background: linear-gradient(90deg, transparent, rgba(211,47,47,0.20), transparent);
  top: 55%;
  transform: rotate(-10deg);
}

/* Touchless: cool blue with water arc ripples */
.chooser-card.touchless .chooser-logo-wrap {
  background:
    radial-gradient(ellipse 130% 55% at 50% 100%, rgba(21,101,192,0.20) 0%, transparent 65%),
    radial-gradient(circle at 75% 25%, rgba(21,101,192,0.12) 0%, transparent 35%),
    linear-gradient(180deg, #E3EEFF 0%, #D8E8FF 100%);
}
.chooser-card.touchless .chooser-logo-wrap::before,
.chooser-card.touchless .chooser-logo-wrap::after {
  content: '';
  position: absolute;
  left: -20%; right: -20%;
  border-radius: 50%;
  border-style: solid;
}
.chooser-card.touchless .chooser-logo-wrap::before {
  bottom: 10px; height: 55px;
  border-width: 3px;
  border-color: rgba(21,101,192,0.22);
}
.chooser-card.touchless .chooser-logo-wrap::after {
  bottom: -4px; height: 65px;
  border-width: 2px;
  border-color: rgba(21,101,192,0.13);
}

/* Detail: teal with premium sparkle-glow spots */
.chooser-card.detail .chooser-logo-wrap {
  background:
    radial-gradient(circle at 18% 25%, rgba(0,105,92,0.18) 0%, transparent 35%),
    radial-gradient(circle at 82% 75%, rgba(0,105,92,0.18) 0%, transparent 35%),
    radial-gradient(circle at 82% 22%, rgba(255,214,0,0.14) 0%, transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(255,214,0,0.10) 0%, transparent 28%),
    linear-gradient(135deg, #DCF5EF 0%, #EAF9F5 50%, #DCF5EF 100%);
}
.chooser-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.chooser-card-wrap:hover .chooser-logo-wrap img { transform: scale(1.06); }

/* --- Card body --- */
.chooser-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Free-wash btn-spark inside a card fills full width */
.chooser-card-body .btn-spark {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.chooser-divider { display: none; }
.card-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
  margin: 0 0 0.9rem;
  line-height: 1.45;
  min-height: calc(0.82rem * 1.45 * 2);
}
.chooser-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.chooser-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: var(--text);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-light);
  line-height: 1.45;
}
.chooser-facts li:last-child { border-bottom: none; }
.chooser-facts i { color: var(--c-check); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.18rem; }

/* --- CTA --- */
.chooser-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--c-btn);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background var(--trans), transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow var(--trans);
  animation: btn-breathe 3s ease-in-out infinite;
}
.chooser-btn:hover {
  background: var(--c-btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  animation: none;
}
.chooser-learn {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--gray-text);
  text-decoration: none;
}
.chooser-learn:hover { color: var(--c-accent); text-decoration: underline; }

/* --- Trust strip --- */
.chooser-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.75rem;
}
.chooser-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.88);
  border-radius: 40px;
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  box-shadow: 0 2px 12px rgba(20,72,184,0.10), 0 0 0 1px rgba(20,72,184,0.05);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chooser-trust-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(20,72,184,0.14); }
.trust-icon-wrap {
  width: 30px; height: 30px;
  background: #FFD600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wrap i { font-size: 0.65rem; color: var(--navy-dark); }
.chooser-trust-item strong { color: var(--navy-dark); font-weight: 700; }
.chooser-trust-item .trust-sub { color: var(--gray-text); }

/* --- Branded logos for service page headers/footers/heroes --- */
.header-logo-img {
  height: 82px; width: auto; max-width: 300px;
  object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
.footer-logo-img {
  height: 56px; width: auto; max-width: 240px;
  object-fit: contain; display: block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.hero-brand-logo {
  display: block; max-width: 300px; max-height: 110px;
  object-fit: contain; margin-bottom: 1.75rem;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}
@media (min-width: 768px) {
  .hero-brand-logo { max-width: 360px; max-height: 130px; }
}

/* ============================================================
   WAVE DIVIDERS — between hero and first content section
   ============================================================ */
.hero-wave {
  margin-top: -69px;
  line-height: 0;
  position: relative;
  z-index: 5;
}
.hero-wave svg { display: block; width: 100%; height: 70px; }
@media (min-width: 768px) {
  .hero-wave { margin-top: -89px; }
  .hero-wave svg { height: 90px; }
}

/* ============================================================
   SPARKLE DECORATIONS — ✦ floating near intro headline
   ============================================================ */
.chooser-intro { position: relative; }
.spark { display: none; }

/* ============================================================
   SERVICE PAGE HERO — extra bottom padding for wave overlap
   ============================================================ */
.hero-light { padding-bottom: 5rem; }
@media (min-width: 768px) { .hero-light { padding-bottom: 6rem; } }

/* ============================================================
   FUN HEADER CTA BUTTON — yellow, no animation
   ============================================================ */
.btn-spark {
  position: relative;
  background: linear-gradient(135deg, #FFE034 0%, #FFD600 50%, #FFC300 100%);
  color: var(--navy-dark);
  border-color: transparent;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.72rem 1.5rem;
  box-shadow: 0 3px 10px rgba(255,214,0,0.30);
}
.btn-spark:hover {
  background: linear-gradient(135deg, #FFE84A 0%, #FFD600 50%, #FFBC00 100%);
  color: var(--navy-dark);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(255,200,0,0.65);
}

/* ============================================================
   EXPRESS HERO — CENTERED, DARK, ABOVE-FOLD
   Inspired by: bold headline + accent line + 2 CTAs + stars
   ============================================================ */

/* Photo-based hero — gradient is fallback when image is missing */
.hero-express {
  background: linear-gradient(150deg, #091840 0%, #1448B8 55%, #1C5ACF 100%);
  padding-bottom: 5rem;
}

/* Light overlay — lets the vibrant photo breathe */
.hero-express .hero-photo-overlay {
  background: linear-gradient(
    160deg,
    rgba(9, 14, 26, 0.38) 0%,
    rgba(13, 22, 46, 0.22) 50%,
    rgba(9, 14, 26, 0.32) 100%
  );
}

/* Clip photo during parallax movement; tighten vertical padding so content fits above fold */
.hero-express { overflow: hidden; }
.hero-express .hero-inner {
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin: 0;
  padding-left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  width: 100%;
  box-sizing: border-box;
  /* Two-column: content left, photo shows through on right */
  display: grid;
  grid-template-columns: 58fr 42fr;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-express .hero-inner {
    grid-template-columns: 1fr;
  }
}

/* Left column content */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.1rem;
  width: 100%;
}

/* Frosted badge pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.52rem 1.3rem;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Headline: white main, red accent second line — text-shadow ensures contrast on photo */
.hero-express h1 {
  color: var(--white);
  font-size: clamp(1.45rem, 5.6vw, 4.2rem);
  max-width: 680px;
  line-height: 1.1;
  text-shadow: 0 2px 28px rgba(0,0,0,0.60), 0 1px 8px rgba(0,0,0,0.40);
}
.hero-express h1 em {
  font-style: normal;
  color: #CC1515;
  white-space: nowrap;
  text-shadow: 2px 3px 0 #000, 0 2px 12px rgba(0,0,0,0.70), 0 0 24px rgba(0,0,0,0.50);
}
.hero-express h1 .line1 {
  white-space: nowrap;
  display: block;
}
.hero-express .hero-actions {
  flex-wrap: nowrap;
}

/* Sub: one line, white, readable */
.hero-express .hero-sub {
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  max-width: 460px;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 3px 20px rgba(0,0,0,0.95);
  font-weight: 600;
}

/* Hero action buttons — natural width, equal padding */
.hero-actions .btn-spark {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
}
.hero-actions .btn-ghost-white {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
}

/* Parallax: extend photo div so translateY never shows a gap */
.hero-express .hero-photo {
  top: -12%;
  bottom: -12%;
  will-change: transform;
}

/* Ghost white secondary button */
.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.46);
  color: var(--white);
  transform: translateY(-2px);
}

/* Star rating row */
.hero-stars {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.60);
}
.hero-stars-gold {
  color: #FFD600;
  letter-spacing: 2px;
  font-size: 1rem;
}

/* ============================================================
   EXPRESS PAGE — HOMEPAGE VISUAL LANGUAGE APPLIED SITE-WIDE
   ============================================================ */

/* 4-column chooser grid (features, packages) */
@media (min-width: 640px) {
  .chooser-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .chooser-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Feature icon in illustrated logo wrap header */
.feature-header {
  height: 110px !important;
  align-items: center;
  justify-content: center;
}
.feature-icon-lg {
  font-size: 2.25rem;
  color: var(--red);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(211,47,47,0.22));
}

/* Card description line (under tagline in feature cards) */
.chooser-card-desc {
  font-size: 0.86rem;
  color: var(--gray-text);
  line-height: 1.62;
  margin-top: 0.4rem;
}

/* Package cards — price in illustrated header */
.pkg-chooser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .pkg-chooser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pkg-chooser-grid { grid-template-columns: repeat(4, 1fr); }
}

.pkg-card-v2 .chooser-logo-wrap {
  height: 140px !important;
  flex-direction: column;
  gap: 0.1rem;
}
.pkg-v2-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(20,72,184,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.pkg-v2-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative; z-index: 2;
}
.pkg-v2-monthly {
  font-size: 0.7rem;
  color: rgba(20,72,184,0.42);
  position: relative; z-index: 2;
}

/* Featured (Platinum) pkg — dark red header, gold price */
.chooser-card.express.pkg-featured .chooser-logo-wrap {
  background: linear-gradient(150deg, #B71C1C 0%, #D32F2F 100%);
}
.chooser-card.express.pkg-featured .chooser-logo-wrap::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.chooser-card.express.pkg-featured .chooser-logo-wrap::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.pkg-featured .pkg-v2-label { color: rgba(255,255,255,0.58); }
.pkg-featured .pkg-v2-price { color: #FFD600; }
.pkg-featured .pkg-v2-monthly { color: rgba(255,255,255,0.48); }

/* Greyed-out unavailable feature rows */
.chooser-facts li.unavail {
  opacity: 0.35;
}

/* Package name heading inside card body */
.pkg-name-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

/* ── Package cards v3 ───────────────────────────────────────── */
.pkg-section { background: #f8f9fc; }

.pkg-grid-v3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 640px) {
  .pkg-grid-v3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pkg-grid-v3 { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
}

.pkg-card-v3 {
  background: #fff;
  border: 1.5px solid rgba(20,72,184,0.09);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(20,72,184,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pkg-card-v3:hover {
  box-shadow: 0 6px 28px rgba(20,72,184,0.12);
  transform: translateY(-3px);
}

/* Featured card */
.pkg-card-v3-featured {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0d1e3e 100%);
  border-color: transparent;
  box-shadow: 0 6px 32px rgba(10,26,50,0.28);
}
.pkg-card-v3-featured:hover {
  box-shadow: 0 10px 40px rgba(10,26,50,0.35);
}

/* Best Value badge */
.pkg-v3-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 40px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(211,47,47,0.35);
}

/* Top block */
.pkg-v3-top { display: flex; flex-direction: column; gap: 0.4rem; }

.pkg-v3-top h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
}
.pkg-card-v3-featured .pkg-v3-top h3 { color: #fff; }

.pkg-v3-price-row { display: flex; align-items: baseline; gap: 0.3rem; margin-top: 0.2rem; }

.pkg-v3-price {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red);
}
.pkg-card-v3-featured .pkg-v3-price { color: #FFD600; }

.pkg-v3-per {
  font-size: 0.78rem;
  color: rgba(20,72,184,0.45);
  font-weight: 500;
}
.pkg-card-v3-featured .pkg-v3-per { color: rgba(255,255,255,0.5); }

.pkg-v3-monthly-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(0,185,225,0.08);
  border: 1px solid rgba(0,185,225,0.22);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 40px;
  letter-spacing: 0.01em;
}
.pkg-v3-monthly-badge-gold {
  background: rgba(255,214,0,0.12);
  border-color: rgba(255,214,0,0.30);
  color: #b8860b;
}
.pkg-card-v3-featured .pkg-v3-monthly-badge-gold { color: #FFD600; }

/* Feature list */
.pkg-v3-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.pkg-v3-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(20,72,184,0.75);
  line-height: 1.4;
}
.pkg-v3-features li .fa-check {
  color: var(--red);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.pkg-card-v3-featured .pkg-v3-features li { color: rgba(255,255,255,0.72); }
.pkg-card-v3-featured .pkg-v3-features li .fa-check { color: #FFD600; }

/* Divider between top/features */
.pkg-card-v3 .pkg-v3-features {
  border-top: 1px solid rgba(20,72,184,0.08);
  padding-top: 1rem;
}
.pkg-card-v3-featured .pkg-v3-features { border-top-color: rgba(255,255,255,0.10); }

/* Actions */
.pkg-v3-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.pkg-v3-club-btn {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid rgba(20,72,184,0.18);
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.pkg-v3-club-btn:hover {
  background: rgba(20,72,184,0.05);
  border-color: rgba(20,72,184,0.30);
}
.pkg-v3-club-btn-light {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.22);
}
.pkg-v3-club-btn-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.40);
}

/* Uniform spark button width inside cards */
.pkg-v3-actions .btn-spark {
  display: block;
  text-align: center;
}

/* ── Package section v4 ─────────────────────────────────────── */
.pkg-section-v4 {
  background: linear-gradient(165deg, #0D2E8C 0%, #1445C4 35%, #1A50D4 55%, #0D2E8C 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.pkg-section-v4::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(180, 230, 255, 0.52) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 50% 110%, rgba(60, 140, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 8% 85%, rgba(204,21,21,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 25% 25% at 92% 80%, rgba(0,180,255,0.15) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 1px,
      transparent 1px,
      transparent 36px
    );
  pointer-events: none;
}

.pkg-v4-intro { margin-bottom: 3rem; position: relative; z-index: 1; }

.pkg-v4-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}

.pkg-v4-heading {
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.pkg-v4-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Grid */
.pkg-grid-v4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
  align-items: start;
}
@media (min-width: 768px) {
  .pkg-grid-v4 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* Card shell */
.pkg-card-v4 {
  background: #fff;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 8px 40px rgba(0,0,0,0.30);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-card-v4:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.40);
}

/* Platinum: slightly scaled up */
.pkg-platinum {
  transform: scale(1.03);
  box-shadow: 0 12px 52px rgba(0,0,0,0.40);
}
.pkg-platinum:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 64px rgba(0,0,0,0.48);
}
@media (max-width: 767px) {
  /* Remove scale on mobile — it causes clipping inside 1-col grid */
  .pkg-platinum { transform: none; }
  .pkg-platinum:hover { transform: translateY(-6px); }
}

/* ── Card header ── */
.pkg-v4-header {
  border-radius: 20px 20px 0 0;
  padding: 1.2rem 7rem 1.2rem 1.75rem;
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  overflow: visible;
}
.pkg-hdr-red  { background: linear-gradient(110deg, #B71C1C 0%, #D32F2F 100%); }
.pkg-hdr-blue { background: linear-gradient(110deg, #1565C0 0%, #1976D2 100%); }
.pkg-hdr-teal { background: linear-gradient(110deg, #00796B 0%, #00897B 100%); }

/* Package name */
.pkg-v4-name-wrap { flex: 1; }
.pkg-v4-name {
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pkg-v4-name sup {
  font-style: normal;
  font-size: 0.6em;
  vertical-align: super;
}

/* Monthly price circle */
.pkg-v4-circle {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: #0a1628;
  border: 4px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.60), 0 0 0 3px rgba(0,200,232,0.25);
  z-index: 3;
}
.pkg-v4-circle-price {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #00C8E8;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: var(--font);
}
.pkg-v4-circle-label {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 0.3rem;
  font-family: var(--font);
}

/* ── Card body ── */
.pkg-v4-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Single wash price */
.pkg-v4-single-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
}
.pkg-v4-single-sup {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(20,72,184,0.50);
  align-self: flex-start;
  padding-top: 0.3rem;
}
.pkg-v4-single-amt {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  letter-spacing: -0.04em;
  font-style: italic;
}
.pkg-v4-single-label {
  font-size: 0.8rem;
  color: rgba(20,72,184,0.45);
  align-self: flex-end;
  margin-bottom: 0.15rem;
  margin-left: 0.3rem;
}

/* Feature list */
.pkg-v4-features {
  list-style: none;
  padding: 1.1rem 1.25rem;
  margin: 0 0 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  text-align: center;
}
.pkg-v4-features li {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  line-height: 1.3;
}
.pkg-v4-features li:last-child { border-bottom: none; }

.pkg-feat-red  { background: linear-gradient(160deg, #C62828 0%, #D32F2F 100%); }
.pkg-feat-blue { background: linear-gradient(160deg, #1565C0 0%, #1976D2 100%); }
.pkg-feat-teal { background: linear-gradient(160deg, #00695C 0%, #00796B 100%); }

/* Actions */
.pkg-v4-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}
.pkg-v4-actions .btn-spark {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
}

.pkg-v4-club-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 2px solid currentColor;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.pkg-v4-club-link:hover { transform: translateY(-1px); }

/* Solid filled variant (used when it's the only CTA) */
.pkg-v4-club-solid {
  color: #fff !important;
  border-color: transparent !important;
  font-size: 0.9rem;
  padding: 1rem 1rem;
}
.pkg-v4-club-solid.pkg-club-red  { background: #C62828; }
.pkg-v4-club-solid.pkg-club-red:hover  { background: #B71C1C; }
.pkg-v4-club-solid.pkg-club-blue { background: #1565C0; }
.pkg-v4-club-solid.pkg-club-blue:hover { background: #0D47A1; }
.pkg-v4-club-solid.pkg-club-teal { background: #00695C; }
.pkg-v4-club-solid.pkg-club-teal:hover { background: #004D40; }

.pkg-club-red  { color: #C62828; }
.pkg-club-red:hover  { background: #C62828; color: #fff; }
.pkg-club-blue { color: #1565C0; }
.pkg-club-blue:hover { background: #1565C0; color: #fff; }
.pkg-club-teal { color: #00695C; }
.pkg-club-teal:hover { background: #00695C; color: #fff; }

/* Info bar below package cards */
.pkg-infobar {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pkg-infobar { flex-direction: column; }
}

.pkg-infobar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.pkg-infobar-divider {
  width: 1px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
  align-self: stretch;
  margin: 0.75rem 0;
}
@media (max-width: 767px) {
  .pkg-infobar-divider { width: auto; height: 1px; margin: 0 1.5rem; }
}

.pkg-infobar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,200,232,0.12);
  border: 1px solid rgba(0,200,232,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00C8E8;
  flex-shrink: 0;
}

.pkg-infobar-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pkg-infobar-text strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.pkg-infobar-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Disclaimer */
.pkg-v4-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

/* ── How It Works — compact horizontal bar ─────────────────── */
.hiw-bar {
  background: linear-gradient(120deg, #CC1515 0%, #D32F2F 60%, #C62828 100%);
  position: relative;
}

.hiw-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  flex-wrap: wrap;
}

/* Left label */
.hiw-bar-label { flex-shrink: 0; }
.hiw-bar-label h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.hiw-bar-label p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  font-weight: 500;
}

/* Step pills */
.hiw-bar-steps {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.hiw-step-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 40px;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
}

.hiw-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font);
}

.hiw-step-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  font-family: var(--font);
}

.hiw-arrow {
  color: rgba(255,255,255,0.50);
  font-size: 0.8rem;
}

/* CTA — uses existing btn-spark */
.hiw-bar-cta { flex-shrink: 0; }

@media (max-width: 767px) {
  .hiw-bar-inner { gap: 1.25rem; }
  .hiw-bar-label, .hiw-bar-cta { width: 100%; }
  .hiw-bar-steps { justify-content: flex-start; }
}

/* How it works — card grid (3 col desktop) */
.steps-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) {
  .steps-card-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
  box-shadow: 0 4px 14px rgba(211,47,47,0.32);
  border: 3px solid var(--white);
}
.step-card-icon {
  font-size: 2.25rem;
  color: var(--red);
  margin: 0.5rem 0 1rem;
  display: block;
}
.step-card h4 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
}

/* Unlimited Wash Club — redesigned two-column */
.unlimited-redesign {
  background: #ffffff;
  overflow: hidden;
}

.unlimited-grid {
  display: grid;
  grid-template-columns: 1fr;
  height: calc(100vh - 80px);
  min-height: 480px;
  max-height: 800px;
}
@media (min-width: 900px) {
  .unlimited-grid { grid-template-columns: 52fr 48fr; }
}

/* Content side */
.unlimited-content {
  padding: 2.5rem max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem)) 2.5rem max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 900px) {
  .unlimited-content {
    padding: 2.5rem 3rem 2.5rem max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  }
}

.unlimited-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.1;
  margin: 0;
}

.unlimited-sub {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

/* Perks list */
.unlimited-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.unlimited-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--navy);
}
.unlimited-perks li strong { color: var(--navy-dark); }

.unlimited-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(211,47,47,0.08);
  border: 1px solid rgba(211,47,47,0.14);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* CTA block */
.unlimited-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.unlimited-actions .btn-primary {
  align-self: flex-start;
}
.unlimited-nudge {
  font-size: 0.75rem;
  color: rgba(20,72,184,0.45);
  font-style: italic;
}

/* Image side */
.unlimited-img-wrap {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.unlimited-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Unlimited Wash Club section (old, kept for reference) */
.unlimited-band {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Between-section wave dividers */
.section-wave {
  line-height: 0;
  position: relative;
  z-index: 5;
  margin-bottom: -1px;
}
.section-wave svg { display: block; width: 100%; height: 50px; }
.section-wave-to-navy { background: #ffffff; }
.section-wave-from-navy { background: #0a1628; }

/* ============================================================
   WHAT'S INCLUDED — dark navy perks band
   ============================================================ */
.includes-band {
  background: #ffffff;
  padding: 4rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.includes-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.includes-intro .section-label::before { background: rgba(255,255,255,0.35); }
.includes-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.includes-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}
.includes-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(211,47,47,0.07);
  border: 1.5px solid rgba(211,47,47,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.includes-item h4 {
  color: var(--navy-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.includes-item p {
  color: var(--gray-text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.includes-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(20,72,184,0.10);
  flex-shrink: 0;
  margin: 0.5rem 0;
}
.includes-trust {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  padding-top: 2rem;
}
.includes-trust .chooser-trust-item {
  color: rgba(255,255,255,0.80) !important;
}
.includes-trust .trust-sub {
  color: rgba(255,255,255,0.50) !important;
}
@media (max-width: 639px) {
  .includes-grid { flex-direction: column; gap: 2rem; }
  .includes-divider { display: none; }
  .includes-item { padding: 0; }
}

/* ============================================================
   PROBLEM / SOLUTION STRIP
   ============================================================ */
.prob-sol-strip {
  background: #fff;
  padding: 2rem 0 1.75rem;
}
.prob-sol-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prob-sol-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.4rem 1.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.6;
}
.prob-sol-item.prob {
  background: rgba(211,47,47,0.05);
  border: 1px solid rgba(211,47,47,0.12);
  color: rgba(20,72,184,0.65);
}
.prob-sol-item.sol {
  background: rgba(0,185,225,0.06);
  border: 1px solid rgba(0,185,225,0.18);
  color: var(--navy);
}
.prob-sol-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prob-pill {
  background: rgba(211,47,47,0.10);
  color: #B71C1C;
  border: 1px solid rgba(211,47,47,0.20);
}
.sol-pill {
  background: rgba(20,72,184,0.08);
  color: var(--navy-dark);
  border: 1px solid rgba(20,72,184,0.16);
}
.prob-sol-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(211,47,47,0.30);
}
@media (max-width: 639px) {
  .prob-sol-grid { flex-direction: column; gap: 0.75rem; }
  .prob-sol-divider {
    align-self: center;
    margin: -1.5rem 0;
  }
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */

/* Prevent horizontal scroll at page level */
html, body { overflow-x: hidden; }

/* ── Top bar: hide globally; service pages show compact (social icons only) ── */
@media (max-width: 767px) {
  .top-bar { display: none; }
  body.is-express .top-bar,
  body.is-touchless .top-bar,
  body.is-detail .top-bar { display: block; }
  body.is-express .top-bar-links,
  body.is-touchless .top-bar-links,
  body.is-detail .top-bar-links { display: none; }
  body.is-express .top-bar-inner,
  body.is-touchless .top-bar-inner,
  body.is-detail .top-bar-inner { justify-content: center; }
}

/* ── Tap targets — minimum 44×44px ─────────────────────────── */
.nav-toggle {
  min-width: 52px;
  min-height: 52px;
  padding: 0.875rem;
  font-size: 1.6rem;
}

.social-links a {
  width: 44px;
  height: 44px;
}

/* btn-sm used as a tappable action still needs 44px height */
.btn-sm { min-height: 44px; }

/* ── Section padding: reduce on mobile ─────────────────────── */
@media (max-width: 767px) {
  .section     { padding: 3.5rem 0; }
  .section--sm { padding: 2rem 0; }
  .cta-band    { padding: 3.5rem 0; }
  body.is-express .cta-band { padding: 3.5rem 0; }
}

/* ── Express hero: fix nowrap overflow on mobile ────────────── */
@media (max-width: 767px) {
  /* Allow buttons to stack vertically */
  .hero-express .hero-actions {
    flex-wrap: wrap;
  }
  .hero-express .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Allow headline lines to wrap naturally */
  .hero-express h1 .line1,
  .hero-express h1 em {
    white-space: normal;
  }
  /* Larger heading on mobile — clamp min is too small at ~375px */
  .hero-express h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }
  /* Better image crop on mobile: shift left to show foam action, not just car interior */
  .hero-express .hero-photo img {
    object-position: 25% center;
  }
  /* Tighten hero vertical padding on small screens */
  .hero-express .hero-inner {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }
}

/* ── Package v4 price circle: shrink on mobile ──────────────── */
@media (max-width: 639px) {
  .pkg-v4-circle {
    width: 100px;
    height: 100px;
    right: -10px;
  }
  .pkg-v4-circle-price { font-size: 1.3rem; }
  .pkg-v4-header { padding-right: 5.5rem; }
}

/* ── How-it-works bar: allow pills to wrap on small screens ─── */
@media (max-width: 479px) {
  .hiw-step-text { white-space: normal; }
  .hiw-step-pill { border-radius: 8px; }
}

/* ── Mobile nav: ensure CTA button is full-width ────────────── */
.mobile-nav .mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  font-size: 1rem;
}

/* ── Footer col links: improve tap target spacing ───────────── */
@media (max-width: 767px) {
  .footer-col a { margin-bottom: 0.75rem; }
  .footer-legal a { margin-right: 0; display: inline-block; margin-bottom: 0.5rem; }
}

/* ── Chooser grid: single column below 480px ────────────────── */
@media (max-width: 479px) {
  .chooser-grid { grid-template-columns: 1fr; }
}

/* ── Unlimited section: reduce min-height on mobile ─────────── */
@media (max-width: 899px) {
  .unlimited-grid { height: auto; min-height: 0; max-height: none; }
  .unlimited-img-wrap { min-height: 260px; }
}

/* ── MULTI-BRAND HEADER (about, contact, privacy, terms) ── */
.about-header {
  background: #fff;
  border-bottom: 1px solid rgba(12,45,107,0.08);
  padding: 1.25rem 0;
}
.about-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.about-header-logo {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.about-header-logo:hover { opacity: 1; transform: translateY(-2px); }
.about-header-logo img { height: 72px; width: auto; display: block; }
.about-header-divider { width: 1px; height: 36px; background: rgba(12,45,107,0.12); }
/* ── About/contact header logos: stay on one row on mobile ── */
@media (max-width: 600px) {
  .about-header-inner { gap: 1rem !important; }
  .about-header-divider { display: none !important; }
  .about-header-logo img { height: 44px !important; }
}

/* ── About/contact footer logos: compact single row on mobile ── */
@media (max-width: 600px) {
  .about-footer-logos a { padding: 0 0.6rem !important; }
  .about-footer-logos a img { height: 40px !important; }
  .about-footer-logo-div { display: none !important; }
}

/* ── CTA buttons: equal width when stacked on mobile ── */
@media (max-width: 639px) {
  .ct-hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── CTA band eyebrow: smaller on mobile ── */
@media (max-width: 767px) {
  .cta-band-eyebrow { font-size: 0.62rem; letter-spacing: 0.10em; }
}

/* ── Touchless hero h1: fix undersized clamp on mobile ── */
@media (max-width: 767px) {
  .hero-touchless h1 { font-size: clamp(2.1rem, 9vw, 3rem) !important; }
}

/* ── Hero h1: ensure readable size on all light heroes ── */
@media (max-width: 767px) {
  .hero h1, .hero-light h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* ── Hero photo: shift up on mobile to show subjects better ── */
@media (max-width: 767px) {
  .hero-photo img { object-position: center 20%; }
}

/* ============================================================
   VIDEO GUIDE — placeholder section (videos from local provider)
   ============================================================ */
.video-guide {
  background: #F7F9FC;
  padding: 4.5rem 0;
}
.video-guide-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.video-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .video-guide-grid { grid-template-columns: 1fr; }
}
.video-ph {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,45,107,0.88) 0%, rgba(20,72,184,0.75) 100%);
}
.video-ph-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}
.video-ph-play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,255,255,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}
.video-ph-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.video-ph-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.58);
}
.video-ph-badge {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
}

/* ── Location building photos — full background behind info area ── */
.loc-info-header { position: relative; overflow: hidden; }
.loc-info-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.loc-info-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.91);
  z-index: 1;
}
.loc-info-left,
.loc-info-details { position: relative; z-index: 2; }

/* ── Location 3-panel cards (photo | info | map) ── */
.loc-panel-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(12,45,107,0.10);
  background: #fff;
  margin-bottom: 2.5rem;
}
.loc-panel-photo {
  position: relative;
  min-height: 280px;
}
.loc-panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.loc-panel-info {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: #fff;
  border-left: 1px solid #e8edf5;
  border-right: 1px solid #e8edf5;
}
.loc-panel-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.2;
}
.loc-panel-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.2;
}
.loc-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #EEF4FF;
  color: var(--navy);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  width: fit-content;
}
.loc-panel-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}
.loc-panel-row i {
  width: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--navy);
}
.loc-panel-row a {
  color: #475569;
  text-decoration: underline;
  text-decoration-color: rgba(20,72,184,0.25);
}
.loc-panel-row a:hover { color: var(--navy); }
.loc-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.loc-panel-map { position: relative; }
.loc-panel-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 280px;
}
@media (max-width: 900px) {
  .loc-panel-card { grid-template-columns: 1fr 1fr; }
  .loc-panel-map { grid-column: 1 / -1; }
  .loc-panel-map iframe { min-height: 220px; }
  .loc-panel-photo { min-height: 240px; }
}
@media (max-width: 580px) {
  .loc-panel-card { grid-template-columns: 1fr; border-radius: 12px; }
  .loc-panel-map { grid-column: 1; }
  .loc-panel-photo { min-height: 200px; }
  .loc-panel-map iframe { min-height: 200px; }
  .loc-panel-info { padding: 1.5rem; }
}
