/* ============================================================
   CDA Car Wash & Detail Shop
   Inspired by: Mister Car Wash, True Blue, modern local car wash sites
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy:      #0d1f3c;
  --blue:      #1565c0;
  --blue-mid:  #1976d2;
  --blue-lt:   #e3f0fc;
  --gold:      #f59e0b;
  --gold-dk:   #d97706;
  --white:     #ffffff;
  --off-white: #f8fafc;
  --gray-lt:   #e5e9ef;
  --gray:      #6b7280;
  --dark:      #111827;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 8px 32px rgba(0,0,0,.12);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.07);
  --font:      'Outfit', system-ui, sans-serif;
  --max:       1160px;
  --transition: .22s ease;
}

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

/* ── UTILITY ─────────────────────────────────────────────── */
.container   { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }

/* ── SECTION STYLES ──────────────────────────────────────── */
section { padding: 5rem 0; }
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-eyebrow.gold { color: #92400e; background: #fef3c7; }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: .65rem;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary  { background: var(--blue);  color: var(--white); }
.btn-primary:hover { background: #0d47a1; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(21,101,192,.35); }
.btn-gold     { background: var(--gold);  color: var(--navy); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,158,11,.35); }
.btn-white    { background: var(--white); color: var(--navy); }
.btn-white:hover { background: #f0f4f8; }
.btn-outline-white { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-blue { border-color: var(--blue); color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue-lt); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,31,60,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .85rem 0;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  font-size: 1.15rem; font-weight: 800;
  color: var(--white); line-height: 1.2;
  display: flex; flex-direction: column;
}
.nav-logo .logo-sub { font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.75); font-weight: 500; font-size: .9rem; transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: .85rem; }
.nav-phone { color: rgba(255,255,255,.85); font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
.nav-phone:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(21,101,192,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(13,71,161,.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; opacity: .07;
  background-image: repeating-linear-gradient(
    90deg, rgba(255,255,255,1) 0, rgba(255,255,255,1) 1px, transparent 1px, transparent 80px
  );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.18); border: 1px solid rgba(245,158,11,.4);
  color: var(--gold); font-size: 1rem; font-weight: 800;
  padding: .48rem 1.1rem; border-radius: 50px; margin-bottom: 1.5rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 1.1rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.3rem; margin-bottom: 1.6rem; line-height: 1.7; }
.hero-feats {
  display: flex; flex-wrap: wrap; gap: .6rem 1.75rem;
  margin-bottom: 2.25rem;
}
.hero-feat { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.hero-feat::before { content: '✓'; color: var(--gold); font-weight: 800; font-size: 1rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-float {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 2rem; backdrop-filter: blur(4px);
  display: flex; flex-direction: column; gap: .75rem;
  min-width: 220px;
}
.hero-float-title { color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; }
.hero-price-row { display: flex; justify-content: space-between; align-items: center; }
.hero-price-row .wash { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; }
.hero-price-row .price { color: var(--gold); font-weight: 800; font-size: 1.1rem; }
.hero-price-row.featured { background: rgba(255,255,255,.08); border-radius: 8px; padding: .5rem .75rem; margin: .25rem -.75rem; }
.hero-divider { height: 1px; background: rgba(255,255,255,.1); }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip { background: var(--blue); padding: .95rem 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem 3rem; }
.trust-item { color: var(--white); font-size: .875rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.trust-item .ti { font-size: 1.15rem; }

/* ── WASHES ──────────────────────────────────────────────── */
.washes { background: var(--off-white); }
.wash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: .5rem; }
.wash-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 2px solid transparent; transition: var(--transition);
  display: flex; flex-direction: column;
}
.wash-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wash-card.featured { border-color: var(--blue); }
.wash-card-top { padding: 1.75rem 1.75rem 1.5rem; position: relative; }
.wash-card.featured .wash-card-top { background: linear-gradient(135deg, var(--blue-lt), #d6eaf8); }
.featured-pill {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--blue); color: var(--white);
  font-size: .67rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: .25rem .7rem; border-radius: 50px;
}
.wash-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .1rem; }
.wash-tagline { font-size: .82rem; color: var(--gray); }
.wash-price { margin-top: .85rem; display: flex; align-items: baseline; gap: .2rem; }
.wash-price .amt { font-size: 2.6rem; font-weight: 900; color: var(--navy); }
.wash-price .slash { color: var(--gray); font-size: .85rem; margin-left: .1rem; }
.wash-features { padding: 1.5rem 1.75rem; flex: 1; }
.wash-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; padding: .45rem 0;
  border-bottom: 1px solid var(--gray-lt);
  color: var(--dark);
}
.wash-features li:last-child { border-bottom: none; }
.wash-features .chk { color: var(--blue); font-size: 1rem; font-weight: 800; }
.wash-features .dash { color: #ccc; }
.wash-card-foot { padding: 1.25rem 1.75rem 1.75rem; }
.wash-card-foot .btn { width: 100%; }

/* ── MEMBERSHIP ──────────────────────────────────────────── */
.membership {
  background: linear-gradient(160deg, var(--navy) 0%, #153060 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.membership::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,.4) 0%, transparent 70%);
  pointer-events: none;
}
.membership .section-eyebrow { background: rgba(245,158,11,.2); color: var(--gold); }
.membership .section-title { color: var(--white); }
.membership .section-sub   { color: rgba(255,255,255,.65); }
.membership-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin: 2.5rem 0; }
.mem-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  text-align: center; transition: var(--transition);
}
.mem-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.mem-card.featured-mem { background: rgba(21,101,192,.4); border-color: rgba(255,255,255,.3); }
.mem-card-name { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: .25rem; }
.mem-card-price { font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.mem-card-price sub { font-size: .95rem; color: rgba(255,255,255,.5); font-weight: 500; vertical-align: baseline; margin-left: .1rem; }
.mem-card-perks { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.mem-card-perks li { font-size: .87rem; color: rgba(255,255,255,.8); }
.mem-card-perks li::before { content: '✓ '; color: var(--gold); font-weight: 800; }
.membership-note { text-align: center; color: rgba(255,255,255,.5); font-size: .88rem; margin-top: -.5rem; }

/* ── DETAILING ───────────────────────────────────────────── */
.detailing { background: var(--white); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.detail-content .section-sub { max-width: 100%; margin: 0 0 2rem; }
.detail-pkgs { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.detail-pkg {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.35rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-lt); background: var(--off-white);
  transition: var(--transition);
}
.detail-pkg:hover { border-color: var(--blue); background: var(--blue-lt); }
.detail-pkg-left .pkg-name { font-weight: 700; font-size: 1rem; }
.detail-pkg-left .pkg-desc { font-size: .82rem; color: var(--gray); }
.detail-pkg-price { font-size: 1.5rem; font-weight: 900; color: var(--blue); white-space: nowrap; margin-left: 1rem; }
.detail-disclaimer { font-size: .8rem; color: var(--gray); font-style: italic; margin-top: -.5rem; margin-bottom: 1.5rem; }
.detail-visual {
  background: linear-gradient(145deg, #e8f4fc 0%, #d0e8f7 100%);
  border-radius: 20px; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.detail-visual-icon { font-size: 7rem; opacity: .6; }
.detail-visual-stats {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.stat-card {
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  border-radius: var(--radius-sm); padding: .9rem 1rem;
  text-align: center;
}
.stat-num { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.stat-label { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; margin-top: .1rem; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
}
.review-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: .05em; }
.review-text { font-size: .93rem; color: var(--dark); line-height: 1.65; flex: 1; }
.review-author { font-size: .85rem; font-weight: 700; color: var(--navy); }
.review-source { font-size: .78rem; color: var(--gray); }
.reviews-cta { margin-top: 2.5rem; }

/* ── LOCATION / HOURS ────────────────────────────────────── */
.location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }
.hours-card { background: var(--off-white); border-radius: var(--radius); padding: 2rem; }
.hours-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.25rem; }
.season-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .5rem; margin-top: 1rem; display: block;
}
.season-label:first-child { margin-top: 0; }
.hours-rows { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .5rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: .92rem; }
.hours-row .days { color: var(--dark); font-weight: 500; }
.hours-row .time { font-weight: 700; color: var(--navy); }
.hours-divider { height: 1px; background: var(--gray-lt); margin: 1rem 0; }
.hours-note { font-size: .8rem; color: var(--gray); font-style: italic; }
.contact-block { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.contact-row { display: flex; align-items: center; gap: .75rem; font-size: .93rem; }
.contact-row .ci { font-size: 1.1rem; }
.contact-row a { color: var(--blue); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }
.dir-btn { margin-top: 1.25rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 3.5rem 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 2.25fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand-name { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: .3rem; }
.footer-brand-name span { color: var(--gold); }
.footer-brand-tag { font-size: .85rem; line-height: 1.7; margin-bottom: 1.1rem; }
.footer-col-title { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: .9rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: .8rem; flex-wrap: wrap; gap: .75rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── MOBILE STICKY BAR ───────────────────────────────────── */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--white); box-shadow: 0 -2px 20px rgba(0,0,0,.15); border-top: 1px solid var(--gray-lt); }
.sticky-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; }
.sticky-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .18rem;
  padding: .9rem .5rem; font-family: var(--font);
  font-size: .68rem; font-weight: 700; color: var(--dark);
  background: none; border: none; cursor: pointer;
  text-decoration: none; transition: background var(--transition);
  border-right: 1px solid var(--gray-lt);
}
.sticky-btn:last-child { border-right: none; }
.sticky-btn:hover { background: var(--blue-lt); color: var(--blue); }
.sticky-btn.cta-detail { background: var(--blue); color: var(--white); }
.sticky-btn.cta-detail:hover { background: #0d47a1; }
.sticky-btn .sicon { font-size: 1.3rem; }

/* ── FORM PAGE ───────────────────────────────────────────── */
.form-hero { background: var(--navy); padding: 3rem 0; color: var(--white); }
.form-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--white); }
.form-hero p  { color: rgba(255,255,255,.65); font-size: 1rem; margin-top: .5rem; }
.form-section { background: var(--off-white); padding: 3.5rem 0 5rem; }
.form-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.25rem; }
.form-section-title { font-size: 1rem; font-weight: 800; color: var(--navy); padding-bottom: .75rem; border-bottom: 2px solid var(--blue-lt); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .83rem; font-weight: 700; color: var(--dark); margin-bottom: .38rem; }
label .req { color: #dc2626; }
input[type="checkbox"], input[type="radio"] {
  -webkit-appearance: auto; appearance: auto;
  width: auto; height: auto; padding: 0;
  border: none; border-radius: 0; background: none;
  box-shadow: none; accent-color: var(--blue);
}
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  width: 100%; padding: .78rem 1rem;
  font-family: var(--font); font-size: .95rem;
  color: var(--dark); background: var(--white);
  border: 1.5px solid #d1d5db; border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,.12); }
textarea { min-height: 100px; resize: vertical; }
.radio-set, .check-set { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .3rem; }
.radio-opt, .check-opt {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem; cursor: pointer;
  padding: .6rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--gray-lt); background: var(--off-white);
  transition: var(--transition); user-select: none;
}
.radio-opt:hover, .check-opt:hover { border-color: var(--blue); background: var(--blue-lt); }
.radio-opt input { display: none; }
.check-opt { position: relative; }
.check-opt input { position: absolute; left: -9999px; opacity: 0; pointer-events: auto; }
.radio-opt.selected, .check-opt.selected { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); font-weight: 600; }
/* Native selected styling without JS (modern browsers) */
.radio-opt:has(input:checked), .check-opt:has(input:checked) { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); font-weight: 600; }
.form-divider { border: none; border-top: 1px solid var(--gray-lt); margin: 1.5rem 0; }
.consent-wrap { display: flex; align-items: flex-start; gap: .75rem; }
.consent-wrap input[type="checkbox"] { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: .15rem; accent-color: var(--blue); }
.consent-wrap label { font-size: .82rem; color: var(--gray); font-weight: 400; cursor: pointer; }
.submit-btn { width: 100%; padding: 1.1rem; font-size: 1rem; margin-top: .75rem; border: none; border-radius: var(--radius-sm); }
.form-fine { font-size: .78rem; color: var(--gray); text-align: center; margin-top: .75rem; }
.pkg-summary { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--gray-lt); }
.pkg-summary h3 { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.pkg-sum-row { display: flex; justify-content: space-between; font-size: .9rem; padding: .6rem 0; border-bottom: 1px solid var(--gray-lt); }
.pkg-sum-row:last-child { border-bottom: none; font-weight: 700; color: var(--navy); }
.pkg-sum-row .ps-price { font-weight: 700; color: var(--blue); }
.pkg-note { font-size: .78rem; color: var(--gray); font-style: italic; margin-top: .75rem; }
.contact-sidebar { background: var(--navy); color: rgba(255,255,255,.75); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.25rem; }
.contact-sidebar h3 { color: var(--white); font-size: .9rem; font-weight: 800; margin-bottom: 1rem; }
.contact-sidebar .cr { display: flex; align-items: center; gap: .6rem; font-size: .88rem; margin-bottom: .65rem; }
.contact-sidebar .cr a { color: var(--gold); }

/* ── SUCCESS STATE ───────────────────────────────────────── */
.success-msg { display: none; text-align: center; padding: 2.5rem 2rem; }
.success-msg .check-big { font-size: 3.5rem; margin-bottom: 1rem; }
.success-msg h2 { color: var(--navy); margin-bottom: .5rem; }
.success-msg p  { color: var(--gray); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-float   { display: none; }
  .detail-grid  { grid-template-columns: 1fr; }
  .detail-visual{ min-height: 240px; }
  .location-grid{ grid-template-columns: 1fr; }
  .form-layout  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .nav-links    { display: none; }
}
@media (max-width: 720px) {
  .wash-cards        { grid-template-columns: 1fr; }
  .membership-cards  { grid-template-columns: 1fr; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section  { padding: 3.25rem 0; }
  .hero    { min-height: auto; padding: 3.5rem 0 4rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .sticky-bar { display: block; }
  body { padding-bottom: 68px; }
}
@media (min-width: 641px) {
  .sticky-bar { display: none !important; }
}
