:root {
  --orange:      #F47722;
  --navy:        #0C3D54;
  --light-blue:  #A2D3F2;
  --mid-blue:    #77AED7;
  --white:       #FFFFFF;
  --black:       #111111;
  --font: 'Nunito', 'Arial Black', sans-serif;
}

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

html, body {
  width: 100%;
  min-height: 100%;
  font-family: var(--font);
  background: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.top-bar {
  background: var(--navy);
  width: 100%;
  z-index: 100;
  position: relative;
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}
.social-link {
  color: var(--white);
  opacity: 0.85;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 1; }
.manage-btn {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.manage-btn:hover { background: #2a2a2a; }
.manage-btn--clear {
  background: transparent;
  color: var(--white);
  border: none;
}
.manage-btn--clear:hover { background: rgba(255,255,255,0.1); }

.main-nav {
  background: var(--white);
  width: 100%;
  z-index: 99;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-bottom: 3px solid var(--orange);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}
.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links li a {
  color: var(--navy);
  font-family: var(--font);
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.nav-links li a:hover {
  background: rgba(244,119,34,0.08);
  color: var(--orange);
}
.caret { font-size: 11px; opacity: 0.8; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-cta-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(244,119,34,0.3);
}
.nav-cta-btn:hover { background: #e06510; transform: translateY(-1px); }

.hero {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  min-height: calc(100vh - 120px);
  overflow: hidden;
}
.hero-left {
  position: relative;
  width: 55%;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 80px 100px 60px;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 160px;
  height: 100%;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 560px;
}
.hero-eyebrow {
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subheadline {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--light-blue);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 440px;
  opacity: 0.92;
}
.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(244,119,34,0.45);
  white-space: nowrap;
}
.hero-cta:hover {
  background: #e06510;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,119,34,0.5);
}
.hero-cta:active { transform: translateY(0); }
.hero-right {
  width: 45%;
  position: relative;
  background: #1a2a35;
  display: flex;
  align-items: stretch;
  z-index: 1;
}
.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background: #1c2f3c;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.bottom-banner { background: var(--orange); width: 100%; }
.bottom-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.unlimited-btn {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.unlimited-btn:hover { background: #0a3347; transform: translateY(-1px); }
.unlimited-text {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(16px, 2.2vw, 28px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-align: center;
}
.unlimited-accent {
  font-style: italic;
  color: var(--navy);
  font-weight: 900;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  font-family: var(--font);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}
.eyebrow-orange { color: var(--orange); }
.eyebrow-navy   { color: var(--navy); }
.section-headline {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.headline-white { color: var(--white); }

.authority-section {
  background: #ffffff;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.authority-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('fox-texture-orange.png') repeat;
  background-size: 600px auto;
  opacity: 0.06;
  pointer-events: none;
}
.authority-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.authority-content { width: 100%; }
.fox-run-icon {
  width: 220px;
  height: auto;
  position: absolute;
  top: -60px;
  right: -30px;
  animation: fox-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(244,119,34,0.2));
}
@keyframes fox-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.authority-body {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 19px);
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.authority-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--navy);
  border-radius: 12px;
  overflow: visible;
  position: relative;
  width: 100%;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  gap: 6px;
}
.stat-num {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--light-blue);
  text-transform: uppercase;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

.benefits-section {
  background: var(--navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.benefits-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('fox-pattern-blue.png') repeat;
  background-size: 400px auto;
  opacity: 0.08;
  pointer-events: none;
}
.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}
.benefits-content { flex: 1; }
.benefits-list {
  margin: 32px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--white);
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
  transition: background 0.2s, transform 0.2s;
}
.benefit-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.check {
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-tag {
  font-size: 11px;
  color: var(--light-blue);
  font-style: italic;
  display: block;
  margin-top: 2px;
}
.btn-outline-white {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.benefits-image {
  flex-shrink: 0;
  width: 420px;
  position: relative;
}
.benefits-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.benefits-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(244,119,34,0.5);
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.badge-icon { font-size: 22px; }
.badge-text {
  font-family: var(--font);
  font-weight: 900;
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reviews-section {
  background: var(--white);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('fox-texture-orange.png') repeat;
  background-size: 500px auto;
  opacity: 0.04;
  pointer-events: none;
}
.reviews-section .section-inner { position: relative; }
.reviews-section .section-eyebrow { justify-content: center; }
.reviews-section .section-headline {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.review-card {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: left;
  border-top: 4px solid var(--mid-blue);
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.review-card--featured {
  background: var(--navy);
  border-top-color: var(--orange);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(12,61,84,0.25);
}
.review-card--featured:hover { transform: translateY(-14px); }
.review-stars {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card--featured .review-text { color: var(--light-blue); }
.review-author {
  font-family: var(--font);
  font-weight: 900;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.review-card--featured .review-author { color: var(--orange); }

.eyebrow-white { color: var(--white); }
.wash-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.wash-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28) !important;
}
.monthly-btn {
  animation: monthlyGlow 2s ease-in-out infinite;
}
.monthly-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(244,119,34,0.6), 0 0 40px rgba(244,119,34,0.3) !important;
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.pulse-badge {
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes monthlyGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(244,119,34,0.3), 0 0 16px rgba(244,119,34,0.1); }
  50% { box-shadow: 0 0 16px rgba(244,119,34,0.5), 0 0 32px rgba(244,119,34,0.2); }
}

.membership-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 120px 40px;
}
.membership-bg-image {
  position: absolute;
  inset: 0;
  background: url('car-wash-tunnel.png') center/cover no-repeat;
  pointer-events: none;
}
.membership-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244,247,250,0.82);
  pointer-events: none;
}
.membership-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.membership-content { width: 100%; }
.membership-body {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 19px);
  color: #0C3D54;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.membership-divider {
  width: 60px;
  height: 2px;
  background: #F47722;
  margin: 0 auto 36px;
}
.membership-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
}
.perk-item:hover {
  background: none;
  transform: none;
}
.perk-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #F47722;
}
.perk-item strong {
  font-family: var(--font);
  font-weight: 900;
  font-size: 16px;
  color: #0C3D54;
  display: block;
  margin-bottom: 4px;
}
.perk-item p {
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.membership-urgency {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(14px, 1.3vw, 17px);
  color: #F47722;
  font-style: italic;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.btn-orange-lg {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(244,119,34,0.45);
}
.btn-orange-lg:hover {
  background: #e06510;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,119,34,0.5);
}
.overlay-text {
  font-family: var(--font);
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.locations-section {
  background: #f4f7fa;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.locations-section .section-eyebrow { justify-content: center; }
.locations-section .section-headline { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.locations-subhead {
  text-align: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(14px, 1.3vw, 18px);
  color: #666;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.location-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.13);
}
.location-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.location-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.location-card:hover .location-photo {
  transform: scale(1.05);
}
.location-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,61,84,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.location-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}
.location-body { padding: 32px; }
.location-name {
  font-family: var(--font);
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.location-address {
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  color: var(--orange);
  line-height: 1.5;
  margin-bottom: 16px;
}
.location-desc {
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}
.location-hours {
  background: #f4f7fa;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  color: var(--navy);
  line-height: 1.7;
}
.hours-season {
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}
.location-btns {
  display: flex;
  gap: 12px;
}
.btn-location-outline {
  flex: 1;
  text-align: center;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn-location-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-location-solid {
  flex: 1;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-location-solid:hover { background: #e06510; transform: translateY(-1px); }

.faq-section {
  background: var(--navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fox-texture-orange.png') repeat;
  background-size: 500px auto;
  opacity: 0.04;
  pointer-events: none;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header .section-eyebrow { justify-content: center; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s;
}
.faq-item:hover { background: rgba(255,255,255,0.09); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  color: var(--light-blue);
  line-height: 1.7;
  margin-bottom: 8px;
  opacity: 0.9;
}

.site-footer {
  background: #ffffff;
  padding: 60px 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-logo img {
  height: 50px;
  width: auto;
}
.footer-cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  color: #0C3D54;
  line-height: 1.8;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: #F47722; }
.footer-social { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  color: #0C3D54;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .nav-links { position: static; transform: none; gap: 2px; }
  .nav-links li a { font-size: 12px; padding: 8px 10px; }
  .hero-left { padding: 60px 40px; }
  .authority-inner { flex-direction: column; gap: 40px; }
  .fox-run-icon { width: 100px; top: -40px; right: -10px; }
  .benefits-inner { flex-direction: column; gap: 48px; }
  .benefits-image { width: 100%; }
  .benefits-list { grid-template-columns: 1fr; }
  .membership-inner { text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; }
  .review-card--featured { transform: none; }
  .locations-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-inner { padding: 0 16px; }
  .nav-inner { padding: 0 16px; height: 64px; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-cta-btn { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 8px 16px 20px;
    z-index: 200;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-top: 2px solid var(--orange);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { padding: 12px 8px; font-size: 14px; color: var(--navy); border-bottom: 1px solid rgba(0,0,0,0.07); }
  .hero { flex-direction: column; min-height: unset; }
  .hero-left { width: 100%; padding: 56px 24px 64px; }
  .hero-left::after { display: none; }
  .hero-right { width: 100%; min-height: 380px; }
  .bottom-banner-inner { flex-direction: column; height: auto; padding: 20px; gap: 14px; }
  .unlimited-text { font-size: clamp(15px, 4vw, 22px); white-space: normal; text-align: center; }
  .authority-section,
  .benefits-section,
  .reviews-section,
  .membership-section,
  .locations-section,
  .faq-section { padding: 60px 20px; }
  .authority-inner,
  .benefits-inner,
  .membership-inner { text-align: center; }
  .authority-stats { flex-direction: column; border-radius: 8px; }
  .stat-divider { width: 80%; height: 1px; }
  .benefits-image { width: 100%; }
  .benefits-image img { height: 300px; }
  .benefits-image-badge { width: 90px; height: 90px; left: -10px; bottom: -10px; }
  .location-btns { flex-direction: column; }
  .location-img-wrap { height: 220px; }
  .footer-cols { grid-template-columns: 1fr; }
  .nav-logo img { height: 44px; }
}

@media (max-width: 480px) {
  .hero-left { padding: 44px 20px 52px; }
  .hero-cta { padding: 15px 32px; font-size: 14px; }
  .section-inner { padding: 0 16px; }
  .faq-question { padding: 18px 20px; font-size: 14px; }
  .faq-item.open .faq-answer { padding: 0 20px 20px; }
}
