/* ============================================================
   GO WASH — Main Stylesheet
   Brand: Baloo Bhai 2 (headers) / Roboto (body)
   Colors: #00B5E2 blue / #97D700 green / #FCE300 yellow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;600;700;800&family=Roboto:wght@400;500;700&display=swap');

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --blue:        #00B5E2;
  --blue-dark:   #0097C0;
  --green:       #97D700;
  --green-dark:  #7DB800;
  --yellow:      #FCE300;
  --yellow-dark: #E0CA00;
  --gray-dark:   #3A3A3A;
  --gray-mid:    #63666A;
  --gray-light:  #F5F5F5;
  --white:       #FFFFFF;

  --font-head: 'Baloo Bhai 2', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

  --max-width: 1160px;
  --section-pad: 80px 24px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--blue   { background: var(--blue); color: var(--white); }
.section--green  { background: var(--green); }
.section--yellow { background: var(--yellow); }
.section--gray   { background: var(--gray-light); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 800;
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; color: var(--gray-mid); }
.section--blue p,
.section--blue h2,
.section--blue h3 { color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 10px;
  height: 13px;
  background: var(--yellow);
  border-radius: 0 50% 50% 50%;
  transform: rotate(-45deg);
  flex-shrink: 0;
  margin-top: 1px;
}
.section--blue .section-label        { color: var(--yellow); }
.section--blue .section-label::before { background: rgba(255,255,255,0.45); }
.section--gray .section-label        { color: var(--blue); }
.vip .section-label                  { color: var(--yellow); }
.vip .section-label::before          { background: rgba(255,255,255,0.45); }
.go-green .section-label             { color: var(--yellow); }
.go-green .section-label::before     { background: rgba(255,255,255,0.45); }
.fundraising-hero .section-label::before { background: var(--blue); }

.section-heading { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

@keyframes btn-shimmer {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
.btn--primary {
  background: var(--yellow);
  color: var(--gray-dark);
}
.btn--primary:hover { background: var(--yellow-dark); }

.btn--shimmer {
  position: relative;
  overflow: hidden;
}
.btn--shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-20deg);
  animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes vip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,181,226,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(0,181,226,0); }
}
@keyframes yellow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,227,0,0.6); }
  50%       { box-shadow: 0 0 0 10px rgba(252,227,0,0); }
}
.btn--vip-pulse {
  animation: yellow-pulse 2.4s ease-in-out infinite;
}
.btn--vip-pulse:hover { animation: none; box-shadow: 0 0 0 4px rgba(252,227,0,0.5); }
.btn--vip {
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  justify-content: center;
  animation: vip-pulse 2.4s ease-in-out infinite;
}
.btn--vip:hover { background: #009ec7; animation: none; box-shadow: 0 0 0 4px rgba(0,181,226,0.4); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--blue-dark); }

.btn--white {
  background: var(--white);
  color: var(--blue);
}
.btn--white:hover { background: var(--gray-light); }

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

.btn--outline-dark {
  background: transparent;
  color: var(--gray-dark);
  border: 2px solid #ccc;
}
.btn--outline-dark:hover { background: var(--gray-light); }

.btn--lg {
  font-size: 1.15rem;
  padding: 18px 40px;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--gray-dark);
  transition: background 0.2s, color 0.2s;
}
.nav__links a:hover { background: var(--gray-light); color: var(--blue); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--gray-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-toggle:hover { background: var(--gray-light); color: var(--blue); }
.nav__dropdown-toggle svg  { transition: transform 0.2s; }
.nav__dropdown.is-open .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  z-index: 200;
}
.nav__dropdown.is-open .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-dark);
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-menu a:hover { background: var(--gray-light); color: var(--blue); }
.nav__dropdown-menu .location-hours {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--gray-mid);
  display: block;
  margin-top: 2px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__cta { margin-left: 0; }

@media (max-width: 1023px) {
  .nav__cta {
    font-size: 0.78rem;
    padding: 8px 14px;
    white-space: nowrap;
  }
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--gray-dark);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .mobile-section-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 16px 0 4px;
  font-family: var(--font-body);
  font-weight: 700;
}
.nav__mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

@media (min-width: 1024px) {
  .nav__links    { display: flex; }
  .nav__hamburger { display: none; }
  .nav__cta { font-size: 0.95rem; padding: 12px 24px; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background:
    repeating-linear-gradient(
      98deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 82px
    ),
    linear-gradient(160deg, rgba(0, 181, 226, 0.72) 0%, rgba(0, 181, 226, 0.60) 45%, rgba(0, 181, 226, 0.38) 100%),
    url('../assets/images/hero-bg.jpg') center 30% / cover no-repeat;
  color: var(--white);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

/* Centered single-column hero variant */
.hero--centered {
  text-align: center;
  padding: 140px 24px 120px;
}
.hero--centered .hero__eyebrow { margin-bottom: 20px; }
.hero--centered .hero__sub {
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero--centered .hero__trust {
  justify-content: center;
  margin-top: 44px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  padding: 6px 18px;
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}
.hero__headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero__headline span { color: var(--yellow); }
.hero__sub {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
  justify-content: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
}
.hero__trust-item svg { flex-shrink: 0; }

/* ── Feature Bar ──────────────────────────────────────────── */
.feature-bar {
  background: var(--gray-dark);
  padding: 0 0 32px;
  overflow: hidden;
}
.feature-bar__stripe {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 52px 18px 52px;
  border-radius: 999px 0 0 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  width: 100%;
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0,0,0,0.28);
  transform: translateX(110%);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.feature-bar__stripe + .feature-bar__stripe { margin-top: -16px; }
.feature-bar__stripe--yellow { background: var(--yellow); z-index: 1; }
.feature-bar__stripe--green  { background: var(--green);  z-index: 2; }
.feature-bar__stripe--blue   { background: var(--blue);   z-index: 3; }
.feature-bar__stripe svg { flex-shrink: 0; }

.feature-bar.is-visible .feature-bar__stripe { transform: translateX(0); transition-delay: 0s; }

/* Desktop: horizontal inline like the logo */
@media (min-width: 768px) {
  .feature-bar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
  }
  .feature-bar__stripe {
    flex: 1;
    width: auto;
    justify-content: center;
    padding: 30px 44px 30px 60px;
    font-size: 1.5rem;
    margin-top: 0;
    transform: translateX(400%);
  }
  .feature-bar__stripe + .feature-bar__stripe {
    margin-top: 0;
    margin-left: -60px;
  }
}

@media (max-width: 767px) {
  .feature-bar__stripe { font-size: 1.1rem; padding: 15px 28px 15px 32px; gap: 10px; }
  .feature-bar__stripe + .feature-bar__stripe { margin-top: -12px; }
}

@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
  .hero__content { /* left col */ }
  .hero__visual  { /* right col */ }
}

/* Hero visual — wash type cards */
.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.hero__card:hover { background: rgba(255,255,255,0.18); }
.hero__card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.hero__card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.hero__card-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--yellow);
}
.hero__card-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* ── How It Works ────────────────────────────────────────── */
.steps {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.steps__process {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}
.step-node {
  padding: 48px 0 40px;
  border-bottom: 2px solid rgba(0,181,226,0.1);
  text-align: center;
}
.step-node:last-child { border-bottom: none; }
.step-node__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5.5rem;
  color: var(--blue);
  line-height: 0.85;
  margin-bottom: 16px;
  display: block;
}
.step-node h3 { font-size: 1.3rem; color: var(--gray-dark); margin-bottom: 10px; }
.step-node p  { font-size: 0.95rem; max-width: 300px; margin: 0 auto; }

@media (min-width: 768px) {
  .steps__process {
    flex-direction: row;
  }
  .step-node {
    flex: 1;
    padding: 0 40px 0;
    border-bottom: none;
    border-left: 2px solid rgba(0,181,226,0.2);
  }
  .step-node:first-child { border-left: none; padding-left: 0; }
  .step-node:last-child  { padding-right: 0; }
  .step-node__num { font-size: 7rem; margin-bottom: 20px; }
}

/* ── Packages ────────────────────────────────────────────── */
.packages { padding: var(--section-pad); background: var(--white); }
.packages .section-label { color: var(--blue); }
.packages .section-label::before { background: var(--blue); }
.packages .section-heading { color: var(--gray-dark); }
.packages .section-sub { color: var(--gray-mid); }
.packages__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: transparent;
  color: var(--gray-mid);
  transition: all 0.2s;
}
.tab-btn:hover,
.tab-btn.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.packages__subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 16px;
  margin-top: 32px;
}
.packages__subtitle:first-child { margin-top: 0; }

.packages__grid { display: grid; gap: 20px; }

/* Card base */
.pkg-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-dark);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
/* Clip the colored header band without clipping the overhanging pill */
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Colored header band — name + tagline */
.pkg-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  padding: 24px 24px 4px;
  border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
}
.pkg-card__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 24px 20px;
}

.pkg-card--easy .pkg-card__name,
.pkg-card--easy .pkg-card__tagline    { background: var(--yellow); color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

.pkg-card--shine .pkg-card__name,
.pkg-card--shine .pkg-card__tagline   { background: var(--green); color: var(--white); text-shadow: 0 1px 4px rgba(0,0,0,0.25); }

.pkg-card--ceramic .pkg-card__name,
.pkg-card--ceramic .pkg-card__tagline,
.pkg-card--protect .pkg-card__name,
.pkg-card--protect .pkg-card__tagline,
.pkg-card--allin .pkg-card__name,
.pkg-card--allin .pkg-card__tagline   { background: var(--blue); color: var(--white); }
.pkg-card--ceramic .pkg-card__tagline,
.pkg-card--protect .pkg-card__tagline,
.pkg-card--allin .pkg-card__tagline   { color: rgba(255,255,255,0.8); }

/* Card body */
.pkg-card__features {
  list-style: none;
  padding: 20px 24px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pkg-card__features li {
  font-size: 0.9rem;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-card__features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.pkg-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 24px;
  margin-top: 16px;
  border-top: 1px solid #eee;
}
.pkg-price { display: flex; flex-direction: column; }
.pkg-price__amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  color: #0077a0;
}
.pkg-price__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
}

@media (min-width: 640px)  { .packages__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .packages__grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card--featured {
  border-color: var(--gray-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 1;
}
.pkg-card--featured:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
.pkg-card__popular {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--gray-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ── GO! VIP ─────────────────────────────────────────────── */
.vip {
  background: linear-gradient(to bottom, #0090b8 0%, #00a3ce 50%, #00b5e2 100%);
  color: var(--white);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
@keyframes vip-section-shimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(250%) skewX(-12deg); }
}
.vip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 50%, transparent 100%);
  animation: vip-section-shimmer 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.vip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.vip__headline {
  text-align: center;
}
.vip__headline h2 { margin-bottom: 0; }
.vip__bottom {
  display: grid;
  gap: 32px;
}
.vip__benefits-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .vip__bottom { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
}
/* Savings Calculator — linear strip */
.vip__calculator {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.vip__calc-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.vip__calc-counter-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vip__calc-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vip__calc-rule {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
@media (min-width: 768px) {
  .vip__calc-strip {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    text-align: center;
  }
  .vip__calc-counter-group { flex-direction: column; padding: 0 40px; }
  .vip__calc-col { padding: 0 32px; }
  .vip__calc-vs { padding: 0 12px; }
  .vip__calc-result { padding: 0 40px; }
  .vip__calc-rule { width: 1px; height: 64px; flex-shrink: 0; }
}
.vip__calc-question {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.vip__calc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vip__calc-btn:hover:not(:disabled) { background: rgba(255,255,255,0.15); border-color: var(--white); }
.vip__calc-btn:disabled { opacity: 0.35; cursor: default; }
.vip__calc-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--white);
  min-width: 48px;
  text-align: center;
  line-height: 1;
}
.vip__calc-col {
  text-align: center;
}
.vip__calc-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.vip__calc-col-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.vip__calc-col--vip .vip__calc-col-price { color: var(--yellow); }
.vip__calc-col-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.vip__calc-vs {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}
.vip__calc-result {
  text-align: center;
  transition: all 0.3s;
}
.vip__calc-save-amount {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s, font-size 0.3s;
}
.vip__calc-save-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  transition: color 0.3s;
}
.vip__calc-result.is-saving .vip__calc-save-amount {
  color: var(--green);
  font-size: 2rem;
}
.vip__calc-result.is-saving .vip__calc-save-label {
  color: rgba(255,255,255,0.8);
}

/* Hook text */
.vip__hook {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 16px 0 28px;
  max-width: 480px;
}
.vip__hook strong { color: var(--white); }
/* Checklist benefits */
.vip__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vip__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}
.vip__checklist svg { flex-shrink: 0; }
/* CTA group */
.vip__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.vip__cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* App promo */
.vip__app-promo {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
}
.vip__app-promo-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.vip__app-promo h3 { color: var(--white); margin-bottom: 12px; font-size: 1.9rem; line-height: 1.2; }
.vip__app-promo p  { color: rgba(255,255,255,0.88); margin-bottom: 28px; font-size: 1rem; line-height: 1.6; }
.vip__app-badges {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--gray-dark);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.app-badge svg { flex-shrink: 0; }
.vip__app-free {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}


/* ── Locations ───────────────────────────────────────────── */
.locations { padding: var(--section-pad); background: var(--gray-dark); }
.locations .section-label { color: var(--yellow); }
.locations .section-label::before { background: rgba(255,255,255,0.4); }
.locations .section-heading { color: var(--white); }
.locations .section-sub { color: rgba(255,255,255,0.65); }
.locations__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.loc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,0.22); }

/* Clickable colored header */
.loc-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 28px 28px;
  min-height: 190px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s;
}
.loc-card__header:hover { filter: brightness(1.06); }
.loc-card--blue   .loc-card__header { background: var(--blue); }
.loc-card--green  .loc-card__header { background: var(--green); }
.loc-card--yellow .loc-card__header { background: var(--yellow); }

.loc-card__type {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.loc-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
  margin: 4px 0 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.loc-card__hours-quick {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  margin: 6px 0 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.loc-card__chevron {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: rgba(255,255,255,0.6);
  transition: transform 0.2s, color 0.2s;
}
.loc-card__header:hover .loc-card__chevron { transform: translateX(4px); color: rgba(255,255,255,1); }

/* Card body */
.loc-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.loc-card__address {
  font-size: 0.88rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}
.loc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.loc-card__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.loc-card__phone:hover { color: var(--blue); }
.amenity-tag {
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--gray-light);
  color: var(--gray-dark);
}
.btn--sm {
  font-size: 0.85rem;
  padding: 10px 18px;
  white-space: nowrap;
}

@media (min-width: 768px)  { .locations__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations__grid { grid-template-columns: repeat(3, 1fr); } }

/* ── GO! Green ───────────────────────────────────────────── */
.go-green {
  background: var(--green);
  padding: var(--section-pad);
}
.go-green__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}
.go-green__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.go-green__stat { }
.go-green__stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.go-green__stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.go-green h2, .go-green p { color: var(--white); }
.go-green .section-label { color: var(--yellow); }

@media (min-width: 768px) {
  .go-green__inner { grid-template-columns: 1fr 1fr; }
}

/* ── Fundraising Strip ───────────────────────────────────── */
.fundraising-strip {
  background: var(--yellow);
  padding: 56px 24px;
  text-align: center;
}
.fundraising-strip h2 { color: var(--gray-dark); margin-bottom: 12px; }
.fundraising-strip p  { color: var(--gray-mid); max-width: 540px; margin: 0 auto 32px; }

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta {
  background: var(--blue);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.final-cta__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(10rem, 22vw, 22rem);
  line-height: 1;
  color: rgba(255,255,255,0.055);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.final-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}
.final-cta__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.final-cta__heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}
.final-cta__free {
  color: var(--yellow);
  display: block;
}
.final-cta__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
}
.final-cta__btn {
  font-size: 1.1rem;
  padding: 18px 48px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 60px 24px 32px;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 260px;
}
.footer__logo { height: 40px; width: auto; margin-bottom: 4px; filter: brightness(0) invert(1); }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__location-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.footer__location-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}
.footer__social a:hover { background: var(--blue); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--white); }

@media (min-width: 640px) {
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ── Free Wash Page ──────────────────────────────────────── */
.free-wash-hero {
  background: var(--blue);
  padding: 72px 24px 64px;
  text-align: center;
  color: var(--white);
}
.free-wash-hero h1 span { color: var(--yellow); }
.free-wash-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin: 16px auto 0; }

.free-wash-body {
  padding: 64px 24px;
  background: var(--gray-light);
}
.free-wash-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}
.free-wash-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}
.free-wash-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  font-weight: 500;
}
.free-wash-trust-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Paperform placeholder */
.paperform-placeholder {
  background: var(--gray-light);
  border: 2px dashed #ccc;
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  color: var(--gray-mid);
  font-size: 0.9rem;
}
.paperform-placeholder p { color: var(--gray-mid); }

/* ── Location Detail Pages ───────────────────────────────── */
.location-hero {
  background: var(--blue);
  padding: 64px 24px;
  color: var(--white);
}
.location-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: start;
}
.location-hero h1 { color: var(--white); margin-bottom: 12px; }
.location-hero .badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 50px;
}
.badge--yellow { background: var(--yellow); color: var(--gray-dark); }
.badge--white  { background: rgba(255,255,255,0.2); color: var(--white); }
.badge--green  { background: var(--green); color: var(--white); }

.location-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.location-detail-row svg { flex-shrink: 0; margin-top: 2px; }

.location-hours-table {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 8px;
}
.location-hours-table .loc-card__hours-row { border-color: rgba(255,255,255,0.1); }
.location-hours-table .loc-card__hours-label { color: var(--white); }
.location-hours-table .loc-card__hours-value { color: rgba(255,255,255,0.8); }
.loc-card__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #eee;
}
.loc-card__hours-row:last-child { border-bottom: none; }
.loc-card__hours-label { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--gray-dark); }
.holiday-icon { font-size: 1.15rem; line-height: 1; flex-shrink: 0; }

/* 2-column holiday grid */
.holiday-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 48px;
  margin-top: 32px;
}
.holiday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.holiday-col { }
@media (max-width: 680px) {
  .holiday-card { padding: 24px 20px; }
  .holiday-grid { grid-template-columns: 1fr; }
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .location-hero__inner { grid-template-columns: 1fr 1fr; }
  .location-map iframe  { height: 420px; }
}

.location-packages { padding: var(--section-pad); }
.location-amenities { padding: var(--section-pad); background: var(--gray-light); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.amenity-card__icon { font-size: 2rem; margin-bottom: 12px; }
.amenity-card__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* ── Location Amenity Bar ────────────────────────────────── */
.amenity-bar { overflow: hidden; }
.amenity-bar__stripe {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px 22px 44px;
  border-radius: 999px 0 0 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0,0,0,0.25);
}
.amenity-bar__stripe + .amenity-bar__stripe { margin-top: -16px; }
.amenity-bar__stripe--yellow { background: var(--yellow); z-index: 1; }
.amenity-bar__stripe--green  { background: var(--green);  z-index: 2; }
.amenity-bar__stripe--blue   { background: var(--blue);   z-index: 3; }
@media (min-width: 768px) {
  .amenity-bar { display: flex; flex-direction: row; align-items: stretch; }
  .amenity-bar__stripe {
    flex: 1;
    justify-content: center;
    padding: 28px 44px 28px 60px;
    font-size: 1.4rem;
    border-radius: 999px 0 0 999px;
  }
  .amenity-bar__stripe + .amenity-bar__stripe { margin-top: 0; margin-left: -56px; }
}

/* ── GO VIP Page ─────────────────────────────────────────── */

/* Hero */
.vip-hero {
  background:
    linear-gradient(rgba(30,30,30,0.72), rgba(20,20,20,0.80)),
    url('../assets/images/vip-hero.jpg') center center / cover no-repeat;
  padding: 96px 24px 52px;
  text-align: center;
  color: var(--white);
}
.vip-hero__inner { display: flex; flex-direction: column; align-items: center; }
.vip-hero__eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.vip-hero__h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
}
.vip-hero__accent { color: var(--yellow); }
.vip-hero__sub {
  max-width: 580px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.vip-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.vip-hero__btn-primary {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.vip-hero__btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.vip-hero__btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.vip-hero__btn-outline:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }
.vip-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.vip-stat { text-align: center; padding: 0 40px; }
.vip-stat__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.vip-stat__label { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.vip-stat__div { width: 1px; height: 52px; background: rgba(255,255,255,0.2); }
.vip-hero__app-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}

/* VIP Highlight Bar */
.vip-bar { overflow: hidden; }
.vip-bar__stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 48px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.vip-bar__stripe + .vip-bar__stripe { margin-top: -16px; }
.vip-bar__stripe--yellow { background: var(--yellow); color: var(--gray-dark); text-shadow: none; z-index: 1; }
.vip-bar__stripe--green  { background: var(--green);  z-index: 2; }
.vip-bar__stripe--blue   { background: var(--blue);   z-index: 3; }
@media (min-width: 768px) {
  .vip-bar { display: flex; flex-direction: row; align-items: stretch; }
  .vip-bar__stripe {
    flex: 1;
    padding: 28px 44px 28px 60px;
    font-size: 1.4rem;
    border-radius: 999px 0 0 999px;
  }
  .vip-bar__stripe + .vip-bar__stripe { margin-top: 0; margin-left: -56px; }
}

/* Why Section */
.vip-why { padding: var(--section-pad); background: var(--white); }
.vip-why__grid {
  display: grid;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 768px) {
  .vip-why__grid { grid-template-columns: 1fr auto 1fr; }
}
.vip-why__col h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 28px; }
.vip-why__label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.vip-why__label--red   { background: #ffe5e5; color: #c0392b; }
.vip-why__label--green { background: #e8f8d0; color: #3a7a00; }
.vip-why__points { display: flex; flex-direction: column; gap: 14px; }
.vip-why__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.vip-why__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.vip-why__point--no .vip-why__icon  { background: #ffe5e5; color: #c0392b; }
.vip-why__point--yes .vip-why__icon { background: #e8f8d0; color: #3a7a00; }
.vip-why__point--no span:last-child  { color: var(--gray-mid); }
.vip-why__point--yes span:last-child { color: var(--gray-dark); font-weight: 500; }
.vip-why__divider {
  width: 1px;
  background: #e8e8e8;
  align-self: stretch;
  display: none;
}
@media (min-width: 768px) { .vip-why__divider { display: block; } }

/* Membership Plans */
.vip-plans { padding: var(--section-pad); background: var(--gray-light); }
.vip-plans__sub {
  max-width: 600px;
  margin: 12px auto 48px;
  color: var(--gray-mid);
  font-size: 1rem;
}
.vip-tier-grid {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) { .vip-tier-grid { grid-template-columns: repeat(3, 1fr); } }
.vip-tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.vip-tier-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.vip-tier-card--featured {
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  transform: scale(1.03);
}
.vip-tier-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.vip-tier-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.vip-tier-card__top {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vip-tier-card__top--yellow { background: var(--yellow); }
.vip-tier-card__top--green  { background: var(--green); }
.vip-tier-card__top--blue   { background: var(--blue); }
.vip-tier-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.vip-tier-card__top--yellow .vip-tier-card__name { color: var(--gray-dark); }
.vip-tier-card__price {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.vip-tier-card__top--yellow .vip-tier-card__price { color: var(--gray-dark); }
.vip-tier-card__amount { font-size: 3rem; }
.vip-tier-card__per { font-size: 1rem; font-weight: 600; opacity: 0.75; margin-left: 2px; }
.vip-tier-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vip-tier-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.vip-tier-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--gray-mid);
}
.vip-tier-card__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.btn--block { display: block; text-align: center; width: 100%; box-sizing: border-box; }
.vip-tier-card__btn-green {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.vip-tier-card__btn-green:hover { opacity: 0.88; color: var(--white); }
.vip-plans__note {
  margin-top: 28px;
  color: var(--gray-mid);
  font-size: 0.85rem;
}

/* Single Membership Plan */
.vip-single-plan {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.1);
}
.vip-single-plan__top {
  background: var(--blue);
  padding: 40px 48px 36px;
  text-align: center;
  color: var(--white);
}
.vip-single-plan__eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.vip-single-plan__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}
.vip-single-plan__price {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.vip-single-plan__amount { font-size: 5rem; }
.vip-single-plan__per { font-size: 1.4rem; font-weight: 600; opacity: 0.75; margin-left: 4px; }
.vip-single-plan__tagline { color: rgba(255,255,255,0.82); font-size: 1rem; margin: 0; }
.vip-single-plan__body { padding: 36px 48px 40px; }
.vip-single-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vip-single-plan__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-dark);
  font-weight: 500;
}
.vip-single-plan__features li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.vip-single-plan__app-label {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-mid);
  margin-bottom: 16px;
}
.vip-single-plan__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.vip-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-dark);
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  min-width: 180px;
}
.vip-app-btn:hover { background: #222; transform: translateY(-2px); color: var(--white); }
.vip-app-btn svg { flex-shrink: 0; }
.vip-app-btn__store {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  margin-bottom: 2px;
}
.vip-app-btn__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}
@media (max-width: 600px) {
  .vip-single-plan__top { padding: 32px 24px 28px; }
  .vip-single-plan__body { padding: 28px 24px 32px; }
  .vip-single-plan__amount { font-size: 3.6rem; }
}

/* How It Works */
.vip-how { padding: var(--section-pad); background: var(--white); }

/* App Section */
.vip-app { padding: var(--section-pad); }
.vip-app__grid {
  display: grid;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) { .vip-app__grid { grid-template-columns: 1.2fr 1fr; } }
.vip-app__copy h2 { color: var(--white); margin-bottom: 16px; }
.vip-app__copy p { color: rgba(255,255,255,0.85); line-height: 1.7; }
.vip-app__promo-card {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.vip-app__promo-eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.vip-app__promo-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.6rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.vip-app__promo-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.65; }

@media (max-width: 600px) {
  .vip-stat { padding: 0 16px; }
  .vip-stat__num { font-size: 2rem; }
  .vip-stat__label { font-size: 0.72rem; }
  .vip-stat__div { height: 36px; }
  .vip-hero__stats { flex-wrap: nowrap; }
  .vip-tier-card--featured { transform: none; }
  .vip-tier-card--featured:hover { transform: translateY(-6px); }
}

/* ── GO Green Page ───────────────────────────────────────── */
.green-hero {
  background: var(--green);
  padding: 72px 24px 80px;
  text-align: center;
}
.green-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  max-width: 700px;
  margin: 12px auto 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.green-hero p {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}
.green-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.green-hero__stat {
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 32px;
  min-width: 140px;
}
.green-hero__stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}
.green-hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.green-content { padding: var(--section-pad); }
.green-content__grid {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .green-content__grid { grid-template-columns: 1fr 1fr; }
}
.water-comparison {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  margin-top: 32px;
}
.water-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.water-bar__fill {
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
}
.water-bar__fill--home { background: #ddd; }
.water-bar__fill--wash { background: var(--blue); }
.water-bar__amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
}
.water-bar__label {
  font-size: 0.82rem;
  color: var(--gray-mid);
  text-align: center;
  font-weight: 600;
}

/* ── Fundraising Page ────────────────────────────────────── */

/* Hero */
.fr-hero {
  background:
    linear-gradient(rgba(0,100,140,0.78), rgba(0,70,110,0.88)),
    url('../assets/images/fundraising-hero.jpg') center top / cover no-repeat;
  padding: 96px 24px 48px;
  text-align: center;
  color: var(--white);
}
.fr-hero__inner { display: flex; flex-direction: column; align-items: center; }
.fr-hero__eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--gray-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.fr-hero__h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
}
.fr-hero__accent { color: var(--yellow); }
.fr-hero__sub {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.fr-hero__cta {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fr-hero__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.fr-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}
.fr-stat { text-align: center; padding: 0 40px; }
.fr-stat__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.fr-stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.fr-stat__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.25);
}

/* Why It Works */
.fr-why {
  background: var(--white);
  padding: var(--section-pad);
}
.fr-why__heading { margin-bottom: 16px; }
.fr-why__sub {
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--gray-mid);
  font-size: 1.05rem;
  line-height: 1.75;
}
.fr-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 40px;
  align-items: start;
}
.fr-step { text-align: center; }
.fr-step__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.fr-step h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin: 0 0 12px;
}
.fr-step p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}
.fr-step__divider {
  width: 1px;
  background: #d8d8d8;
  align-self: stretch;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .fr-steps {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .fr-step__divider { width: 60px; height: 1px; margin: 0 auto; align-self: auto; }
  .fr-stat { padding: 0 16px; }
  .fr-stat__num { font-size: 2rem; }
  .fr-stat__label { font-size: 0.75rem; }
  .fr-stat__divider { width: 1px; height: 40px; }
  .fr-hero__stats { flex-wrap: nowrap; gap: 0; }
}

/* Org Ticker */
.fr-ticker {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}
.fr-ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: fr-scroll 55s linear infinite;
  align-items: flex-end;
}
.fr-ticker:hover .fr-ticker__track { animation-play-state: paused; }
.fr-ticker__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 52px 18px 44px;
  border-radius: 999px 0 0 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: -38px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.fr-ticker__item--yellow { background: var(--yellow); }
.fr-ticker__item--green  { background: var(--green); }
.fr-ticker__item--blue   { background: var(--blue); }
@keyframes fr-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Why It Works Cards */
.fr-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  background: var(--white);
  text-align: left;
}
.fr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}
.fr-card__header {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fr-card--blue  .fr-card__header { background: var(--blue); }
.fr-card--green .fr-card__header { background: var(--green); }
.fr-card--yellow .fr-card__header { background: var(--yellow); }
.fr-card__step {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(255,255,255,0.25);
  align-self: flex-end;
}
.fr-card--yellow .fr-card__step { color: rgba(0,0,0,0.15); }
.fr-card__body {
  padding: 24px 28px 32px;
  flex: 1;
}
.fr-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin: 0 0 10px;
}
.fr-card p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin: 0;
}

/* Form Section */
.fr-form-section {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.fr-form-grid {
  display: grid;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 900px) {
  .fr-form-grid { grid-template-columns: 1.5fr 1fr; }
}
.fr-form-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.fr-form-sub {
  color: var(--gray-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.fr-form-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.fr-form-right { display: flex; flex-direction: column; gap: 20px; }
.fr-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.fr-sidebar-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gray-dark);
  margin-bottom: 16px;
}
.fr-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fr-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-mid);
  font-size: 0.95rem;
}
.fr-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.fr-sidebar-card__body {
  color: var(--gray-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 8px;
}
.fr-sidebar-card__body:last-child { margin-bottom: 0; }

.fundraising-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-vip-card {
  background: linear-gradient(135deg, #0090b8 0%, #00b5e2 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  margin-top: 4px;
}
.contact-vip-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 6px;
}
.contact-vip-card__heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-vip-card__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 16px;
}
.contact-vip-card__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.app-badge--dark {
  background: rgba(0,0,0,0.3);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.app-badge--dark:hover {
  background: rgba(0,0,0,0.5);
  color: var(--white);
}

.contact-app-callout {
  background: var(--gray-light);
  padding: 0 24px 0;
}
.contact-app-callout__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-app-callout__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.contact-app-callout__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.contact-app-callout__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--gray-dark);
}
.contact-app-callout__text span { color: var(--gray-mid); }
.contact-app-callout__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
/* ── FAQ Section ─────────────────────────────────────────── */
.faq { padding: var(--section-pad); background: var(--white); }
.faq__container { max-width: 800px; }
.faq--wide .faq__container { max-width: 1100px; margin: 0 auto; text-align: center; }
.faq--wide .faq__list { text-align: left; }
.faq__list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1.5px solid #e8e8e8; border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq__item[open] { border-color: var(--blue); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
  background: var(--white);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__item[open] .faq__q { color: var(--blue); }
.faq__a { padding: 0 20px 20px; }
.faq__a p { color: var(--gray-mid); font-size: 0.95rem; line-height: 1.7; }
.faq__btn-outline { border-color: var(--blue) !important; color: var(--blue) !important; }
@media (min-width: 768px) {
  .faq__list--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .faq__list--2col .faq__item { align-self: start; }
}

.contact-hero {
  background: var(--blue);
  padding: 72px 24px;
  text-align: center;
  color: var(--white);
}
.contact-body {
  padding: var(--section-pad);
  background: var(--gray-light);
}
.contact-grid {
  display: grid;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.6fr; }
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-loc-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-loc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.contact-loc-card__accent {
  width: 8px;
  flex-shrink: 0;
}
.contact-loc-card--yellow .contact-loc-card__accent { background: var(--yellow); }
.contact-loc-card--green  .contact-loc-card__accent { background: var(--green); }
.contact-loc-card--blue   .contact-loc-card__accent { background: var(--blue); }

.contact-loc-card__body {
  flex: 1;
  padding: 20px 16px 20px 20px;
}
.contact-loc-card__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gray-dark);
  text-decoration: none;
  margin-bottom: 4px;
}
.contact-loc-card__name:hover { color: var(--blue); }
.contact-loc-card__address {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.contact-loc-card__phone {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 6px;
}
.contact-loc-card__phone:hover { text-decoration: underline; }
.contact-loc-card__hours {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}
.contact-loc-card__arrow-link {
  flex-shrink: 0;
  align-self: center;
  margin-right: 16px;
  color: var(--gray-mid);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.contact-loc-card:hover .contact-loc-card__arrow-link {
  opacity: 1;
  transform: translateX(3px);
}

/* Simple form styles for contact/fundraising */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  gap: 16px;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ── Announcement Banner ─────────────────────────────────── */
.announcement-bar {
  background: var(--green);
  color: var(--white);
  padding: 9px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announcement-bar__gift { font-size: 1rem; flex-shrink: 0; }
.announcement-bar__msg {
  white-space: nowrap;
  color: var(--white);
  text-decoration: none;
}
.announcement-bar__msg:hover { text-decoration: underline; }
.announcement-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .announcement-bar { font-size: 0.8rem; gap: 0; justify-content: center; padding: 11px 20px; }
  .announcement-bar__actions { display: none; }
  .announcement-bar__msg { white-space: normal; text-align: center; display: block; width: 100%; }
}
.announcement-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.18);
  color: var(--white);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.2s;
  white-space: nowrap;
}
.announcement-bar__btn:hover { background: rgba(0,0,0,0.32); }

/* ── Scroll animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Why GO Wash ─────────────────────────────────────────── */
.why-us { padding: 52px 0; background: var(--gray-dark); }
.why-us .section-label { color: var(--yellow); }
.why-us .section-label::before { background: rgba(255,255,255,0.4); }
.why-us .section-heading { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.65); }

.why-us__header { max-width: 700px; margin: 0 auto 36px; }
.why-us__features {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
}
.why-feature:nth-child(3),
.why-feature:nth-child(4) { border-bottom: none; }
.why-feature:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
.why-feature:hover { background: rgba(255,255,255,0.03); }
.why-feature__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-feature__icon--yellow { background: var(--yellow); color: var(--gray-dark); box-shadow: 0 4px 20px rgba(252,227,0,0.35); }
.why-feature__icon--green  { background: var(--green);  color: var(--gray-dark); box-shadow: 0 4px 20px rgba(151,215,0,0.35); }
.why-feature__icon--blue   { background: var(--blue);   color: var(--white);     box-shadow: 0 4px 20px rgba(0,181,226,0.35); }
.why-feature:hover .why-feature__icon { transform: scale(1.1); }
.why-feature__body h3 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.why-feature__body p  { font-size: 0.875rem; color: rgba(255,255,255,0.62); line-height: 1.5; }

@media (min-width: 768px) {
  .why-us { padding: 60px 0; }
  .why-us__header { margin-bottom: 40px; }
  .why-us__features {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-feature {
    flex-direction: column;
    gap: 16px;
    padding: 36px 28px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .why-feature:nth-child(3) { border-bottom: none; }
  .why-feature:last-child { border-right: none; }
  .why-feature:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { padding: var(--section-pad); background: var(--yellow); }
.testimonials .section-label { color: var(--gray-dark); }
.testimonials .section-label::before { background: var(--blue); }
.testimonials .section-heading { color: var(--gray-dark); }
.testimonials .section-sub { color: var(--gray-dark); opacity: 0.7; }
.testimonials__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--gray-dark);
  font-style: italic;
  flex: 1;
  quotes: none;
  position: relative;
  padding-top: 8px;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  font-style: normal;
  color: var(--blue);
  opacity: 0.15;
  line-height: 0;
  position: absolute;
  top: 24px;
  left: -6px;
}
.testimonial-card cite {
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gray-mid);
  font-style: normal;
}

.testimonial-card--featured blockquote { font-size: 1.12rem; }
.testimonial-card--featured .testimonial-card__stars { font-size: 1.4rem; }

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
  .testimonial-card--featured { grid-row: span 2; }
}
@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .testimonial-card--featured { grid-row: span 1; }
}


@media (max-width: 767px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 76px; }
}

/* ── Responsive helpers ──────────────────────────────────── */
@media (max-width: 767px) {
  :root { --section-pad: 56px 24px; }
  .free-wash-card { padding: 32px 24px; }
  .fundraising-form-card { padding: 32px 24px; }
}


/* ── Hero Bubbles ────────────────────────────────────────── */
@keyframes bubble-float {
  0%   { transform: translateY(0) scale(1);        opacity: 0;    }
  8%   { opacity: 0.65; }
  92%  { opacity: 0.3;  }
  100% { transform: translateY(-110vh) scale(1.15); opacity: 0;   }
}
.hero__bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  animation: bubble-float linear infinite;
}

/* ── Sparkle ─────────────────────────────────────────────── */
@keyframes sparkle-pop {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg);    }
  40%, 60%  { opacity: 1; transform: scale(1) rotate(180deg); }
}
.sparkle {
  position: relative;
  display: inline-block;
}
.sparkle::before,
.sparkle::after {
  content: '✦';
  position: absolute;
  color: rgba(255,255,255,0.9);
  font-size: 0.35em;
  font-weight: 400;
  font-family: var(--font-body);
  font-style: normal;
  line-height: 1;
  animation: sparkle-pop 2.8s ease-in-out infinite;
  pointer-events: none;
}
.sparkle::before {
  top: -0.05em;
  right: -0.45em;
  animation-delay: 0s;
}
.sparkle::after {
  bottom: 0.05em;
  left: -0.55em;
  font-size: 0.25em;
  animation-delay: 1.4s;
}

/* ── Heading Soft Appear ─────────────────────────────────── */
.wipe-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.wipe-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Wave Dividers ──────────────────────────────────────── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin: -1px 0;
  pointer-events: none;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 0;
  transform: scaleY(-1);
  transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wave-divider.is-visible svg {
  height: 110px;
}
@media (max-width: 767px) {
  .wave-divider.is-visible svg { height: 64px; }
}

