/* =========================================
   PRO SHINE EXPRESS CAR WASH
   Brand Colors:
     Primary Blue:  #215897
     Dark:          #111921
     Light Blue:    #0FA9E1
     Gray:          #6E767F
   ========================================= */

:root {
  --blue:       #215897;
  --dark:       #111921;
  --dark2:      #0d1520;
  --light-blue: #0FA9E1;
  --gray:       #6E767F;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --text:       #1a1a2e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--dark2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ---- SECTION BACKGROUNDS ---- */
.section-dark  { background: var(--dark); }
.section-dark2 { background: var(--dark2); }
.section-blue  { background: var(--blue); }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}

.text-accent { color: var(--light-blue); }

.section-intro { margin-bottom: 52px; }

.section-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-top: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  min-height: 44px;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, background 0.2s, box-shadow 0.2s;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-primary { background: var(--light-blue); color: var(--white); box-shadow: 0 4px 20px rgba(15,169,225,0.35); }
.btn-primary:hover { box-shadow: 0 6px 28px rgba(15,169,225,0.5); }

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

.btn-ghost  { background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(15,169,225,0.15); border-color: var(--light-blue); color: var(--light-blue); }

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

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  background: transparent;
}

.nav.scrolled {
  background: rgba(13,21,32,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav-logo img { height: 88px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--light-blue); }

.nav-cta {
  background: var(--light-blue) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
}
.nav-cta:hover { opacity: 0.88; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#bubbleCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0a1520 0%, #1a3a6b 50%, #0d5c9e 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,18,28,0.92) 0%,
    rgba(10,18,28,0.80) 42%,
    rgba(10,18,28,0.35) 65%,
    rgba(10,18,28,0.10) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-text-col {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge i { color: #FFD700; font-size: 0.7rem; }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3.2rem, 8vw, 6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-accent { color: var(--light-blue); }

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 18px 24px;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  flex: 1;
  min-width: 140px;
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { padding-right: 0; }

.trust-icon {
  color: var(--light-blue);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-item div { display: flex; flex-direction: column; }

.trust-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
}

.trust-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero-chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-chevron a {
  color: rgba(255,255,255,0.5);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.hero-chevron a:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Hero shine sweep ---- */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,0.03) 44%,
    rgba(15,169,225,0.07) 50%,
    rgba(255,255,255,0.03) 56%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
  animation: heroSweep 8s ease-in-out infinite;
}

@keyframes heroSweep {
  0%        { left: -60%; opacity: 0; }
  4%        { opacity: 1; }
  44%, 100% { left: 140%; opacity: 0; }
}

/* ---- Steps sparkles ---- */
.steps-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0;
}

/* Vertical arm */
.sparkle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: 2px;
}

/* Horizontal arm */
.sparkle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.95), transparent);
  border-radius: 2px;
}

@keyframes sparklePop {
  0%   { opacity: 0; transform: scale(0.3) rotate(0deg); }
  40%  { opacity: 1; transform: scale(1.1) rotate(20deg); }
  70%  { opacity: 0.6; transform: scale(0.9) rotate(45deg); }
  100% { opacity: 0; transform: scale(0.3) rotate(45deg); }
}

/* Scattered across the 3-step cards area */
.sparkle.s1 { top: 18%; left: 12%;  width: 20px; height: 20px; animation: sparklePop 3.2s ease-in-out 0s    infinite; }
.sparkle.s2 { top: 70%; left: 30%;  width: 14px; height: 14px; animation: sparklePop 3.2s ease-in-out 1.1s  infinite; }
.sparkle.s3 { top: 25%; left: 52%;  width: 18px; height: 18px; animation: sparklePop 3.2s ease-in-out 0.5s  infinite; }
.sparkle.s4 { top: 72%; left: 66%;  width: 12px; height: 12px; animation: sparklePop 3.2s ease-in-out 1.8s  infinite; }
.sparkle.s5 { top: 15%; left: 82%;  width: 22px; height: 22px; animation: sparklePop 3.2s ease-in-out 0.3s  infinite; }
.sparkle.s6 { top: 68%; left: 90%;  width: 10px; height: 10px; animation: sparklePop 3.2s ease-in-out 2.2s  infinite; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 96px 0; position: relative; overflow: hidden; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 24px;
  align-items: center;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  font-size: 1.4rem;
  opacity: 0.6;
  flex-shrink: 0;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  position: relative;
  z-index: 1;
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(15,169,225,0.15);
  position: absolute;
  top: 12px;
  right: 18px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0d1a28;
  border: 2px solid rgba(15,169,225,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--light-blue);
  margin: 0 auto 20px;
  transition: background 0.25s, border-color 0.25s;
}

.step-card:hover .step-icon {
  background: rgba(15,169,225,0.2);
  border-color: var(--light-blue);
}

.step-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.step-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ============================================================
   DIFFERENCE / COMPARISON
   ============================================================ */
.difference-section { padding: 96px 0; position: relative; overflow: hidden; }

.diff-puddle {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 780px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: luminosity;
}

.difference-section .container { position: relative; z-index: 1; }

.vs-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 48px;
  align-items: stretch;
}

.vs-panel {
  border-radius: 14px;
  padding: 36px 32px;
}

.vs-proshine {
  background: rgba(8,22,40,0.82);
  border: 2px solid rgba(15,169,225,0.6);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(15,169,225,0.2);
  backdrop-filter: blur(8px);
}

.vs-other {
  background: rgba(8,16,28,0.75);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.vs-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vs-logo { height: 40px; width: auto; }

.vs-other-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.vs-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-blue);
  background: rgba(15,169,225,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.vs-tag-muted {
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}

.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vs-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.vs-list li i {
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--light-blue);
}

.vs-list li em {
  font-style: normal;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  text-transform: none;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
}

.vs-list-other li {
  color: rgba(255,255,255,0.65);
}

.vs-list-other li i {
  color: rgba(255,90,90,0.9);
}

.vs-list-other li i.fa-minus {
  color: rgba(255,255,255,0.45);
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.vs-divider span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

@media (max-width: 720px) {
  .vs-wrap { grid-template-columns: 1fr; }
  .vs-divider { padding: 16px 0; }
  .vs-divider span { font-size: 1rem; }
  .vs-panel-header { flex-wrap: wrap; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 112px 0;
  position: relative;
  background:
    radial-gradient(ellipse 90% 50% at 50% 10%, rgba(15,169,225,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(33,88,151,0.2) 0%, transparent 60%),
    var(--dark2);
}

.pricing-header { margin-bottom: 56px; }

.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

/* Per-card gradient backgrounds */
.card-shine    { background: linear-gradient(160deg, #1a3a6e 0%, #0d1e3a 100%); }
.card-pro      { background: linear-gradient(160deg, #0c7fc4 0%, #1a4d8f 100%); }
.card-express  { background: linear-gradient(160deg, #0a6899 0%, #053a58 100%); }
.card-ultimate { background: linear-gradient(160deg, #1c2f60 0%, #09111f 100%); }

.price-card {
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.6);
}

.price-card.featured {
  border-color: rgba(255,255,255,0.3);
  border-width: 2px;
  box-shadow: 0 0 0 1px rgba(15,169,225,0.3), 0 14px 60px rgba(15,169,225,0.3), 0 4px 24px rgba(0,0,0,0.5);
  transform: scale(1.05);
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 0 0 1px rgba(15,169,225,0.45), 0 28px 80px rgba(15,169,225,0.4), 0 8px 30px rgba(0,0,0,0.5);
}

/* Corner ribbon */
.price-ribbon {
  position: absolute;
  top: 22px;
  right: -34px;
  transform: rotate(45deg);
  width: 130px;
  background: #f59e0b;
  color: #111921;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 0;
  z-index: 5;
}

/* Tier name */
.price-tier-wrap {
  padding: 28px 22px 16px;
}

.price-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.0;
}

.price-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

/* Price block */
.price-block {
  padding: 4px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Single wash pill — dark */
.price-single-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 13px 16px;
}

.pc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.pc-price-group {
  display: flex;
  align-items: flex-start;
  gap: 1px;
}

.pc-dollar {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}

.pc-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  color: var(--white);
  line-height: 1;
}

/* Unlimited club pill — white */
.price-club-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 13px 16px;
}

.pc-label-club {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  line-height: 1.3;
}

.pc-price-group-club {
  display: flex;
  align-items: flex-start;
  gap: 1px;
}

.pc-dollar-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #111921;
  line-height: 1;
}

.pc-amount-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  color: #111921;
  line-height: 1;
}

.pc-cents {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111921;
}

.pc-per-sm {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-end;
  margin-bottom: 3px;
  margin-left: 2px;
}

/* Feature list */
.price-features {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

.price-features li.inherited { color: rgba(255,255,255,0.5); }

/* Colored icon badges */
.feat-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.76rem;
  color: white;
}

.feat-blue   { background: #1565c0; }
.feat-cyan   { background: #0288d1; }
.feat-teal   { background: #00838f; }
.feat-purple { background: #7b2fff; }
.feat-orange { background: #e65100; }
.feat-amber  { background: #f57c00; }
.feat-green  { background: #2e7d32; }
.feat-red    { background: #c62828; }
.feat-gold   { background: #9e7a0f; }
.feat-dim    { background: rgba(255,255,255,0.14); }

/* CTA button on colored cards */
.btn-card {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  min-height: 44px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-card:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
}

.price-cta {
  display: block;
  width: calc(100% - 32px);
  margin: 20px 16px 22px;
  text-align: center;
}

/* Wash Club push strip */
.wash-club-push {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(33,88,151,0.45) 0%, rgba(15,169,225,0.15) 100%);
  border: 1px solid rgba(15,169,225,0.3);
  border-radius: 16px;
  flex-wrap: wrap;
}

.wcp-icon {
  font-size: 2.2rem;
  color: var(--light-blue);
  flex-shrink: 0;
}

.wcp-content {
  flex: 1;
  min-width: 220px;
}

.wcp-content strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.wcp-content span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
}

.wcp-cta { flex-shrink: 0; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 96px 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(15,169,225,0.12);
  font-family: Georgia, serif;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars i { color: #FFD700; font-size: 0.85rem; }

.review-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-author span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.reviews-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 40px auto 0;
  padding: 14px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  width: fit-content;
}

.reviews-cta i {
  font-size: 1.1rem;
  color: #4285F4;
  flex-shrink: 0;
}

.reviews-cta a {
  color: var(--light-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.reviews-cta a:hover { color: #fff; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-section { padding: 96px 0; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background 0.25s, transform 0.2s;
}

.amenity-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(15,169,225,0.12);
  border: 1px solid rgba(15,169,225,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--light-blue);
  flex-shrink: 0;
  transition: background 0.25s;
}

.amenity-item:hover .amenity-icon { background: rgba(15,169,225,0.2); }

.amenity-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 2px;
}

.amenity-item span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   FREE WASH CTA BAND
   ============================================================ */
.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #080f18 0%, #0e2448 40%, #1a4a8a 70%, #0d6aae 100%);
  z-index: 0;
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.018) 60px,
    rgba(255,255,255,0.018) 61px
  );
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(15,169,225,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 50%, rgba(33,88,151,0.4) 0%, transparent 50%);
}

/* Sweep animation — same as hero */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(255,255,255,0.025) 44%,
    rgba(15,169,225,0.06) 50%,
    rgba(255,255,255,0.025) 56%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
  animation: heroSweep 10s ease-in-out 2s infinite;
}

.cta-ghost-icon {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  color: rgba(15,169,225,0.04);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 12px;
}

.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.cta-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.82);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.cta-trust-pills span i {
  color: var(--light-blue);
  font-size: 0.75rem;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cta-btn-main {
  font-size: 1.15rem !important;
  padding: 18px 40px !important;
  box-shadow: 0 0 40px rgba(15,169,225,0.45), 0 8px 24px rgba(0,0,0,0.3) !important;
  white-space: nowrap;
}

.cta-btn-main:hover {
  box-shadow: 0 0 60px rgba(15,169,225,0.6), 0 12px 32px rgba(0,0,0,0.4) !important;
}

.cta-action-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  text-align: center;
  font-style: italic;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 96px 0; }

.faq-wrap { max-width: 760px; }

.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open { border-color: rgba(15,169,225,0.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--light-blue); }
.faq-item.open .faq-q { color: var(--light-blue); }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--light-blue);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 24px 20px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ============================================================
   FIND US
   ============================================================ */
.find-us { padding: 96px 0; }

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 48px;
}

.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
}

.location-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.location-detail .icon {
  color: var(--light-blue);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.location-detail strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-blue);
  display: block;
  margin-bottom: 4px;
}

.location-detail span,
.location-detail p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

/* ============================================================
   WASH CLUB
   ============================================================ */
.club-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #07090e;
}

/* Silver-tinted background bands */
.club-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(140,165,200,0.07) 40%,
      rgba(200,220,245,0.11) 50%,
      rgba(140,165,200,0.07) 60%,
      rgba(0,0,0,0) 100%
    ),
    radial-gradient(ellipse at 50% 50%, rgba(33,88,151,0.25) 0%, transparent 70%);
  z-index: 0;
}

/* Diagonal ruled lines — brushed metal texture */
.club-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 48px,
    rgba(180,200,230,0.022) 48px,
    rgba(180,200,230,0.022) 49px
  );
}

/* Slow silver sweep */
.club-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    108deg,
    transparent 25%,
    rgba(200,220,248,0.03) 42%,
    rgba(220,235,255,0.09) 50%,
    rgba(200,220,248,0.03) 58%,
    transparent 75%
  );
  z-index: 1;
  pointer-events: none;
  animation: heroSweep 12s ease-in-out 3s infinite;
}

.club-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.club-content {
  max-width: 720px;
  margin: 0 auto;
}

.club-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8d8ea;
  margin-bottom: 20px;
  opacity: 0.8;
}

.club-eyebrow i { color: #d4af5a; }

/* Metallic silver gradient headline */
.club-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    #7a9ab8 0%,
    #b8cfe0 22%,
    #e8f2fa 45%,
    #ffffff 50%,
    #e8f2fa 55%,
    #b8cfe0 78%,
    #7a9ab8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.club-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

.club-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.club-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(180,200,230,0.07);
  border: 1px solid rgba(180,210,240,0.18);
  color: rgba(255,255,255,0.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
}

.club-pills span i { color: #a8c8e8; font-size: 0.8rem; }

.club-cta-btn {
  background: linear-gradient(135deg, #c0d0e4 0%, #e8f0fa 50%, #c0d0e4 100%) !important;
  color: #0a1420 !important;
  border: none !important;
  font-size: 1.05rem !important;
  padding: 16px 44px !important;
  box-shadow: 0 4px 32px rgba(160,190,230,0.25), 0 2px 8px rgba(0,0,0,0.4) !important;
  transition: box-shadow 0.25s, transform 0.2s !important;
}

.club-cta-btn:hover {
  box-shadow: 0 8px 48px rgba(160,190,230,0.4), 0 4px 16px rgba(0,0,0,0.5) !important;
  transform: translateY(-3px) !important;
}

.club-cta-btn i { color: #d4af5a; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #070c12; padding: 64px 0 28px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-logo-img { height: 76px; width: auto; margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.9rem; }
.footer-bottom a { color: var(--light-blue); }

/* ============================================================
   PLACEHOLDER IMAGE
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, #1a3a6b 0%, #0d7db5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 260px;
}

/* ============================================================
   FORMS (shared across pages)
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.form-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid #dde3ed;
  border-radius: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem; /* minimum 16px to prevent iOS auto-zoom */
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }

.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   SUB-PAGE HERO (free wash, fundraiser, etc.)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--dark) 0%, #1a3a6b 60%, #0d5c9e 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(15,169,225,0.2) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.page-hero p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid-new { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,16,24,0.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open a { padding: 12px 0; min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
  .nav-links.open .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; background: rgba(10,16,24,0.95) !important; }

  .pricing-grid-new { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
  .find-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust { flex-direction: column; gap: 14px; }
  .trust-divider { display: none; }
  .trust-item { padding: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-trust-pills { justify-content: center; }
  .cta-action { width: 100%; }
  .cta-btn-main { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

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

/* ---- Nav logo sizing on mobile ---- */
@media (max-width: 768px) {
  .nav-logo img { height: 60px; }
  .nav-inner { height: 70px; }
}

/* ---- Hero content padding clears fixed nav (70px) on mobile ---- */
@media (max-width: 768px) {
  .hero-content { padding-top: 90px; padding-bottom: 60px; }
}

/* ---- Page-hero sub-pages clear fixed nav on mobile ---- */
@media (max-width: 768px) {
  .page-hero { padding-top: 110px; }
}

/* ---- Button full-width stack and tap targets on small screens ---- */
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}

/* ---- Prevent horizontal overflow ---- */
@media (max-width: 768px) {
  .hero { overflow-x: hidden; }
  .difference-section { overflow-x: hidden; }
  .cta-ghost-icon { display: none; }
}

/* ---- Amenities grid: 2 cols at 480px ---- */
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
}

/* ---- Reviews grid already 1 col at 768px; ensure font doesn't shrink ---- */
@media (max-width: 480px) {
  .review-text { font-size: 1rem; }
}

/* ---- Wash-club push strip stacks on mobile ---- */
@media (max-width: 480px) {
  .wash-club-push { flex-direction: column; text-align: center; padding: 24px 20px; }
  .wcp-cta { width: 100%; }
  .wcp-cta .btn { width: 100%; justify-content: center; }
}

/* ---- FAQ tap target size ---- */
.faq-q { min-height: 44px; }

/* ---- Footer bottom wraps cleanly ---- */
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding: 48px 0 24px; }
}

/* ---- CTA section: full-width button on mobile ---- */
@media (max-width: 480px) {
  .cta-section { padding: 72px 0; }
}

/* ---- Trust strip: ensure items don't overflow ---- */
@media (max-width: 480px) {
  .trust-item { min-width: 0; }
}

/* ---- Prevent any overflow on very small screens ---- */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(1.7rem, 8vw, 3rem); }
}

/* ---- Accessibility widget: prevent panel overflow on small screens ---- */
@media (max-width: 380px) {
  #ps-a11y-panel { max-width: calc(100vw - 48px); left: 24px; }
}
