/* ============================================
   APEX GYM — Dark Bold Design System v2
   ============================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-elevated: #1A1A1A;
  --text-primary: #F5F5F5;
  --text-secondary: #999999;
  --text-light: #666666;
  --text-dark: #0A0A0A;
  --accent: #CCFF00;
  --accent-light: #DEFF4D;
  --accent-dark: #A3CC00;
  --accent-glow: rgba(204, 255, 0, 0.15);
  --accent-glow-strong: rgba(204, 255, 0, 0.3);
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --white: #FFFFFF;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(204, 255, 0, 0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(204,255,0,0.1);
  --shadow-glow-strong: 0 0 60px rgba(204,255,0,0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 100px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--accent); color: var(--text-dark); }

/* ---------- Typography ---------- */
.section-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-secondary); max-width: 520px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: 0.88rem; font-weight: 600;
  border-radius: var(--radius-md); transition: all var(--transition); letter-spacing: 0.02em;
}
.btn-primary { background: var(--accent); color: var(--text-dark); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border-light); color: var(--text-primary); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVBAR — Centered logo, split links
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; border-bottom: 1px solid transparent; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-bottom-color: var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; height: 72px; gap: 48px;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.14em; display: flex; align-items: center; gap: 3px;
}
.nav-logo-dot, .footer-logo-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  display: inline-block; margin-bottom: 8px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.1em; transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1.5px; background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  position: absolute; right: 24px; padding: 8px 20px; background: var(--accent);
  color: var(--text-dark); font-size: 0.78rem; font-weight: 600;
  border-radius: var(--radius-md); transition: all var(--transition);
}
.nav-cta:hover { background: var(--accent-light); box-shadow: var(--shadow-glow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; position: absolute; right: 24px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text-primary); transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-cta {
  margin-top: 16px; padding: 14px 40px; background: var(--accent);
  color: var(--text-dark) !important; font-size: 1rem !important; border-radius: var(--radius-md);
}

/* ============================================
   HERO — Text-only, centered, no image
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden; text-align: center;
  padding: 120px 0 100px; gap: 60px;
}
.hero-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  top: 20%; left: 50%; transform: translateX(-50%); filter: blur(80px);
  animation: glowPulse 4s ease-in-out infinite; pointer-events: none;
}
.hero-glow-2 {
  width: 300px; height: 300px; top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(204,255,0,0.08) 0%, transparent 70%);
  animation-delay: 2s; filter: blur(60px);
}
.hero-watermark {
  position: absolute; font-family: var(--font-heading); font-size: clamp(20vw, 28vw, 400px);
  font-weight: 700; color: rgba(255,255,255,0.02); letter-spacing: 0.05em;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
  white-space: nowrap; user-select: none;
}
.hero-center {
  position: relative; z-index: 2; max-width: 740px; padding: 0 24px;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 32px; animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 28px; animation: fadeInUp 0.8s ease 0.15s both;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 520px; margin: 0 auto 40px; animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stat { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.hero-stat-number {
  font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--accent);
}
.hero-stat-suffix {
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
}
.hero-stat-divider { width: 1px; height: 36px; background: var(--border-light); }
.hero-scroll {
  position: absolute; bottom: 24px; left: 0; right: 0;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light);
}
.hero-scroll-line {
  width: 1px; height: 32px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; background: var(--bg);
}
.marquee-track {
  display: flex; align-items: center; gap: 32px; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite; width: max-content;
}
.marquee-track span {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--text-light);
}
.marquee-dot {
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}

/* ============================================
   CLASSES — Grid
   ============================================ */
.classes { background: var(--bg-alt); }
.classes-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.classes-header-text .section-title { margin-bottom: 0; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 18px; font-size: 0.78rem; font-weight: 500;
  border-radius: var(--radius-pill); border: 1px solid var(--border-light);
  color: var(--text-secondary); background: transparent; transition: all var(--transition);
}
.filter-tab:hover { border-color: var(--accent); color: var(--text-primary); }
.filter-tab.active { background: var(--accent); color: var(--text-dark); border-color: var(--accent); font-weight: 600; }

.classes-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.class-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border); transition: all var(--transition);
}
.class-card:hover { transform: translateY(-6px); border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.class-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.class-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.class-card:hover .class-card-img img { transform: scale(1.06); }
.class-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 60%);
}
.class-card-duration {
  position: absolute; top: 14px; right: 14px; z-index: 1; padding: 5px 14px;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
  border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600;
  color: var(--accent);
}
.class-card-category {
  position: absolute; bottom: 14px; left: 14px; z-index: 1; padding: 5px 12px;
  background: var(--accent); color: var(--text-dark); border-radius: var(--radius-sm);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.class-card-content { padding: 28px; }
.class-card-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.class-card-desc {
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.class-card-meta { display: flex; align-items: center; justify-content: space-between; }
.class-card-difficulty { display: flex; gap: 4px; align-items: center; }
.difficulty-bar { width: 18px; height: 4px; border-radius: 2px; background: var(--border-light); }
.difficulty-bar.filled { background: var(--accent); }
.class-card-difficulty-label { font-size: 0.75rem; color: var(--text-light); margin-left: 8px; }

.classes-toggle-wrap {
  display: flex; justify-content: center;
  padding: 40px 24px 0;
}
.classes-toggle-btn { gap: 10px; padding: 13px 36px; }
.classes-toggle-btn svg { transition: transform var(--transition); }
.classes-toggle-btn:hover svg { transform: translateY(2px); }

/* ============================================
   BRAND STATEMENT
   ============================================ */
.brand-statement { padding: 100px 0; text-align: center; background: var(--bg); }
.brand-quote {
  font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400; line-height: 1.5; font-style: italic; max-width: 800px;
  margin: 0 auto 24px; color: var(--text-primary);
}
.brand-quote em { color: var(--accent); font-style: italic; }
.brand-line { width: 40px; height: 2px; background: var(--accent); margin: 0 auto 16px; }
.brand-author { font-size: 0.82rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================
   FACILITY BENTO GRID
   ============================================ */
.facility { background: var(--bg-alt); }
.facility-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(280px, auto);
  gap: 16px;
}
.facility-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.facility-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(80%) brightness(0.5); transition: all var(--transition-slow);
}
.facility-card:hover img { filter: grayscale(0%) brightness(0.65); transform: scale(1.04); }
.facility-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
}
.facility-card-overlay h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.facility-card-overlay p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }
.facility-card-wide { grid-column: span 2; }
.facility-card-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px; background: var(--bg-card); border: 1px solid var(--border);
}
.facility-card-text p:not(.section-tag) {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px;
}
.facility-card-text .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ============================================
   SCHEDULE
   ============================================ */
.schedule { background: var(--bg); }
.schedule-days {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 24px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
}
.schedule-days::-webkit-scrollbar { display: none; }
.schedule-day {
  padding: 10px 20px; font-size: 0.82rem; font-weight: 500;
  border-radius: var(--radius-pill); border: 1px solid var(--border-light);
  color: var(--text-secondary); background: transparent; transition: all var(--transition);
  white-space: nowrap;
}
.schedule-day:hover { border-color: var(--accent); color: var(--text-primary); }
.schedule-day.active { background: var(--accent); color: var(--text-dark); border-color: var(--accent); font-weight: 600; }

.schedule-filters {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.schedule-filter-group { display: flex; gap: 6px; flex-wrap: wrap; }
.schedule-filter-pill {
  padding: 6px 16px; font-size: 0.78rem; font-weight: 500;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  color: var(--text-light); background: transparent; transition: all var(--transition);
}
.schedule-filter-pill:hover { border-color: var(--border-light); color: var(--text-secondary); }
.schedule-filter-pill.active { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.schedule-filter-select select {
  padding: 8px 32px 8px 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); color: var(--text-secondary); font-size: 0.82rem;
  outline: none; transition: border-color var(--transition); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.schedule-filter-select select:focus { border-color: var(--accent); }

.schedule-period { margin-bottom: 32px; }
.schedule-period-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; padding-left: 4px;
}
.schedule-cards { display: flex; flex-direction: column; gap: 8px; }
.schedule-card {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 24px; align-items: center;
  padding: 20px 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: var(--radius-md);
  transition: all var(--transition);
}
.schedule-card:hover { background: var(--bg-elevated); border-color: var(--border-light); }
.schedule-card-time { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--accent); white-space: nowrap; }
.schedule-card-info { display: flex; flex-direction: column; gap: 4px; }
.schedule-card-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; }
.schedule-card-details { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--text-secondary); }
.schedule-card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }
.schedule-card-type {
  padding: 2px 8px; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--border-light); border-radius: var(--radius-sm); color: var(--text-light);
}
.schedule-card-meta { display: flex; align-items: center; gap: 16px; }
.schedule-card-difficulty { display: flex; gap: 3px; }
.schedule-card-difficulty .difficulty-bar { width: 12px; height: 3px; }
.schedule-card-spots { font-size: 0.78rem; font-weight: 500; white-space: nowrap; }
.schedule-card-spots.spots-high { color: var(--success); }
.schedule-card-spots.spots-medium { color: var(--warning); }
.schedule-card-spots.spots-low { color: var(--danger); }
.schedule-empty { text-align: center; padding: 60px 24px; color: var(--text-light); }
.schedule-empty p { font-size: 0.95rem; margin-bottom: 20px; }
.schedule-empty button {
  padding: 10px 24px; font-size: 0.85rem; font-weight: 600;
  color: var(--accent); border: 1px solid var(--accent);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.schedule-empty button:hover { background: var(--accent); color: var(--text-dark); }
.schedule-card.entering { opacity: 0; transform: translateY(10px); }
.schedule-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.3s ease, transform 0.3s ease; }

/* ============================================
   TRAINERS — Spotlight layout
   ============================================ */
.trainers { background: var(--bg-alt); }
.trainers-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.trainers-desc {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px;
}
.trainer-spotlight { margin-bottom: 24px; min-height: 120px; }
.trainer-spotlight-name {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 4px;
}
.trainer-spotlight-specialty {
  display: inline-block; padding: 4px 14px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--border-accent); border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.trainer-spotlight-bio {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px;
}
.trainer-spotlight-socials { display: flex; gap: 10px; }
.trainer-spotlight-socials a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-light); border-radius: 50%;
  color: var(--text-secondary); transition: all var(--transition);
}
.trainer-spotlight-socials a:hover { border-color: var(--accent); color: var(--accent); }
.trainer-nav { display: flex; align-items: center; gap: 12px; }
.trainer-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-light); background: transparent;
  color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.trainer-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.trainer-nav-counter {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.05em;
}
.trainer-nav-counter span { color: var(--accent); }

.trainer-image-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4;
  width: 100%; min-height: 400px;
}
.trainer-spotlight-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.35s ease;
}
.trainer-spotlight-img.active {
  opacity: 1;
}
.trainer-image-number {
  position: absolute; bottom: 20px; right: 24px;
  font-family: var(--font-heading); font-size: 6rem; font-weight: 700;
  color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none;
}
.trainer-image-wrap .trainer-socials-overlay {
  position: absolute; bottom: 20px; left: 20px; display: flex; gap: 8px;
}
.trainer-socials-overlay a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-light); border-radius: 50%;
  color: var(--text-primary); transition: all var(--transition);
}
.trainer-socials-overlay a:hover { background: var(--accent); color: var(--text-dark); border-color: var(--accent); }

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 32px;
  position: relative; transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.highlighted { border-color: var(--accent); box-shadow: var(--shadow-glow); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; background: var(--accent); color: var(--text-dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: var(--radius-pill); white-space: nowrap;
}
.pricing-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.pricing-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text-secondary); }
.pricing-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; }
.pricing-period { font-size: 0.85rem; color: var(--text-light); }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--text-secondary); }
.pricing-feature svg { color: var(--accent); flex-shrink: 0; }
.pricing-cta {
  display: block; width: 100%; padding: 14px; text-align: center;
  font-size: 0.88rem; font-weight: 600; border-radius: var(--radius-md);
  transition: all var(--transition);
}
.pricing-cta.cta-outlined { border: 1.5px solid var(--border-light); color: var(--text-primary); }
.pricing-cta.cta-outlined:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.pricing-cta.cta-filled { background: var(--accent); color: var(--text-dark); }
.pricing-cta.cta-filled:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* ============================================
   REVIEWS — Static 2x2 Grid
   ============================================ */
.reviews { background: var(--bg-alt); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition);
}
.review-card:hover { border-color: var(--border-accent); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { color: var(--accent); }
.review-text {
  font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-accent); }
.review-author-info { text-align: left; }
.review-author-name { font-weight: 600; font-size: 0.88rem; }
.review-author-role { font-size: 0.75rem; color: var(--text-light); }

/* ============================================
   CONTACT — Centered + horizontal form
   ============================================ */
.contact { background: var(--bg); }
.contact-centered { text-align: center; margin-bottom: 48px; }
.contact-centered .section-title { margin-bottom: 16px; }
.contact-text { font-size: 0.95rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.contact-wrapper {
  max-width: 900px; margin: 0 auto; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-top-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-bottom-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.form-group label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light);
}
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  color: var(--text-primary); outline: none; transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select {
  appearance: none; padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.form-submit {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 28px;
  background: var(--accent); color: var(--text-dark); font-size: 0.85rem;
  font-weight: 600; border: none; border-radius: var(--radius-md);
  transition: all var(--transition); white-space: nowrap; flex-shrink: 0;
}
.form-submit:hover { background: var(--accent-light); box-shadow: var(--shadow-glow); }
.contact-info-row {
  display: flex; justify-content: center; gap: 32px; margin-top: 24px; flex-wrap: wrap;
}
.contact-detail { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-light); }
.contact-detail svg { color: var(--accent); flex-shrink: 0; }

/* ============================================
   FOOTER — Minimal centered
   ============================================ */
.footer { background: #050505; padding: 48px 0; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.12em; display: inline-flex; align-items: center; gap: 3px;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 0.8rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-nav a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-light); border-radius: 50%;
  color: var(--text-secondary); transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: var(--text-light); transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* ============================================
   MODALS (shared)
   ============================================ */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; }
.modal-overlay.closing { opacity: 0; }

.modal {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto; scrollbar-width: thin;
  transform: translateY(20px) scale(0.97); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-overlay.closing .modal { transform: translateY(20px) scale(0.97); }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 10, 0.7); backdrop-filter: blur(8px);
  border-radius: 50%; color: var(--text-primary);
  transition: all var(--transition);
}
.modal-close:hover { background: var(--accent); color: var(--text-dark); }

/* ── Class Detail Modal ── */
.class-modal-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.class-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.class-modal-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
}
.class-modal-img .class-card-duration { top: 16px; left: 16px; right: auto; }
.class-modal-img .class-card-category { bottom: 16px; left: 16px; }

.class-modal-body { padding: 28px 32px 32px; }
.class-modal-name {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
  margin-bottom: 12px;
}
.class-modal-tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.class-modal-tag {
  padding: 4px 12px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid var(--border-light); border-radius: var(--radius-pill);
  color: var(--text-secondary);
}
.class-modal-desc {
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px;
}
.class-modal-difficulty { margin-bottom: 24px; }
.class-modal-diff-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; display: block;
}
.class-modal-diff-bars { display: flex; gap: 6px; }
.difficulty-bar-lg {
  width: 40px; height: 6px; border-radius: 3px; background: var(--border-light);
}
.difficulty-bar-lg.filled { background: var(--accent); }

.class-modal-section-title {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; display: block;
}
.class-modal-trainers { margin-bottom: 24px; }
.class-modal-trainer-list { display: flex; flex-direction: column; gap: 10px; }
.class-modal-trainer {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; background: var(--bg-elevated); border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.class-modal-trainer img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-accent);
}
.class-modal-trainer-name { font-weight: 600; font-size: 0.88rem; display: block; }
.class-modal-trainer-spec { font-size: 0.75rem; color: var(--text-light); }

.class-modal-schedule { margin-bottom: 28px; }
.class-modal-session-list { display: flex; flex-direction: column; gap: 6px; }
.class-modal-session {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 14px; background: var(--bg-elevated); border-radius: var(--radius-md);
  border: 1px solid var(--border); font-size: 0.85rem;
}
.class-modal-session-day { font-weight: 600; min-width: 36px; }
.class-modal-session-time { color: var(--accent); font-weight: 600; font-family: var(--font-heading); }
.class-modal-session-spots { margin-left: auto; font-size: 0.78rem; font-weight: 500; }

.class-modal-cta { width: 100%; justify-content: center; }

/* ── Booking Modal ── */
.booking-modal-header {
  display: flex; align-items: center; gap: 14px;
  padding: 28px 32px 0;
}
.booking-modal-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: var(--radius-md); color: var(--accent);
}
.booking-modal-title {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
}
.booking-modal-body { padding: 24px 32px 32px; }

.booking-modal-class {
  display: flex; align-items: center; gap: 16px;
  padding: 14px; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 24px;
}
.booking-modal-img {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0;
}
.booking-modal-class-info h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px;
}
.booking-modal-category {
  padding: 3px 10px; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--accent); color: var(--text-dark); border-radius: var(--radius-sm);
}

.booking-modal-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.booking-detail {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.booking-detail svg { color: var(--accent); flex-shrink: 0; }
.booking-detail-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light); display: block;
}
.booking-detail-value { font-size: 0.88rem; font-weight: 600; display: block; }

.booking-modal-spots {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.booking-spots-count {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
}
.booking-spots-label { font-size: 0.85rem; color: var(--text-secondary); }

.booking-btn { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; }
.booked-btn { background: var(--success); cursor: default; }
.booked-btn:hover { background: var(--success); transform: none; box-shadow: none; }

.booking-modal-note {
  text-align: center; font-size: 0.72rem; color: var(--text-light);
  margin-top: 12px; font-style: italic;
}

/* ── Class card clickable cursor ── */
.class-card[data-class-id] { cursor: pointer; }

/* ── Schedule Card Booked State ── */
.schedule-card-booked {
  border-color: var(--accent) !important;
  border-left-color: var(--accent) !important;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.12), inset 0 0 20px rgba(204, 255, 0, 0.03);
}
.schedule-card-booked-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; font-size: 0.78rem; font-weight: 700;
  color: var(--accent); background: var(--accent-glow);
  border: 1px solid var(--border-accent); border-radius: var(--radius-pill);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ── Epic Booking Animation ── */
.schedule-card.booking-animate {
  position: relative; overflow: visible; z-index: 10;
  animation: bookedPulse 0.8s ease;
}

.booking-flash {
  position: absolute; inset: -2px; border-radius: var(--radius-md);
  background: var(--accent); opacity: 0;
  animation: flashBurst 0.6s ease forwards;
  pointer-events: none;
}

.booking-stamp {
  position: absolute; inset: 0; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; z-index: 20; pointer-events: none;
  background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(6px);
  animation: stampBgIn 0.3s ease forwards, stampBgOut 0.4s ease 1.6s forwards;
}
.booking-stamp svg {
  width: 52px; height: 52px; color: var(--accent);
  filter: drop-shadow(0 0 24px rgba(204, 255, 0, 0.9));
  animation: stampCheckIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
}
.booking-stamp span {
  font-size: 0.82rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.35em; text-transform: uppercase;
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
  animation: stampTextIn 0.4s ease 0.4s both;
}

.booking-particles {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 15;
}
.booking-particle {
  position: absolute; width: var(--size); height: var(--size);
  background: var(--accent); border-radius: 50%;
  animation: particleBurst 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) var(--delay) both;
}

.booking-ring {
  position: absolute; top: 50%; left: 50%;
  width: 20px; height: 20px;
  border: 2px solid var(--accent); border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringExpand 0.7s ease-out 0.1s both;
  pointer-events: none; z-index: 14;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.6; scale: 1; } 50% { opacity: 1; scale: 1.1; } }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollLine { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; } }

/* Booking animations */
@keyframes bookedPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
  20% { transform: scale(1.03); box-shadow: 0 0 40px rgba(204, 255, 0, 0.4); }
  40% { transform: scale(0.98); }
  60% { transform: scale(1.01); box-shadow: 0 0 60px rgba(204, 255, 0, 0.2); }
  100% { transform: scale(1); box-shadow: 0 0 20px rgba(204, 255, 0, 0.12); }
}
@keyframes flashBurst {
  0% { opacity: 0; }
  15% { opacity: 0.35; }
  100% { opacity: 0; }
}
@keyframes stampBgIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes stampBgOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes stampCheckIn {
  0% { opacity: 0; transform: scale(3) rotate(-15deg); }
  60% { opacity: 1; transform: scale(0.85) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes stampTextIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes particleBurst {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}
@keyframes ringExpand {
  0% { width: 20px; height: 20px; opacity: 1; border-width: 3px; }
  100% { width: 250px; height: 250px; opacity: 0; border-width: 1px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .facility-grid { grid-auto-rows: minmax(240px, auto); }
  .trainers-layout { gap: 48px; }
  .pricing-grid { gap: 16px; }
  .pricing-card { padding: 32px 24px; }
  .form-bottom-row { grid-template-columns: 1fr 1fr auto; }
  .classes-scroll { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-container { justify-content: space-between; gap: 0; }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 80px; gap: 40px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  .hero-stats {
    display: grid; grid-template-columns: repeat(2, auto); gap: 16px 40px;
    justify-content: center;
  }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-stat-suffix { font-size: 0.82rem; }
  .hero-stat-divider { display: none; }
  .hero-watermark { font-size: 40vw; top: 50%; }
  .hero-scroll { position: relative; bottom: auto; left: auto; right: auto; }
  .hero-glow { width: 300px; height: 300px; }

  /* Marquee */
  .marquee { overflow: hidden; }
  .marquee-track { animation-duration: 15s; }

  /* Classes */
  .classes-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .classes-scroll { grid-template-columns: 1fr; gap: 20px; }
  .filter-tabs-wrap {
    position: relative; width: calc(100% + 48px); margin-left: -24px; margin-right: -24px;
  }
  .filter-tabs-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 32px;
    background: linear-gradient(to right, var(--bg-alt), transparent);
    pointer-events: none; z-index: 1;
  }
  .filter-tabs-wrap::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 32px;
    background: linear-gradient(to left, var(--bg-alt), transparent);
    pointer-events: none; z-index: 1;
  }
  .filter-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; flex-wrap: nowrap; padding: 4px 32px; max-width: 100%; }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { white-space: nowrap; flex-shrink: 0; }

  /* Facility */
  .facility-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(220px, auto); }
  .facility-card-wide { grid-column: auto; }

  /* Schedule */
  .schedule-days-wrap {
    position: relative; margin: 0 -24px 24px;
  }
  .schedule-days-wrap::before,
  .schedule-days-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 32px;
    pointer-events: none; z-index: 1;
  }
  .schedule-days-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .schedule-days-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
  .schedule-days { justify-content: flex-start; margin-bottom: 0; padding: 4px 32px; }
  .schedule-filters { flex-direction: column; align-items: flex-start; }
  .schedule-filter-group-wrap {
    position: relative; width: calc(100% + 48px); margin-left: -24px; margin-right: -24px;
  }
  .schedule-filter-group-wrap::before,
  .schedule-filter-group-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 32px;
    pointer-events: none; z-index: 1;
  }
  .schedule-filter-group-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .schedule-filter-group-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
  .schedule-filter-group { overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; width: 100%; padding: 4px 32px; }
  .schedule-filter-group::-webkit-scrollbar { display: none; }
  .schedule-filter-pill { white-space: nowrap; flex-shrink: 0; }
  .schedule-filter-select { width: 100%; }
  .schedule-filter-select select { width: 100%; }
  .schedule-card { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
  .schedule-card-meta { justify-content: flex-start; gap: 12px; }

  /* Trainers */
  .trainers-layout { grid-template-columns: 1fr; }
  .trainer-image-wrap { max-width: 400px; margin: 0 auto; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.highlighted { order: -1; }

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

  /* Contact */
  .form-top-row { grid-template-columns: 1fr; }
  .form-bottom-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; }
  .contact-info-row { flex-direction: column; align-items: center; gap: 12px; }
  .contact-wrapper { padding: 24px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Modals */
  .modal-overlay { padding: 16px; }
  .modal { max-height: 85vh; }
  .class-modal-body { padding: 24px 20px 28px; }
  .booking-modal-header { padding: 24px 20px 0; }
  .booking-modal-body { padding: 20px 20px 28px; }
  .booking-modal-details { grid-template-columns: 1fr; }
}
