/* =========================================
   THE WASH BARN CARWASH — style.css
   Brand: #fdfdfd | #950215 | #1f438b | #f5c800
   Vibe: BIG TEXAS OBNOXIOUS BARN FUN
========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:  #fdfdfd;
  --red:    #950215;
  --navy:   #1f438b;
  --yellow: #f5c800;
  --green:  #3a6b28;
  --dark:   #111111;
  --cream:  #fff8e7;
  --light-blue: #e8eef8;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--white);
  box-shadow: 4px 4px 0 var(--dark);
}
.btn-primary:hover { box-shadow: 6px 6px 0 var(--dark); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
}
.btn-secondary:hover { box-shadow: 6px 6px 0 var(--dark); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
}
.btn-navy:hover { box-shadow: 6px 6px 0 var(--dark); }

.btn-free-wash {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  font-size: 1.15rem;
  padding: 16px 36px;
}
.btn-free-wash:hover { box-shadow: 6px 6px 0 var(--dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-wash {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  width: 100%;
  margin-top: 12px;
  font-size: 0.95rem;
  padding: 11px 20px;
}
.btn-wash--red { background: var(--red); border-color: var(--red); }
.btn-wash--green { background: var(--green); border-color: var(--green); }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }

/* =========================================
   TOP BAR
========================================= */
.topbar {
  background: #ffffff;
  color: var(--dark);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;font-weight:700;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.topbar a { color: var(--navy); }
.topbar a:hover { color: var(--red); }
.topbar-sep { color: var(--red); margin: 0 4px; }

/* =========================================
   NAVBAR
========================================= */
.navbar {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 16px rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links li a {
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.95rem;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-links li a:hover { background: rgba(0,0,0,0.06); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid var(--dark) !important;
  box-shadow: 3px 3px 0 var(--dark);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--dark);
  color: var(--dark);
  font-size: 1.4rem;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================================
   HERO
========================================= */
.hero {
  background: var(--navy);
  background-image:
    linear-gradient(to right, rgba(31,67,139,0.88) 0%, rgba(31,67,139,0.6) 40%, rgba(31,67,139,0.25) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 100px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.star {
  color: var(--yellow);
  font-size: 1.4rem;
  animation: twinkle 2s infinite alternate;
}
.star:nth-child(2) { animation-delay: 0.3s; }
.star:nth-child(3) { animation-delay: 0.6s; }
.star:nth-child(4) { animation-delay: 0.9s; }
.star:nth-child(5) { animation-delay: 1.2s; }

@keyframes twinkle {
  from { opacity: 0.4; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 24px;
}
.hero-title-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white);
  text-shadow: 5px 5px 0 var(--red), 8px 8px 0 rgba(0,0,0,0.3);
  margin: 4px 0;
}
.hero-title-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white);
  text-shadow: 5px 5px 0 var(--red), 8px 8px 0 rgba(0,0,0,0.3);
  margin: 4px 0;
}
.hero-title-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white);
  text-shadow: 5px 5px 0 var(--red), 8px 8px 0 rgba(0,0,0,0.3);
  margin: 4px 0;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub strong { color: var(--yellow); }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.hero-mascot {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: clamp(200px, 26vw, 380px);
  z-index: 2;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}
.hero-highland {
  width: 100%;
  filter: drop-shadow(-10px 10px 30px rgba(0,0,0,0.5));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}


/* =========================================
   MARQUEE STRIP
========================================= */
.marquee-strip {
  background: #ffffff;
  overflow: hidden;
  padding: 14px 0;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 0 36px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   SECTION LABELS & TITLES
========================================= */
.section-label {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.section-label.dark { color: var(--red); }
.section-label.light { color: var(--yellow); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.dark { color: var(--dark); font-size: clamp(2rem, 4vw, 3rem); }
.section-title.light { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }

/* =========================================
   PROBLEM / SOLUTION
========================================= */
.problem-solution {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}
.problem-solution::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--red) 0 30px, #ffffff 30px 60px, var(--navy) 60px 90px);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ps-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}
.ps-divider {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 1.2rem;
  color: var(--navy);
  border-left: 5px solid var(--white);
  padding-left: 16px;
  margin: 24px 0;
}
.stat-box {
  background: #950215;
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  border: 3px solid var(--white);
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--white);
  white-space: nowrap;
}
.stat-label { font-size: 0.95rem; line-height: 1.5; }

.ps-images {
  position: relative;
  height: 520px;
}
.ps-img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}
.ps-img-top {
  width: 75%;
  height: 320px;
  position: absolute;
  top: 0;
  right: 0;
}
.ps-img-bottom {
  width: 65%;
  height: 260px;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 4px solid var(--white);
}

/* =========================================
   WASH PACKAGES
========================================= */
.washes {
  background-color: #0F45A8;
  background-image: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)), url('images/wash-menu-bg.png');
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover;
  padding: 100px 0 80px;
  position: relative;
}

.wash-menu-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.wash-menu-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wash-menu-cow {
  width: 100%;
  display: block;
  border-radius: 16px;
}
@media (max-width: 800px) {
  .wash-menu-2col { grid-template-columns: 1fr; }
}
.washes-header {
  text-align: center;
  padding: 0 20px 50px;
}
.washes-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.wash-category-label {
  text-align: center;
  margin-bottom: 24px;
}
.wash-category-label span {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 8px 28px;
  border-radius: 50px;
  border: 3px solid var(--yellow);
}
.wash-category-label--touchfree { margin-top: 50px; }
.wash-category-label--touchfree span { background: var(--dark); }
.wash-category-label--center { text-align: center; }

.wash-menu-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.wash-menu-single {
  max-width: 540px;
  margin: 0 auto 24px;
}
@media (max-width: 820px) {
  .wash-menu-pair { grid-template-columns: 1fr; }
}

.wash-menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto 16px;
}
.wash-menu-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 120px;
}
.wash-menu-side-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
}
.wash-grid--column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.wash-grid--column .wash-card {
  width: 100%;
  max-width: none;
}
@media (max-width: 980px) {
  .wash-menu-split { grid-template-columns: 1fr; }
  .wash-menu-side { padding-top: 0; }
}
.wash-menu-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wash-menu-bottom-cow {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
}
.wash-menu-bottom-cow img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
}
.wash-menu-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wash-menu-link:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.wash-menu-img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.wash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.wash-grid--centered {
  grid-template-columns: repeat(1, 420px);
  justify-content: center;
}

.wash-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  border: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.wash-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  border-color: var(--yellow);
}
.wash-card--best {
  border-color: var(--yellow);
  transform: scale(1.04);
}
.wash-card--best:hover { transform: scale(1.04) translateY(-8px); }
.wash-card--touchfree { border-color: var(--navy); }

.best-deal-badge {
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px;
  border-bottom: 3px solid var(--dark);
}
.touchfree-badge {
  background: var(--dark);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 6px;
}

.wash-card-mascot {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2460 100%);
  padding: 24px;
  display: flex;
  justify-content: center;
  min-height: 160px;
  align-items: center;
}
.wash-card-mascot img {
  height: 120px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s;
}
.wash-card:hover .wash-card-mascot img { transform: scale(1.1) rotate(-3deg); }

.wash-card-body {
  padding: 20px 24px 24px;
}
.wash-name {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.wash-tier {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--navy);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.wash-tier--deluxe { background: var(--red); }
.wash-tier--ultimate { background: var(--green); }

.wash-price {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 14px;
}
.wash-price::before { content: ''; }

.wash-features {
  margin-bottom: 16px;
}
.wash-features li {
  font-size: 0.92rem;
  color: #444;
  padding: 4px 0;
  border-bottom: 1px dashed #eee;
}
.wash-features li:last-child { border-bottom: none; }
.wash-feature-highlight {
  font-weight: 900;
  color: var(--navy) !important;
}

.wash-unlimited img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 8px;
  border-radius: 10px;
}

/* =========================================
   BROCHURE
========================================= */
.washes-mascot-wrap {
  text-align: center;
  padding: 60px 20px 0;
}
.washes-mascot-img {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.25));
}

/* =========================================
   MEMBERSHIP
========================================= */
.membership {
  background: var(--red);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(245,200,0,0.15), transparent 50%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.membership::before{content:'★';position:absolute;right:-30px;top:-40px;font-size:24rem;color:rgba(255,255,255,.05);font-family:'Bebas Neue',sans-serif;pointer-events:none;line-height:1;z-index:1}
.membership::after{content:'★';position:absolute;left:-40px;bottom:-60px;font-size:22rem;color:rgba(255,255,255,.04);font-family:'Bebas Neue',sans-serif;pointer-events:none;line-height:1;z-index:1}
.membership > .container{position:relative;z-index:2}

.membership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.membership-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.membership-perks {
  margin-bottom: 28px;
}
.membership-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 0;
}
.membership-perks--row {
  list-style: none;
  padding: 0;
  margin: 40px 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.membership-perks--row li {
  justify-content: center;
  text-align: center;
  padding: 0;
}
.membership-ctas--full {
  display: flex;
  justify-content: center;
}
@media (max-width: 820px) {
  .membership-perks--row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.perk-icon { font-size: 1.4rem; }

.membership-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.plan-pill {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.plan-pill--green { background: var(--green); }
.plan-pill--red { background: rgba(0,0,0,0.3); }
.plan-pill--blue { background: var(--navy); }

.membership-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.membership-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.membership-photo {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.membership-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  border: 4px solid var(--white);
}
.membership-mascot-float {
  position: absolute;
  bottom: -140px;
  right: -40px;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.55));
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 640px) {
  .membership-mascot-float {
    width: 150px;
    bottom: -24px;
    right: -16px;
  }
}

/* =========================================
   AMENITIES
========================================= */
.amenities {
  background: #ffffff;
  padding: 100px 0;
  text-align: center;
}
.amenities-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.amenity-card:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
}
.amenity-icon { font-size: 2.6rem; margin-bottom: 14px; }
.amenity-card h3 {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.amenity-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* =========================================
   GALLERY
========================================= */
.gallery {
  background: var(--dark);
  padding: 60px 0;
  overflow: hidden;
}
.gallery-label {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.gallery-track {
  display: flex;
  gap: 16px;
  animation: galleryScroll 35s linear infinite;
  width: max-content;
}
.gallery-track img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.gallery-track img:hover { border-color: var(--yellow); }

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   SOCIAL PROOF
========================================= */
.social-proof {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 3px solid var(--light-blue);
  text-align: left;
}
.stars { color: var(--yellow); font-size: 1.3rem; margin-bottom: 12px; letter-spacing: 3px; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  color: var(--navy);
  font-size: 0.9rem;
}

/* =========================================
   URGENCY
========================================= */
.urgency {
  background: var(--navy);
  padding: 80px 0;
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
.urgency-mascot img {
  width: 180px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
  flex-shrink: 0;
  animation: float 3.5s ease-in-out infinite;
}
.urgency-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--yellow);
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 var(--dark);
}
.urgency-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.urgency-text { display: flex; flex-direction: column; gap: 0; }
.urgency-text .btn { margin-right: 14px; margin-bottom: 10px; }

/* =========================================
   FUNDRAISER
========================================= */
.fundraiser {
  background: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)), url('images/fundraiser-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
}
.fundraiser-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}
.fundraiser-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fundraiser-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.fundraiser-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: 4px solid var(--yellow);
}

.fundraiser-form {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 44px;
  box-shadow: var(--shadow);
  border: 4px solid var(--navy);
}
.fundraiser-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.fundraiser-form > p {
  color: #555;
  margin-bottom: 28px;
  font-size: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  outline: none;
  background: var(--white);
}

/* =========================================
   FINAL CTA
========================================= */
.final-cta {
  background: var(--red);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(245,200,0,0.15), transparent 50%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.final-cta::before{content:'★';position:absolute;right:-30px;top:-40px;font-size:24rem;color:rgba(255,255,255,.05);font-family:'Bebas Neue',sans-serif;pointer-events:none;line-height:1;z-index:1}
.final-cta::after{content:'★';position:absolute;left:-40px;bottom:-60px;font-size:22rem;color:rgba(255,255,255,.04);font-family:'Bebas Neue',sans-serif;pointer-events:none;line-height:1;z-index:1}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(149,2,21,0.25), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(245,200,0,0.1), transparent 50%);
  pointer-events: none;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.final-cow {
  width: 180px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  animation: float 4.5s ease-in-out infinite;
}
.final-chicken {
  width: 150px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
  animation: float 3.8s ease-in-out infinite;
  animation-delay: 1s;
}
.final-cta-text {
  text-align: left;
  max-width: 600px;
}
.final-cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 var(--dark);
}
.final-cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.final-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: #ffffff;
  padding: 70px 0 0;
  border-top: 2px solid rgba(0,0,0,0.1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.footer-logo img {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
}
.footer-logo p {
  color: rgba(0,0,0,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-info h4,
.footer-links h4,
.footer-social h4 {
  font-family: 'Montserrat', sans-serif;font-weight:700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-info p {
  color: rgba(0,0,0,0.6);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-info a, .footer-links a {
  color: rgba(0,0,0,0.6);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-info a:hover, .footer-links a:hover { color: var(--red); }
.footer-links ul li { margin-bottom: 8px; }
.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark);
  padding: 0;
  border-radius: 0;
  text-align: center;
  transition: background 0.2s;
}
.social-btn:hover { color: var(--red); background: transparent; }

.footer-app p {
  color: rgba(0,0,0,0.5);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  color: rgba(0,0,0,0.35);
  font-size: 0.8rem;
  background: #ffffff;
}

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

@media (max-width: 820px) {
  .hero { padding: 60px 24px 120px; min-height: auto; }
  .hero-mascot { width: 200px; bottom: 20px; right: -10px; opacity: 0.35; }
  .hero-title-big { font-size: clamp(3rem, 10vw, 5rem); }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-images { height: 340px; }
  .wash-grid { grid-template-columns: 1fr; }
  .wash-grid--centered { grid-template-columns: 1fr; }
  .membership-inner { grid-template-columns: 1fr; }
  .membership-visual { order: -1; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .fundraiser-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cow, .final-chicken { display: none; }
  .urgency-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .topbar { font-size: 0.72rem; }
  .navbar { padding: 10px 16px; }
  .nav-logo img { height: 48px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #e8e8e8 0%, #d0d0d0 100%);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { width: 100%; display: block; padding: 12px 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .fundraiser-form { padding: 30px 20px; }
  .membership-badge-stack { display: none; }
}
/* =========================================
   APP SECTION
========================================= */
.app-section {
  position: relative;
  background: linear-gradient(135deg, #0F45A8 0%, #0A2F73 60%, #1f438b 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}
.app-bg-orbit {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 200, 0, 0.15);
  top: -200px; right: -200px;
  animation: spin 60s linear infinite;
  pointer-events: none;
}
.app-bg-orbit--2 {
  width: 500px; height: 500px;
  top: auto; right: auto;
  bottom: -150px; left: -150px;
  border-color: rgba(255,255,255,0.08);
  animation: spin 80s linear infinite reverse;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.app-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  margin: 14px 0 18px;
  color: #fff;
  text-shadow: 4px 4px 0 rgba(149, 2, 21, 0.85);
}
.app-headline-accent {
  color: #f5c800;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}
.app-subhead {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.4;
}
.app-copy p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
}
.app-copy .app-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #f5c800;
  font-size: 1.05rem;
  margin-top: 18px;
}

.app-store-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 14px;
  padding: 12px 24px;
  margin-top: 28px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.app-store-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 4px rgba(245, 200, 0, 0.4);
  background: #1a1a1a;
}
.app-store-btn-icon {
  width: 36px; height: 36px;
}
.app-store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.app-store-btn-small {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.app-store-btn-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

/* Phone mockup */
.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.app-phone {
  position: relative;
  width: 290px;
  height: 580px;
  background: linear-gradient(160deg, #1a1a1a 0%, #2b2b2b 100%);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 3px #000,
    0 30px 60px rgba(0,0,0,0.55),
    0 0 80px rgba(245, 200, 0, 0.2);
  animation: phoneFloat 5s ease-in-out infinite;
  z-index: 2;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.app-phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.app-phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0F45A8 0%, #07286b 100%);
  border-radius: 32px;
  overflow: hidden;
  padding: 50px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-phone-header {
  text-align: center;
  margin-top: 6px;
}
.app-phone-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #f5c800;
}
.app-phone-greeting {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 4px;
}
.app-phone-card {
  background: linear-gradient(135deg, #950215 0%, #6b010f 100%);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  border: 2px solid rgba(245, 200, 0, 0.4);
  animation: cardPulse 3s ease-in-out infinite;
}
@keyframes cardPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(0,0,0,0.35), 0 0 0 0 rgba(245,200,0,0.0); }
  50% { box-shadow: 0 6px 18px rgba(0,0,0,0.35), 0 0 0 6px rgba(245,200,0,0.18); }
}
.app-phone-card-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #f5c800;
}
.app-phone-card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.app-phone-card-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}
.app-phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.app-phone-action {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}
.app-phone-action span { font-size: 1.05rem; }
.app-phone-action:nth-child(1) { animation: tap 4s ease-in-out infinite; }
.app-phone-action:nth-child(2) { animation: tap 4s ease-in-out 1s infinite; }
.app-phone-action:nth-child(3) { animation: tap 4s ease-in-out 2s infinite; }
.app-phone-action:nth-child(4) { animation: tap 4s ease-in-out 3s infinite; }
@keyframes tap {
  0%, 100% { background: rgba(255,255,255,0.1); transform: scale(1); }
  10% { background: rgba(245,200,0,0.35); transform: scale(1.05); }
  20% { background: rgba(255,255,255,0.1); transform: scale(1); }
}
.app-phone-bubble {
  margin-top: auto;
  background: #f5c800;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid #1a1a1a;
  animation: bubblePop 2.4s ease-in-out infinite;
}
@keyframes bubblePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Floating decorative elements */
.app-float {
  position: absolute;
  font-size: 2.4rem;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.app-float--1 { top: 8%; left: 14%; animation: floatA 6s ease-in-out infinite; }
.app-float--2 { top: 18%; right: 8%; animation: floatB 7s ease-in-out infinite; }
.app-float--3 { bottom: 18%; left: 6%; animation: floatA 5s ease-in-out 1s infinite; }
.app-float--4 { bottom: 12%; right: 12%; animation: floatB 6s ease-in-out 0.5s infinite; }
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.85; }
  50% { transform: translateY(-22px) rotate(8deg); opacity: 1; }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(8deg); opacity: 0.85; }
  50% { transform: translateY(-26px) rotate(-8deg); opacity: 1; }
}

@media (max-width: 820px) {
  .app-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .app-store-btn { margin-left: auto; margin-right: auto; }
  .app-visual { min-height: 620px; }
}

  /* ============= NAV DROPDOWN (Memberships submenu) ============= */
  .nav-links .has-submenu { position: relative; }
  .nav-links .has-submenu > .submenu-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
  .nav-links .submenu-caret { font-size: 0.7em; transition: transform 0.2s; }
  .nav-links .has-submenu.open .submenu-caret,
  .nav-links .has-submenu:hover .submenu-caret { transform: rotate(180deg); }
  .nav-links .has-submenu .submenu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: #ffffff; border: 2px solid #111; border-radius: 10px;
    box-shadow: 4px 4px 0 #111; padding: 8px; min-width: 220px;
    list-style: none; margin: 0; display: none; z-index: 200;
  }
  .nav-links .has-submenu:hover .submenu,
  .nav-links .has-submenu.open .submenu,
  .nav-links .has-submenu:focus-within .submenu { display: block; }
  .nav-links .has-submenu .submenu li { margin: 0; list-style: none; }
  .nav-links .has-submenu .submenu li a {
    display: block; padding: 9px 14px; border-radius: 6px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
    color: #111; background: transparent !important; white-space: nowrap;
  }
  .nav-links .has-submenu .submenu li a:hover { background: #fff8e7 !important; color: #1f438b; }
  @media (max-width: 820px) {
    .nav-links .has-submenu .submenu {
      position: static; display: none; box-shadow: none;
      border: none; background: transparent; padding: 4px 0 4px 18px;
      min-width: 0;
    }
    .nav-links .has-submenu.open .submenu { display: block; }
    .nav-links .has-submenu:hover .submenu { display: none; }
    .nav-links .has-submenu.open .submenu { display: block; }
  }
  