/* ============================================================
   THE WORKOUT WAREHOUSE — Global Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg:           #0A0A0A;
  --bg-card:      #141414;
  --bg-section:   #111111;
  --neon-green:   #C8FF00;
  --neon-blue:    #0047FF;
  --neon-gold:    #FFD700;
  --white:        #FFFFFF;
  --muted:        #888888;
  --border:       rgba(255,255,255,0.08);
  --border-neon:  rgba(200,255,0,0.3);

  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.3s ease;
  --shadow:       0 4px 30px rgba(0,0,0,0.5);
  --shadow-neon:  0 0 20px rgba(200,255,0,0.2);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; color: rgba(255,255,255,0.85); }

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.neon-text  { color: var(--neon-green); }
.blue-text  { color: var(--neon-blue); }
.gold-text  { color: var(--neon-gold); }
.muted-text { color: var(--muted); }

.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag-neon  { background: var(--neon-green); color: #000; }
.tag-blue  { background: var(--neon-blue);  color: #fff; }
.tag-gold  { background: var(--neon-gold);  color: #000; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--neon-green);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.divider-center { margin: 16px auto 24px; }
.divider-blue  { background: var(--neon-blue); }
.divider-gold  { background: var(--neon-gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--neon-green);
  color: #000;
}
.btn-primary:hover { box-shadow: 0 0 24px rgba(200,255,0,0.5); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
}
.btn-outline:hover { background: var(--neon-green); color: #000; }

.btn-blue {
  background: var(--neon-blue);
  color: #fff;
}
.btn-blue:hover { box-shadow: 0 0 24px rgba(0,71,255,0.5); transform: translateY(-2px); }

.btn-gold {
  background: var(--neon-gold);
  color: #000;
}
.btn-gold:hover { box-shadow: 0 0 24px rgba(255,215,0,0.5); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: #000;
}
.btn-white:hover { background: #eee; transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.15rem; }

/* ---------- Section Headers ---------- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img {
  height: 64px;
  width: auto;
  filter: invert(0); /* logo is already white on transparent */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--neon-green); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.header-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  border-top: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--neon-green); }
.mobile-nav .btn { margin-top: 20px; text-align: center; justify-content: center; }
.mobile-nav .btn-primary { color: #000; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(10,10,10,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 900px;
}
.hero-logo {
  width: 120px;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}
.hero-content h1 {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-content h1 .highlight {
  color: var(--neon-green);
  position: relative;
}
.hero-content p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg { transform: none; }
.page-hero .hero-overlay {
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 24px 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-content .eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 8px;
}
.page-hero-content h1 { font-size: clamp(2.2rem, 6vw, 4rem); text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.page-hero-content h1 .neon-text { text-shadow: 0 0 30px rgba(200,255,0,0.6), 0 0 80px rgba(200,255,0,0.2); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,255,0,0.2);
}
.card-body { padding: 24px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-img-tall { height: 300px; }

/* ============================================================
   OFFER GRID (Home — What We Offer)
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--neon-green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--border-neon); box-shadow: var(--shadow-neon); }
.offer-card:hover::before { transform: scaleX(1); }
.offer-icon {
  font-size: 2rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  line-height: 1;
}
.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.offer-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ============================================================
   RECOVERY ZONE
   ============================================================ */
.recovery-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.recovery-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,71,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.recovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.recovery-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.recovery-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.recovery-images img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}
.recovery-copy .eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 8px;
}
.recovery-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.recovery-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.recovery-feature .icon { font-size: 1.8rem; margin-bottom: 8px; }
.recovery-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.recovery-feature p { font-size: 0.85rem; color: var(--muted); }
.recovery-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,71,255,0.12);
  border: 1px solid rgba(0,71,255,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 24px;
}
.recovery-price .amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-blue);
}
.recovery-price .label { font-size: 0.875rem; color: var(--muted); }

/* ============================================================
   CHALLENGE BANNER
   ============================================================ */
.challenge-banner {
  background: var(--neon-green);
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
}
.challenge-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Challenge1.png') center/cover no-repeat;
  opacity: 0.08;
}
.challenge-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.challenge-banner-text h2 {
  color: #000;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 4px;
}
.challenge-banner-text p {
  color: rgba(0,0,0,0.7);
  font-size: 1rem;
}

/* ============================================================
   COMMUNITY GALLERY (Carousel / Marquee)
   ============================================================ */
.community-section { overflow: hidden; }
.carousel-track-wrap { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-item {
  width: 340px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.carousel-item:hover img { transform: scale(1.05); }

/* ============================================================
   CAR WASH SECTION
   ============================================================ */
.carwash-section { background: var(--bg-section); }
.carwash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.carwash-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carwash-images img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
}
.carwash-images img:nth-child(1) {
  object-position: center 40%;
}
.carwash-images img:nth-child(2) {
  object-position: center 40%;
}
.carwash-images img:nth-child(4) {
  object-position: center 35%;
}
.carwash-copy .eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 8px;
}
.carwash-checklist {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carwash-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.carwash-checklist li::before {
  content: '✅';
  font-size: 1rem;
}
.carwash-price-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0;
}
.carwash-price-table table {
  width: 100%;
  border-collapse: collapse;
}
.carwash-price-table th {
  background: rgba(200,255,0,0.1);
  color: var(--neon-green);
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.carwash-price-table td {
  padding: 10px 14px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.85);
}
.carwash-price-table tr:last-child td { border-bottom: none; }
.carwash-price-table td:not(:first-child) {
  color: var(--neon-green);
  font-weight: 700;
  font-family: var(--font-head);
}
.carwash-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}
.carwash-contact strong { color: var(--white); }

/* ============================================================
   FITCHEF & COFFEE
   ============================================================ */
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.extra-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.extra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.extra-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  gap: 2px;
}
.extra-card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extra-card-images.single img {
  grid-column: 1/-1;
}
.extra-card-body { padding: 28px; }
.extra-card-body .eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-gold);
  margin-bottom: 6px;
}
.extra-card-body h3 { margin-bottom: 12px; }
.extra-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.extra-checklist {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.extra-checklist li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.extra-checklist li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

/* ============================================================
   MERCH SECTION
   ============================================================ */
.merch-section { background: var(--bg-section); }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.merch-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}
.merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.merch-img:hover img { transform: scale(1.06); }
.merch-copy { text-align: center; max-width: 600px; margin: 0 auto; }
.merch-copy p { color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(200,255,0,0.2); }
.review-stars {
  color: var(--neon-gold);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  color: #000;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-role { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   HOURS + CONTACT STRIP
   ============================================================ */
.hours-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hours-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 10px 0;
  font-size: 0.9rem;
}
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { color: var(--white); font-weight: 600; text-align: right; }
.hours-table .closed { color: rgba(255,255,255,0.35) !important; }
.hours-table tr.today td { color: var(--neon-green); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item .icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item p { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.contact-item strong { color: var(--white); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--muted);
}
.footer-social a:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(200,255,0,0.08);
}
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--neon-green);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer-col address strong { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   CLASS TIMETABLE
   ============================================================ */
.timetable-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.timetable {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.timetable th {
  background: rgba(200,255,0,0.07);
  color: var(--neon-green);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.timetable td {
  padding: 14px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: rgba(255,255,255,0.8);
}
.timetable tr:last-child td { border-bottom: none; }
.timetable tr:hover td { background: rgba(255,255,255,0.02); }
.timetable td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
}
.class-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 2px 0;
}
.chip-green  { background: rgba(200,255,0,0.15);  color: var(--neon-green); }
.chip-blue   { background: rgba(0,71,255,0.15);   color: #6699ff; }
.chip-gold   { background: rgba(255,215,0,0.15);  color: var(--neon-gold); }
.chip-white  { background: rgba(255,255,255,0.08); color: var(--white); }
.class-time  { font-size: 0.75rem; color: var(--muted); display: block; }

/* Class Spotlights */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spotlight-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 180px;
  gap: 2px;
}
.spotlight-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-images.two-col {
  grid-template-columns: 1fr 1fr;
}
.spotlight-images.one-col {
  grid-template-columns: 1fr;
}
.spotlight-body { padding: 24px; }
.spotlight-body .tag { margin-bottom: 12px; }
.spotlight-body h3 { margin-bottom: 8px; }
.spotlight-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 16px; }
.spotlight-times { display: flex; flex-direction: column; gap: 4px; }
.spotlight-times span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}
.spotlight-times span strong { color: var(--neon-green); }

/* Coming Soon */
.coming-soon-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.coming-soon-strip h3 { color: var(--muted); font-size: 1rem; letter-spacing: 0.2em; margin-bottom: 20px; }
.coming-soon-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.coming-soon-badge {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   PRICING / MEMBERSHIP
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-neon); box-shadow: var(--shadow-neon); }
.price-card .label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-card .amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
}
.price-card .suffix {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Bundle Table */
.bundle-section { background: var(--bg-section); }
.bundle-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.bundle-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.bundle-table th {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.bundle-table th:first-child { text-align: left; color: var(--muted); }
.bundle-table .col-3m  th { color: var(--neon-green); }
.bundle-table .col-6m  th { color: var(--neon-blue); }
.bundle-table .col-1y  th { color: var(--neon-gold); }

.bundle-table .row-label {
  background: rgba(255,255,255,0.03);
}
.bundle-table .row-label td {
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.bundle-table .row-label.standard td { color: var(--neon-green); }
.bundle-table .row-label.student  td { color: #66ff66; }
.bundle-table .row-label.pension  td { color: var(--neon-blue); }

.bundle-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
}
.bundle-table td:first-child { text-align: left; color: var(--muted); }
.bundle-table .price-cell {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.bundle-table tr:last-child td { border-bottom: none; }

/* Recovery Add-On */
.recovery-addon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-top: 48px;
}
.recovery-addon-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.recovery-addon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recovery-addon-content {
  padding: 0;
}
.recovery-addon-content .eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 8px;
}
.recovery-addon-content h2 { margin-bottom: 12px; }
.recovery-addon-content p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.addon-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,71,255,0.2);
  border: 1px solid rgba(0,71,255,0.4);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 28px;
}
.addon-price-badge .price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-blue);
}
.addon-price-badge .period { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   LEVEL UP PAGE (Events & Challenges)
   ============================================================ */
.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.event-card-image {
  width: 300px;
  flex-shrink: 0;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-card-body { padding: 36px 36px 36px 0; }
.event-card-body .tag { margin-bottom: 16px; }
.event-card-body h2 { margin-bottom: 8px; }
.event-card-body .event-date {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--neon-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-card-body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 20px; }
.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.event-detail {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}
.event-detail .label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.event-detail .value { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }

.challenge-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid rgba(0,71,255,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.challenge-card-body { padding: 36px; }
.challenge-card-body .tag { margin-bottom: 16px; }
.challenge-card-body h2 { margin-bottom: 8px; }
.challenge-card-image {
  width: 280px;
  flex-shrink: 0;
}
.challenge-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.challenge-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.challenge-goal {
  background: rgba(0,71,255,0.08);
  border: 1px solid rgba(0,71,255,0.2);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}
.challenge-goal .icon { font-size: 1.5rem; margin-bottom: 6px; }
.challenge-goal p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body .tag { margin-bottom: 12px; }
.blog-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.blog-card-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 16px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Article Content */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-header { margin-bottom: 40px; }
.article-header .tag { margin-bottom: 16px; }
.article-header h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-feature-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.article-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.82); }
.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 40px 0 16px;
  color: var(--white);
}
.article-body p { margin-bottom: 18px; }
.article-body img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 32px 0;
}
.article-body .highlight-box {
  background: rgba(200,255,0,0.06);
  border-left: 4px solid var(--neon-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  color: rgba(255,255,255,0.9);
}
.article-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { color: var(--muted); margin-bottom: 20px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-card .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--neon-green);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact-detail-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.contact-detail-card a:hover { color: var(--neon-green); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) hue-rotate(180deg);
}

/* Hours Table on Contact */
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}
.hours-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--neon-green);
}
.hours-card .hours-table td { font-size: 0.875rem; padding: 8px 0; }

/* Reels Section */
.reels-section { background: var(--bg-section); }
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reel-embed {
  position: relative;
  aspect-ratio: 9 / 16;
  clip-path: inset(56px 0 260px 0 round 16px);
}
.reel-embed iframe {
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: calc(100% + 300px);
  border: none;
  display: block;
}

/* Socials on Contact */
.socials-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.social-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--muted);
}
.social-pill:hover { border-color: var(--neon-green); color: var(--neon-green); background: rgba(200,255,0,0.06); }
.social-pill .icon { font-size: 1.2rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 20px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .recovery-grid { grid-template-columns: 1fr; }
  .recovery-images { grid-template-rows: auto; }
  .carwash-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-card-image { width: 100%; height: 260px; }
  .challenge-card { grid-template-columns: 1fr; }
  .challenge-card-image { width: 100%; height: 260px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  .contact-reels { display: none; }
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .site-header,
  .site-header.scrolled { background: #000; backdrop-filter: none; }

  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .offer-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .offer-card { padding: 16px 12px; }
  .offer-icon { width: 48px; height: 48px; font-size: 1.4rem; margin-bottom: 10px; }
  .offer-card h3 { font-size: 1rem; margin-bottom: 4px; }
  .offer-card p { font-size: 0.78rem; }
  .recovery-features { grid-template-columns: 1fr; gap: 10px; }
  .recovery-feature { padding: 16px 12px; }
  .recovery-feature .icon { font-size: 1.4rem; margin-bottom: 6px; }
  .recovery-feature h4 { font-size: 1rem; margin-bottom: 4px; }
  .recovery-feature p { font-size: 0.78rem; }
  .recovery-images img:first-child { height: 160px; }

  .carousel-item { width: 260px; height: 200px; }

  .merch-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 20px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .hours-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .hours-strip-inner .contact-info { order: -1; }


  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding-bottom: 28px; }
  .footer-brand { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
  .footer-brand img { height: 36px; margin-bottom: 0; }
  .footer-brand p { display: none; }
  .footer-social { margin-top: 0; }
  .footer-col h4 { font-size: 0.72rem; margin-bottom: 10px; }
  .footer-col ul { gap: 6px; }
  .footer-col ul li a { font-size: 0.78rem; }
  .footer-col address { font-size: 0.78rem; line-height: 1.6; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 14px 0; }
  .site-footer { padding-top: 28px; }

  .spotlight-grid { grid-template-columns: 1fr; }
  .additional-classes-grid { grid-template-columns: 1fr !important; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .bundle-table th, .bundle-table td { padding: 10px 12px; }

  .blog-grid { grid-template-columns: 1fr; }

  .reels-grid { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-logo { width: 80px; }

  .page-hero { min-height: 360px; }

  .event-details { grid-template-columns: 1fr; }
  .challenge-goals { grid-template-columns: 1fr; }

  .recovery-addon { grid-template-columns: 1fr; padding: 32px 24px; }
  .recovery-addon-image { height: 280px; }

  .challenge-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .offer-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .extra-card-images { grid-template-columns: 1fr; height: auto; }
  .extra-card-images img { height: 160px; }
}

/* ============================================================
   MOBILE OPTIMISATION
   ============================================================ */

@media (max-width: 768px) {
  /* Container tighter padding */
  .container { padding: 0 16px; }

  /* Section headers */
  .section-header { margin-bottom: 32px; }

  /* Hero home */
  .hero-content { padding: 100px 16px 60px; }

  /* Page heroes */
  .page-hero-content { padding: 80px 16px 32px; }

  /* Spotlight image strip shorter */
  .spotlight-images { height: 140px; }
  .spotlight-images img { height: 140px; }

  /* Car wash images — 2x2 collage */
  .carwash-images { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
  .carwash-images img { height: 140px; }

  /* Event & challenge card body padding */
  .event-card-body { padding: 24px 20px; }
  .challenge-card-body { padding: 24px 20px; }

  /* Social pills centred */
  .socials-row { justify-content: center; }

  /* Hours strip padding */
  .hours-strip-inner { padding: 32px 0; }

  /* Timetable smaller text */
  .timetable th, .timetable td { padding: 10px 10px; font-size: 0.8rem; }
  .timetable td:first-child { font-size: 0.875rem; }
  .class-chip { font-size: 0.7rem; padding: 3px 7px; }

  /* Addon price badge wrap */
  .addon-price-badge { flex-wrap: wrap; }

  /* Recovery price wrap */
  .recovery-price { flex-wrap: wrap; }

  /* Carwash checklist */
  .carwash-checklist li { font-size: 0.875rem; }

  /* Footer social row */
  .footer-social { justify-content: flex-start; }

  /* Challenge card image order — image shows above content */
  .challenge-card { display: flex; flex-direction: column-reverse; }
  .challenge-card-image { width: 100%; height: 240px; }
}

@media (max-width: 480px) {
  /* Breathing room */
  .section-pad { padding: 40px 0; }
  .section-pad-sm { padding: 28px 0; }

  /* Page hero */
  .page-hero { min-height: 300px; }
  .page-hero-content { padding: 72px 16px 24px; }

  /* Home hero */
  .hero-content { padding: 80px 16px 48px; }

  /* Buttons less oversized */
  .btn-lg { padding: 14px 24px; font-size: 1rem; }

  /* Challenge banner */
  .challenge-banner { padding: 28px 16px; }

  /* Footer gap */
  .footer-grid { gap: 14px; }

  /* Map shorter */
  .map-wrap { height: 260px; }

  /* Hours strip tighter */
  .hours-strip-inner { gap: 24px; padding: 28px 0; }

  /* Carwash price table smaller */
  .carwash-price-table td,
  .carwash-price-table th { font-size: 0.78rem; padding: 8px 10px; }

  /* Event / challenge body tighter */
  .event-card-body { padding: 20px 16px; }
  .challenge-card-body { padding: 20px 16px; }
  .event-card-image { height: 200px; }
  .challenge-card-image { height: 200px; }

  /* FitChef / Coffee inline image grids */
  .extra-card > div:first-child { height: 200px !important; }

  /* Recovery addon */
  .recovery-addon { padding: 24px 16px; gap: 24px; }

  /* Grids gap tighter */
  .blog-grid { gap: 14px; }
  .reviews-grid { gap: 14px; }
  .reels-grid { gap: 14px; }
  .spotlight-grid { gap: 16px; }

  /* Pricing */
  .pricing-grid { gap: 10px; }
  .price-card { padding: 20px 14px; }
  .price-card .amount { font-size: 2rem; }

  /* Bundle table */
  .bundle-table th, .bundle-table td { padding: 8px 10px; font-size: 0.78rem; }

  /* Recovery images */
  .recovery-images img:first-child { height: 140px; }

  /* Merch copy */
  .merch-copy p { font-size: 0.875rem; }

  /* Contact detail cards */
  .contact-detail-card { padding: 16px 18px; }

  /* Socials row wrap nicely */
  .socials-row { gap: 12px; }
  .social-pill { padding: 10px 18px; font-size: 0.8rem; }

  /* Coming soon badges wrap */
  .coming-soon-badges { gap: 8px; }
  .coming-soon-badge { font-size: 0.8rem; padding: 6px 14px; }
}

/* ============================================================
   NEON SPLASH VISUAL ENHANCEMENTS
   ============================================================ */

:root { --neon-pink: #FF2D87; }

/* ---- Hero Atmosphere Blobs ---- */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  animation: blob-pulse 7s ease-in-out infinite alternate;
}
.hero-blob-1 {
  width: 700px; height: 700px;
  top: -250px; left: -200px;
  background: radial-gradient(circle, rgba(200,255,0,0.3) 0%, transparent 65%);
  z-index: 1;
}
.hero-blob-2 {
  width: 600px; height: 600px;
  bottom: -150px; right: -150px;
  background: radial-gradient(circle, rgba(0,71,255,0.35) 0%, transparent 65%);
  z-index: 1;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 400px; height: 400px;
  top: 20%; right: 5%;
  background: radial-gradient(circle, rgba(255,45,135,0.22) 0%, transparent 65%);
  z-index: 1;
  animation-delay: -5s;
}
@keyframes blob-pulse {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(25px, -18px); }
}

/* Hero headline neon glow */
.hero-content h1 .highlight {
  text-shadow: 0 0 30px rgba(200,255,0,0.6), 0 0 80px rgba(200,255,0,0.2);
}

/* ---- Offer Section Atmospheric Background ---- */
.offer-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.offer-section > * { position: relative; z-index: 1; }
.offer-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  top: -350px; right: -200px;
  background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}
.offer-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(0,71,255,0.09) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}

/* ---- Offer Card Neon Color Variants ---- */

/* Green — cards 1 & 4 */
.offer-card:nth-child(3n+1) {
  border-top: 3px solid var(--neon-green);
  background: linear-gradient(155deg, rgba(200,255,0,0.08) 0%, var(--bg-card) 50%);
}
.offer-card:nth-child(3n+1) .offer-icon {
  background: rgba(200,255,0,0.14);
  box-shadow: 0 0 24px rgba(200,255,0,0.2);
}
.offer-card:nth-child(3n+1)::before { background: var(--neon-green); }
.offer-card:nth-child(3n+1):hover {
  border-color: rgba(200,255,0,0.5);
  box-shadow: 0 0 50px rgba(200,255,0,0.13), var(--shadow);
}

/* Blue — cards 2 & 5 */
.offer-card:nth-child(3n+2) {
  border-top: 3px solid var(--neon-blue);
  background: linear-gradient(155deg, rgba(0,71,255,0.1) 0%, var(--bg-card) 50%);
}
.offer-card:nth-child(3n+2) .offer-icon {
  background: rgba(0,71,255,0.2);
  box-shadow: 0 0 24px rgba(0,71,255,0.28);
}
.offer-card:nth-child(3n+2)::before { background: var(--neon-blue); }
.offer-card:nth-child(3n+2):hover {
  border-color: rgba(0,71,255,0.5);
  box-shadow: 0 0 50px rgba(0,71,255,0.18), var(--shadow);
}

/* Gold — cards 3 & 6 */
.offer-card:nth-child(3n+3) {
  border-top: 3px solid var(--neon-gold);
  background: linear-gradient(155deg, rgba(255,215,0,0.08) 0%, var(--bg-card) 50%);
}
.offer-card:nth-child(3n+3) .offer-icon {
  background: rgba(255,215,0,0.14);
  box-shadow: 0 0 24px rgba(255,215,0,0.2);
}
.offer-card:nth-child(3n+3)::before { background: var(--neon-gold); }
.offer-card:nth-child(3n+3):hover {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 0 50px rgba(255,215,0,0.13), var(--shadow);
}

/* ---- Recovery Section Enhanced Blue Glow ---- */
.recovery-section::before {
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,71,255,0.18) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

/* ---- Challenge Banner Vivid Gradient ---- */
.challenge-banner {
  background: linear-gradient(120deg, #C8FF00 0%, #00FFB2 50%, #00B4FF 100%);
}

/* ---- Community Section Neon Edge Lines ---- */
.community-section {
  position: relative;
}
.community-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-green) 30%, var(--neon-blue) 70%, transparent 100%);
  z-index: 2;
}
.community-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-blue) 30%, var(--neon-green) 70%, transparent 100%);
  z-index: 2;
}

/* ---- Reviews Section Gold Atmosphere ---- */
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
}
.review-stars {
  text-shadow: 0 0 12px rgba(255,215,0,0.5);
}

/* ---- Merch Section Neon Glow ---- */
.merch-section {
  position: relative;
  overflow: hidden;
}
.merch-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  bottom: -200px; right: -150px;
  background: radial-gradient(circle, rgba(200,255,0,0.07) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
}

/* ---- FitChef / Fuel Section Gold Atmosphere ---- */
.fuel-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.fuel-section > * { position: relative; z-index: 1; }
.fuel-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
}
.fuel-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(255,45,135,0.07) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
}
