/* ==========================================
   APEX GYM — Main Stylesheet
   Dark theme with red/orange accent
   ========================================== */

/* Google Fonts loaded via HTML */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  --accent:        #E63946;
  --accent-dark:   #c1121f;
  --accent-light:  #ff6b6b;
  --accent-glow:   rgba(230, 57, 70, 0.35);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #ff6b35 100%);

  --bg-primary:    #080808;
  --bg-secondary:  #101010;
  --bg-card:       #161616;
  --bg-card-hover: #1e1e1e;

  --text-primary:  #ffffff;
  --text-secondary:#9a9a9a;
  --text-muted:    #555555;

  --border:        #242424;
  --border-light:  #2e2e2e;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --transition: 0.35s ease;
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.55);
  --shadow-glow:0 0 40px var(--accent-glow);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* must be on html too — iOS Safari ignores body-only */
  max-width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}

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

/* ==================== TYPOGRAPHY ==================== */
.font-bebas  { font-family: 'Bebas Neue', cursive; }
.font-oswald { font-family: 'Oswald', sans-serif; }

.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 1rem;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 8px 25px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(230,57,70,0.15);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in, .fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in   { transform: translateY(20px); }
.fade-up   { transform: translateY(35px); }
.fade-left { transform: translateX(-40px); }
.fade-right{ transform: translateX(40px); }

.fade-in.visible,
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ==================== SCROLL PROGRESS BAR ==================== */
#progressBar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

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

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.85rem;
  letter-spacing: 3px;
  color: #fff;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  z-index: 1001;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.hamburger:hover {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.08);
  box-shadow: 0 0 16px var(--accent-glow);
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.1);
}
.hamburger.open span { background: var(--accent); }
/* translateY must come BEFORE rotate — translation happens in original axis,
   then the line pivots into place. gap(5px) + height(2px) = 7px offset. */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 280px;
  text-align: center;
  border: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  border-color: rgba(230,57,70,0.25);
  background: rgba(230,57,70,0.06);
}
/* Keep the Join Now link always accented */
.mobile-nav a[href="#contact"] {
  color: var(--accent);
  border-color: rgba(230,57,70,0.3);
  margin-top: 0.75rem;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;        /* clips the scale() zoom so it never bleeds outside */
  max-width: 100%;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80');
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.25) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 45%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.35);
  color: var(--accent);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.9s ease forwards;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.4; transform:scale(1.6); }
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 0.97;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title span { color: var(--accent); display: block; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.4rem;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeInDown { from { opacity:0; transform:translateY(-18px); } to { opacity:1; transform:none; } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:none; } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.8rem 0;
  overflow: hidden; /* prevent stat numbers from pushing width on small screens */
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.4rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 2px;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

/* ==================== WHY CHOOSE US ==================== */
.why-us { padding: 8rem 0; }

/* ── Mobile perks toggle button (hidden on desktop) ── */
.features-toggle {
  display: none; /* shown only inside the mobile media query */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(230,57,70,0.25);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(230,57,70,0.04);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 54px; height: 54px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent);
  margin-bottom: 1.4rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(230,57,70,0.18);
  box-shadow: 0 0 20px var(--accent-glow);
}

.feature-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.feature-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== GALLERY ==================== */
.facility { padding: 8rem 0; background: var(--bg-secondary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 300px);
  gap: 0.875rem;
  margin-top: 3rem;
}
.gal-item { overflow: hidden; border-radius: var(--radius-md); position: relative; cursor: pointer; }
.gal-item:nth-child(1) { grid-column: 1/7;  grid-row: 1/3; }
.gal-item:nth-child(2) { grid-column: 7/13; grid-row: 1/2; }
.gal-item:nth-child(3) { grid-column: 7/10; grid-row: 2/3; }
.gal-item:nth-child(4) { grid-column: 10/13; grid-row: 2/3; }
.gal-item:nth-child(5) { grid-column: 7/13; grid-row: 3/5; }
.gal-item:nth-child(6) { grid-column: 1/7;  grid-row: 3/4; }
.gal-item:nth-child(7) { grid-column: 1/4;  grid-row: 4/5; }
.gal-item:nth-child(8) { grid-column: 4/7;  grid-row: 4/5; }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.82);
}
.gal-item:hover img { transform: scale(1.07); filter: brightness(1); }

.gal-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1.4rem 1.6rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gal-item:hover .gal-label { opacity: 1; }
.gal-label span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==================== PROGRAMS ==================== */
.programs { padding: 8rem 0; }

/* Slider wrapper — transparent on desktop, clips on mobile */
.prog-slider-wrap { position: relative; }

/* Carousel controls hidden on desktop */
.prog-controls { display: none; }
.gal-slider-wrap { width: 100%; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,57,70,0.3);
}

.prog-img {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.prog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.prog-card:hover .prog-img img { transform: scale(1.08); }

.prog-badges {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  display: flex; gap: 0.35rem;
}
.prog-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  color: #fff;
}
.prog-badge.beginner     { background: rgba(34,197,94,0.85); }
.prog-badge.intermediate { background: rgba(251,146,60,0.85); }
.prog-badge.advanced     { background: rgba(230,57,70,0.85);  }
.prog-badge.custom       { background: rgba(99,102,241,0.85); }

.prog-body { padding: 1.4rem; }
.prog-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.prog-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.prog-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.prog-meta {
  display: flex; gap: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.prog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.prog-meta i   { color: var(--accent); }

/* ==================== TRAINERS ==================== */
.trainers { padding: 8rem 0; background: var(--bg-secondary); }

/* Outer: positioning context — no overflow clip so arrows can peek out */
.trainer-slider-outer { position: relative; }

/* Inner: clips the sliding track */
.trainer-slider-wrap { overflow: hidden; width: 100%; }

/* Side arrows hidden on desktop */
.trainer-arrow { display: none; }

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.trainer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,57,70,0.25);
}

.trainer-img {
  height: 290px;
  position: relative;
  overflow: hidden;
}
.trainer-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(25%);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.trainer-card:hover .trainer-img img { transform: scale(1.05); filter: grayscale(0%); }

.trainer-socials {
  position: absolute;
  top: 1rem; right: 1rem;
  display: flex; flex-direction: column; gap: 0.45rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.trainer-card:hover .trainer-socials { opacity: 1; }
.trainer-socials a {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: background var(--transition);
}
.trainer-socials a:hover { background: var(--accent); }

.trainer-body { padding: 1.5rem; }
.trainer-spec {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.trainer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.trainer-bio {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.trainer-certs {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.cert-tag {
  background: rgba(230,57,70,0.08);
  border: 1px solid rgba(230,57,70,0.2);
  color: var(--accent);
  padding: 0.18rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trainer-btn {
  display: block; text-align: center;
  background: transparent;
  border: 1px solid var(--border-light);
  color: #fff;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.trainer-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(230,57,70,0.05);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -4rem; left: -2rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 28rem;
  color: rgba(230,57,70,0.025);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* Slider wrapper — transparent on desktop, clips on mobile */
.testi-slider-wrap { position: relative; }

/* Carousel controls hidden on desktop */
.testi-controls { display: none; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230,57,70,0.2);
  box-shadow: 0 15px 50px rgba(0,0,0,0.35);
}
.testi-card.featured {
  border-color: rgba(230,57,70,0.4);
  background: linear-gradient(145deg, rgba(230,57,70,0.05), var(--bg-card));
}

.stars {
  display: flex; gap: 0.2rem;
  color: #FFC107;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 1.6rem;
}

.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.author-meta {
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.author-result {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.18rem 0.7rem;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.quote-banner {
  margin-top: 4rem;
  padding: 2.8rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  text-align: center;
}
.quote-text {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 2px;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.quote-author {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

/* ==================== PRICING ==================== */
.pricing { padding: 8rem 0; background: var(--bg-secondary); }

/* Plan tab switcher — hidden on desktop */
.plan-tabs { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(230,57,70,0.07), var(--bg-card));
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); }

.popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.28rem 1.2rem;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}
.plan-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 4.2rem;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
}
.plan-price sup {
  font-size: 1.6rem;
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
}
.plan-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.4rem 0 1.8rem;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 1.8rem;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.plan-features li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features i { color: var(--accent); font-size: 0.7rem; flex-shrink: 0; }
.plan-features .na { color: var(--text-muted); text-decoration: line-through; }
.plan-features .na i { color: var(--text-muted); }

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ==================== CTA BANNER ==================== */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(230,57,70,0.25) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center;
}
.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}
.cta-title span { color: var(--accent); }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==================== CONTACT ==================== */
.contact-section { padding: 8rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-detail-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-detail-val { font-size: 0.92rem; line-height: 1.6; }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-form-wrap p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.form-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 90px; }

/* Form section dividers */
.form-section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-top: 0.4rem;
}

/* Question labels */
.form-question {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: -0.3rem;
}
.form-question-note {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Pill choice button groups */
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.choice-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.choice-btn:hover {
  border-color: rgba(230,57,70,0.45);
  color: #fff;
}
.choice-btn.choice-active {
  background: rgba(230,57,70,0.12);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 10px rgba(230,57,70,0.15);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 3px;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.9rem;
}
.footer-logo span { color: var(--accent); }

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.855rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex; gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.855rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-contact-item i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }

.hours-table { margin-top: 1rem; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-row .day { color: rgba(255,255,255,0.55); }
.hours-row.vip .day { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-copy span { color: var(--accent); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ==================== SUCCESS MODAL ==================== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 10000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: modalIn 0.4s ease forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.modal-emoji { font-size: 3rem; margin-bottom: 1rem; }
.modal-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.modal-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .programs-grid  { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gal-item { grid-column: auto !important; grid-row: auto !important; height: 240px; }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Push hero content below the fixed navbar */
  .hero {
    padding-top: 4rem;
  }

  /* Always show solid navbar on mobile — no transparent phase */
  .navbar {
    padding: 0.85rem 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
  }

  /* ── Features toggle button ── */
  .features-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    color: #fff;
    cursor: pointer;
    margin-bottom: 0;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  }
  .features-toggle:hover,
  .features-toggle[aria-expanded="true"] {
    border-color: var(--accent);
    background: rgba(230, 57, 70, 0.06);
    box-shadow: 0 0 20px var(--accent-glow);
  }
  .features-toggle-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .features-toggle-left > i {
    color: var(--accent);
    font-size: 1rem;
  }
  .features-toggle-arrow {
    color: var(--accent);
    font-size: 0.85rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
  }
  .features-toggle[aria-expanded="true"] .features-toggle-arrow {
    transform: rotate(180deg);
  }
  /* ── Collapsed grid on mobile ── */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* collapsed state */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.55s ease, opacity 0.4s ease, margin-top 0.35s ease;
  }
  .features-grid.open {
    max-height: 3000px; /* large enough to fit all cards */
    opacity: 1;
    margin-top: 1rem;
  }
  /* ── Programs carousel ── */
  .prog-slider-wrap {
    overflow: hidden;
    width: 100%;        /* anchor so child % values resolve to container width */
    margin-top: 2rem;
  }
  .programs-grid {
    display: flex !important;
    width: 100%;        /* track must be 100% of wrapper so card % is correct */
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .prog-card {
    min-width: 100%;    /* 100% of wrapper = exactly one visible card */
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .prog-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.4rem;
  }
  .prog-arrow {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition), background var(--transition),
                color var(--transition), box-shadow var(--transition);
  }
  .prog-arrow:hover:not(:disabled) {
    border-color: var(--accent);
    background: rgba(230,57,70,0.1);
    color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
  }
  .prog-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
  }
  .prog-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
  .prog-dot {
    height: 6px;
    width: 6px;
    border-radius: 3px;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition);
  }
  .prog-dot.active {
    background: var(--accent);
    width: 20px;
  }

  /* ── Gallery carousel ── */
  .gal-slider-wrap {
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
  }
  .gallery-grid {
    display: flex !important;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .gal-item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    height: 260px;
    margin: 0;
    box-sizing: border-box;
  }

  /* ── Trainers carousel ── */
  .trainer-slider-outer {
    margin-top: 2rem;
  }
  .trainers-grid {
    display: flex !important;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .trainer-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
  }
  /* Arrows: absolute relative to outer, straddle the left/right edge */
  .trainer-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition),
                color var(--transition), box-shadow var(--transition);
  }
  /* Half outside on the left, half outside on the right */
  #trainerPrev {
    left: 0;
    transform: translate(-50%, -50%);
  }
  #trainerNext {
    right: 0;
    transform: translate(50%, -50%);
  }
  .trainer-arrow:hover:not(:disabled) {
    background: rgba(230, 57, 70, 0.8);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 14px var(--accent-glow);
  }
  .trainer-arrow:disabled {
    opacity: 0.18;
    cursor: not-allowed;
  }

  /* ── Reviews carousel ── */
  .testi-slider-wrap {
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
  }
  .testimonials-grid {
    display: flex !important;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .testi-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
  }
  .testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.4rem;
  }

  /* ── Membership plan tabs ── */
  .plan-tabs {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4px;
    gap: 4px;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
  }
  .plan-tab {
    flex: 1;
    padding: 0.7rem 0.4rem;
    background: transparent;
    border: none;
    border-radius: calc(var(--radius-md) - 4px);
    color: var(--text-secondary);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
  }
  .plan-tab.plan-tab-active {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 2px 14px var(--accent-glow);
  }

  /* Only the active card is visible on mobile */
  .pricing-grid {
    display: block !important;
    max-width: 100%;
    margin-top: 0;
  }
  .price-card {
    display: none;
    transform: none !important; /* kill the popular scale */
  }
  .price-card.plan-active {
    display: block;
  }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; }
  .hero-scroll-hint { display: none; }
  .cta-btns  { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 2.5rem; }
  .why-us, .facility, .programs, .trainers, .testimonials, .pricing, .contact-section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
