/* =========================================================
   FITGENIE — Premium Gym Landing Page
   Theme is driven by <body class="{{ theme_name }}"> coming
   straight from the website_settings table. Possible values:

   default | fitgenie_dark | power_red | gold_premium |
   orange_energy | modern_blue | purple_beast | light_clean

   Compatibility aliases are also supported:
   dark | red | gold | orange | blue | purple | light

   Each theme below overrides the CSS custom-properties from :root,
   so every component re-skins automatically — zero JS required.
   ========================================================= */

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

/* ---------------------------------------------------------
   THEME TOKENS — Default (Gym Neon)
--------------------------------------------------------- */
:root {
  --primary-color: #d8ff36;
  --primary-rgb: 216, 255, 54;
  --secondary-color: #ffffff;
  --bg-dark: #0b0b0b;
  --bg-light: #f5f5f5;
  --text-light: #ffffff;
  --text-dark: #0b0b0b;
  --card-bg: #131313;
  --card-bg-2: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.08);
  --button-bg: var(--primary-color);
  --button-text: #0b0b0b;
  --section-bg: #ffffff;
  --heading-color: #0b0b0b;
  --accent-bg: #f4ece0;
  --hero-overlay-1: rgba(0, 0, 0, 0.95);
  --hero-overlay-2: rgba(0, 0, 0, 0.6);
  --hero-overlay-3: rgba(0, 0, 0, 0.2);

  --neon: var(--primary-color);
  --neon-glow: rgba(var(--primary-rgb), 0.45);
  --dark: var(--bg-dark);
  --dark-2: var(--card-bg);
  --dark-3: var(--card-bg-2);
  --light: var(--bg-light);
  --beige: var(--accent-bg);
  --text-muted: #6b6b6b;
  --border-dark: var(--border-color);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --pill: 999px;
  --container: 1240px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --theme-transition: background-color 0.45s ease, color 0.45s ease,
    border-color 0.45s ease, box-shadow 0.45s ease;
  --font-head: "Anton", "Barlow Condensed", sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------------------------------------------------------
   THEME VARIANTS — body class selectors
   Match the values stored in website_settings.theme_name.
--------------------------------------------------------- */

/* default: keeps :root tokens (Gym Neon) */
body.default,
body[data-theme="default"],
[data-theme="default"] body {
  /* inherits :root */
}

body.fitgenie_dark,
body.dark,
html.fitgenie_dark,
html.dark,
html[data-theme="dark"],
body[data-theme="dark"],
[data-theme="dark"] body,
html.fitgenie_dark body,
html.dark body {
  --primary-color: #d8ff36;
  --primary-rgb: 216, 255, 54;
  --bg-dark: #071b22;
  --card-bg: #0c2730;
  --card-bg-2: #103342;
  --accent-bg: #ddebef;
}

body.power_red,
body.red,
html.power_red,
html.red,
html[data-theme="red"],
body[data-theme="red"],
[data-theme="red"] body,
html.power_red body,
html.red body {
  --primary-color: #ff2a3d;
  --primary-rgb: 255, 42, 61;
  --bg-dark: #0a0303;
  --card-bg: #170707;
  --card-bg-2: #1f0a0a;
  --accent-bg: #f5e6e6;
}

body.modern_blue,
body.blue,
html.modern_blue,
html.blue,
html[data-theme="blue"],
body[data-theme="blue"],
[data-theme="blue"] body,
html.modern_blue body,
html.blue body {
  --primary-color: #00d4ff;
  --primary-rgb: 0, 212, 255;
  --bg-dark: #050d1a;
  --card-bg: #0a1929;
  --card-bg-2: #102438;
  --accent-bg: #e3f1fa;
}

body.gold_premium,
body.gold,
html.gold_premium,
html.gold,
html[data-theme="gold"],
body[data-theme="gold"],
[data-theme="gold"] body,
html.gold_premium body,
html.gold body {
  --primary-color: #ffc83a;
  --primary-rgb: 255, 200, 58;
  --bg-dark: #0c0905;
  --card-bg: #1a1409;
  --card-bg-2: #221a0c;
  --accent-bg: #f5ecd9;
}

body.orange_energy,
body.orange,
html.orange_energy,
html.orange,
html[data-theme="orange"],
body[data-theme="orange"],
[data-theme="orange"] body,
html.orange_energy body,
html.orange body {
  --primary-color: #ff7a1a;
  --primary-rgb: 255, 122, 26;
  --bg-dark: #120703;
  --card-bg: #1f0d05;
  --card-bg-2: #2a1308;
  --accent-bg: #f8e8dc;
}

body.purple_beast,
body.purple,
html.purple_beast,
html.purple,
html[data-theme="purple"],
body[data-theme="purple"],
[data-theme="purple"] body,
html.purple_beast body,
html.purple body {
  --primary-color: #b347ff;
  --primary-rgb: 179, 71, 255;
  --bg-dark: #0a0414;
  --card-bg: #150a20;
  --card-bg-2: #1d1029;
  --accent-bg: #ede1f5;
}

body.light_clean,
body.light,
html.light_clean,
html.light,
html[data-theme="light"],
body[data-theme="light"],
[data-theme="light"] body,
html.light_clean body,
html.light body {
  --primary-color: #d8ff36;
  --primary-rgb: 216, 255, 54;
  --secondary-color: #0b0b0b;
  --bg-dark: #f1f3f5;
  --bg-light: #ffffff;
  --text-light: #0b0b0b;
  --text-dark: #0b0b0b;
  --card-bg: #ffffff;
  --card-bg-2: #f7f7f7;
  --border-color: rgba(0, 0, 0, 0.1);
  --section-bg: #ffffff;
  --heading-color: #0b0b0b;
  --accent-bg: #f6f1e8;
  --hero-overlay-1: rgba(0, 0, 0, 0.85);
  --hero-overlay-2: rgba(0, 0, 0, 0.5);
  --hero-overlay-3: rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------
   LIGHT-THEME OVERRIDES
   Dark surfaces need to flip text to dark for legibility.
--------------------------------------------------------- */
body.light_clean .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
body.light_clean .navbar.scrolled .nav-menu a,
body.light_clean .navbar.scrolled .logo,
body.light_clean .navbar.scrolled .nav-socials a {
  color: #0b0b0b;
}
body.light_clean .navbar.scrolled .nav-socials a {
  border-color: rgba(0, 0, 0, 0.15);
}
body.light_clean .coaches,
body.light_clean .pricing,
body.light_clean .testimonials,
body.light_clean .fitness-banner,
body.light_clean .instagram {
  color: #0b0b0b;
}
body.light_clean .coaches p,
body.light_clean .pricing p,
body.light_clean .testimonials p {
  color: rgba(0, 0, 0, 0.7);
}
body.light_clean .marquee-track { color: #0b0b0b; }
body.light_clean .testimonial-card p { color: rgba(0, 0, 0, 0.8); }
body.light_clean .testimonial-user h5 { color: #0b0b0b; }
body.light_clean .testimonial-user span { color: rgba(0, 0, 0, 0.6); }
body.light_clean .testimonial-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
}
body.light_clean .fee-row .duration { color: #0b0b0b; }
body.light_clean .footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.7);
}
body.light_clean .footer .footer-col h5,
body.light_clean .footer .footer-logo {
  color: #fff;
}

/* data-theme compatibility for the legacy switcher system. */
[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .navbar.scrolled .nav-menu a,
[data-theme="light"] .navbar.scrolled .logo,
[data-theme="light"] .navbar.scrolled .nav-socials a {
  color: #0b0b0b;
}
[data-theme="light"] .navbar.scrolled .nav-socials a {
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .coaches,
[data-theme="light"] .pricing,
[data-theme="light"] .testimonials,
[data-theme="light"] .fitness-banner,
[data-theme="light"] .instagram {
  color: #0b0b0b;
}
[data-theme="light"] .coaches p,
[data-theme="light"] .pricing p,
[data-theme="light"] .testimonials p,
[data-theme="light"] .price-card ul li,
[data-theme="light"] .price span {
  color: rgba(0, 0, 0, 0.7);
}
[data-theme="light"] .marquee-track,
[data-theme="light"] .testimonial-user h5,
[data-theme="light"] .price,
[data-theme="light"] .fee-row .duration {
  color: #0b0b0b;
}
[data-theme="light"] .testimonial-card p {
  color: rgba(0, 0, 0, 0.8);
}
[data-theme="light"] .testimonial-user span {
  color: rgba(0, 0, 0, 0.6);
}
[data-theme="light"] .testimonial-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
}
[data-theme="light"] .footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.7);
}
[data-theme="light"] .footer .footer-col h5,
[data-theme="light"] .footer .footer-logo {
  color: #fff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -----------------------------
   LAYOUT HELPERS
----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--neon); }
.eyebrow-dark  { color: #0b0b0b; opacity: 0.6; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.section-title.light { color: #fff; }
.section-title.dark  { color: var(--dark); }
.text-neon            { color: var(--neon); }

/* -----------------------------
   BUTTONS
----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--pill);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn i { transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(4px); }

.btn-primary { background: var(--neon); color: var(--dark); }
.btn-primary:hover {
  filter: brightness(0.92);
  box-shadow: 0 10px 30px var(--neon-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  background: var(--neon);
  color: var(--dark);
  border-color: var(--neon);
}

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover {
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* -----------------------------
   LOGO
----------------------------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--dark);
  font-size: 20px;
  transform: rotate(-8deg);
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: 1;
}
.logo-top    { font-size: 20px; letter-spacing: 1px; }
.logo-bottom { font-size: 12px; color: var(--neon); letter-spacing: 4px; }

/* -----------------------------
   NAVBAR
----------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.navbar .logo { color: #fff; }

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-menu a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  padding: 6px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--neon);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--neon); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-socials { display: flex; gap: 8px; }
.nav-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  transition: all 0.3s;
}
.nav-socials a:hover {
  background: var(--neon);
  color: var(--dark);
  border-color: var(--neon);
  transform: translateY(-3px);
}

.nav-cta { padding: 10px 22px; font-size: 13px; }

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg)  translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* -----------------------------
   HERO
----------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-overlay-1) 10%, var(--hero-overlay-2) 50%, var(--hero-overlay-3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 140px 24px 80px; }
.hero-content { max-width: 640px; }

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 22px;
}
.hero-pretitle .bar { width: 40px; height: 2px; background: var(--neon); }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(54px, 9vw, 63px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 14px; color: var(--neon); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* -----------------------------
   CLASSES
----------------------------- */
.classes { background: #fff; padding: 110px 0; }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 18px;
}
.class-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.class-card.big  { grid-column: span 2; grid-row: span 2; }
.class-card.wide { grid-column: span 2; }
.class-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.class-card:hover img { transform: scale(1.08); }
.class-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}
.class-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.class-overlay {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.class-overlay h3 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
.class-overlay .arrow {
  width: 40px;
  height: 40px;
  background: var(--neon);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  transform: translateY(10px);
  opacity: 0;
}
.class-card:hover .arrow { transform: translateY(0); opacity: 1; }

/* -----------------------------
   COACHES
----------------------------- */
.coaches {
  background: var(--dark);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.coaches::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  opacity: 0.15;
  pointer-events: none;
}
.coaches-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coaches-images { position: relative; height: 420px; }

.coach-bubble {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}
.coach-bubble img { width: 100%; height: 100%; object-fit: cover; }
.coach-bubble:hover { transform: scale(1.06) translateY(-4px); border-color: var(--neon); }

.bubble-1 { width: 180px; height: 180px; top: 30px;  left: 30px;  z-index: 3; }
.bubble-2 { width: 150px; height: 150px; top: 0;     left: 220px; z-index: 2; }
.bubble-3 { width: 200px; height: 200px; bottom: 30px; left: 110px; z-index: 4; border: 4px solid var(--neon); }
.bubble-4 { width: 140px; height: 140px; top: 120px; left: 330px; z-index: 1; }

.coach-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
}
.coaches-content { position: relative; z-index: 2; }
.coaches-content .section-title { margin-bottom: 24px; }
.coaches-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

/* -----------------------------
   WHY CHOOSE US
----------------------------- */
.why-choose { background: var(--neon); padding: 100px 0 120px; position: relative; }
.why-choose .eyebrow-dark { color: rgba(0, 0, 0, 0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.why-card { text-align: center; padding: 20px 10px; transition: transform 0.4s ease; }
.why-card:hover { transform: translateY(-10px); }

.why-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 24px;
  border: 4px solid var(--dark);
  position: relative;
  transition: all 0.4s ease;
}
.why-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px dashed rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.why-card:hover .why-icon {
  transform: rotate(360deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }

.why-card h4 {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 400;
}
.why-card p { color: rgba(0, 0, 0, 0.7); font-size: 14px; line-height: 1.6; }

/* -----------------------------
   MARQUEE
----------------------------- */
.fitness-banner {
  background: var(--dark);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.marquee { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
.marquee-track em { color: var(--neon); font-style: normal; }
.marquee-track i  { color: var(--neon); font-size: 20px; }

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -----------------------------
   AMENITIES
----------------------------- */
.amenities { background: #fff; padding: 110px 0; }
.amenities-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.amenities-content .section-title { margin-bottom: 36px; }
.amenities-list { display: flex; flex-direction: column; gap: 14px; }
.amenities-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: transform 0.3s;
}
.amenities-list li:hover { transform: translateX(6px); }

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.amenities-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 460px;
}
.amenities-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.amenities-media:hover img { transform: scale(1.04); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 var(--neon-glow);
  animation: pulse 2s infinite;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   var(--neon-glow); }
  70%  { box-shadow: 0 0 0 24px rgba(var(--primary-rgb), 0); }
  100% { box-shadow: 0 0 0 0   rgba(var(--primary-rgb), 0); }
}

/* -----------------------------
   PRICING
----------------------------- */
.pricing {
  background: var(--bg-dark);
  padding: 110px 0;
  color: var(--text-light);
}
.membership-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.membership-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 18px;
}
.membership-title .accent { color: var(--primary-color); display: block; }

.membership-sub {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--text-light) 65%, transparent);
  max-width: 520px;
  margin: 0 auto;
}

.membership-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  margin: 28px auto 48px;
  max-width: 880px;
}
.membership-features li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--text-light) 75%, transparent);
}
.membership-features li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--button-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.membership-tabs {
  width: fit-content;
  max-width: 100%;
  margin: -18px auto 28px;
  padding: 5px;
  display: flex;
  gap: 5px;
  background: color-mix(in srgb, var(--card-bg) 84%, transparent);
  border: 1px solid var(--border-color);
  border-radius: var(--pill);
}
.membership-tab {
  min-width: 118px;
  height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: color-mix(in srgb, var(--text-light) 72%, transparent);
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: var(--theme-transition), transform 0.25s ease;
}
.membership-tab:hover {
  color: var(--text-light);
  transform: translateY(-1px);
}
.membership-tab.active,
.membership-tab[aria-selected="true"] {
  background: var(--primary-color);
  color: var(--button-text);
  box-shadow: 0 12px 28px var(--neon-glow);
}

.membership-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.membership-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--primary-color) 50%, transparent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35),
              0 0 0 1px color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.membership-panel[hidden] { display: none; }

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.25s ease;
}
.fee-row:last-child { border-bottom: none; }
.fee-row:hover {
  background: color-mix(in srgb, var(--primary-color) 6%, transparent);
}
.fee-row-empty {
  justify-content: center;
  min-height: 72px;
}
.fee-row-empty .duration {
  color: color-mix(in srgb, var(--text-light) 58%, transparent);
}

.fee-row .duration {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--primary-color) 18%, transparent);
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
}

.fee-row .fee-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}
.fee-row .strike {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--text-light) 45%, transparent);
  font-size: 14px;
  font-weight: 500;
}
.membership-cta { text-align: center; margin-top: 36px; }
.membership-cta .btn { padding: 14px 36px; font-weight: 700; letter-spacing: 1px; }

/* -----------------------------
   TEAM
----------------------------- */
.team { background: #fff; padding: 110px 0; }
.team-slider-wrap { position: relative; }

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover img { transform: scale(1.06); }

.team-info { padding: 24px 20px; text-align: center; position: relative; }
.team-info h4 {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 400;
}
.team-info p {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s;
}
.team-socials a:hover { background: var(--neon); color: var(--dark); }

.slider-arrow {
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s;
}
.slider-arrow:hover { background: var(--neon); color: var(--dark); }
.team-prev { left: -25px; }
.team-next { right: -25px; }

/* -----------------------------
   ABOUT
----------------------------- */
.about { background: var(--beige); padding: 110px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { border-radius: var(--radius-md); overflow: hidden; }
.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-media:hover img { transform: scale(1.04); }
.about-content .section-title { margin-bottom: 24px; }
.about-content p { font-size: 16px; line-height: 1.8; color: #333; margin-bottom: 18px; }
.about-content p.muted { color: var(--text-muted); margin-bottom: 32px; }

/* -----------------------------
   TESTIMONIALS
----------------------------- */
.testimonials { background: var(--dark); color: #fff; padding: 110px 0; }
.testimonial-slider-wrap { max-width: 1100px; margin: 0 auto; position: relative; }

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
  height: 100%;
  transition: all 0.4s ease;
}
.swiper-slide-active .testimonial-card {
  background: var(--neon);
  color: var(--dark);
  border-color: var(--neon);
  box-shadow: 0 20px 50px var(--neon-glow);
}
.swiper-slide-active .testimonial-card .quote,
.swiper-slide-active .testimonial-card .testimonial-user span {
  color: var(--dark);
  opacity: 0.7;
}
.swiper-slide-active .testimonial-card .testimonial-user h5 { color: var(--dark); }

.testimonial-card .quote {
  font-size: 36px;
  color: var(--neon);
  opacity: 0.3;
  position: absolute;
  top: 30px;
  right: 36px;
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.85);
}
.swiper-slide-active .testimonial-card p { color: var(--dark); }

.testimonial-user { display: flex; align-items: center; gap: 14px; }
.testimonial-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon);
}
.swiper-slide-active .testimonial-user img { border-color: var(--dark); }

.testimonial-user h5 {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}
.testimonial-user span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-pagination {
  text-align: center;
  margin-top: 36px;
  position: relative !important;
  bottom: auto !important;
}
.testimonial-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 10px;
  height: 10px;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--neon);
  width: 30px;
  border-radius: 5px;
}

/* -----------------------------
   FAQ
----------------------------- */
.faq { background: var(--beige); padding: 110px 0; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}
.faq-item[open] {
  border-color: color-mix(in srgb, var(--primary-color) 50%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  color: var(--text-dark);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 22px 0; }
.faq-answer p { color: #444; font-size: 15px; line-height: 1.7; }

/* -----------------------------
   GALLERY
----------------------------- */
.gallery { background: #fff; padding: 110px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.85); }

/* -----------------------------
   CONTACT
----------------------------- */
.contact { background: var(--neon); padding: 110px 0; }
.contact .eyebrow-dark { color: rgba(0, 0, 0, 0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--dark);
  color: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-md);
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row > i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info-row h6 {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 4px;
}
.contact-info-row p,
.contact-info-row a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  word-break: break-word;
}
.contact-info-row a:hover { color: var(--neon); }

.contact-form { max-width: none; margin: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-row:has(.full) { grid-template-columns: 1fr; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 22px;
  border: 2px solid var(--dark);
  background: transparent;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: all 0.3s;
}
.form-group textarea { border-radius: 18px; resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0, 0, 0, 0.5); }
.form-group input:focus,
.form-group textarea:focus {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--dark);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c20000;
  background: rgba(194, 0, 0, 0.05);
}

.error {
  display: block;
  color: #c20000;
  font-size: 12px;
  margin-top: 6px;
  padding-left: 22px;
  min-height: 16px;
}
.form-submit  { text-align: center; margin-top: 14px; }
.form-success {
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
  color: #064c00;
  display: none;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-map {
  margin-top: 50px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* -----------------------------
   INSTAGRAM
----------------------------- */
.instagram { background: var(--dark); }
.ig-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.ig-item { position: relative; display: block; height: 220px; overflow: hidden; }
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}
.ig-item:hover img { transform: scale(1.1); filter: brightness(1); }

.ig-item.center-tag .ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: color-mix(in srgb, var(--primary-color) 85%, transparent);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  z-index: 2;
}
.ig-item.center-tag .ig-overlay i { font-size: 32px; }

/* -----------------------------
   FOOTER
----------------------------- */
.footer { background: #050505; color: rgba(255, 255, 255, 0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-logo  { color: #fff; margin-bottom: 22px; }
.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-col h5 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--neon);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}
.footer-col ul li a:hover { color: var(--neon); padding-left: 6px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.contact-list li i { color: var(--neon); font-size: 13px; margin-top: 5px; }
.contact-list li a { transition: color 0.3s; }
.contact-list li a:hover { color: var(--neon); }

.newsletter { position: relative; margin: 18px 0 22px; }
.newsletter input {
  width: 100%;
  padding: 12px 50px 12px 18px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--pill);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter input:focus { border-color: var(--neon); }

.newsletter button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.newsletter button:hover { filter: brightness(0.92); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--neon);
  color: var(--dark);
  border-color: var(--neon);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* -----------------------------
   BACK TO TOP
----------------------------- */
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 10px 30px var(--neon-glow);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { filter: brightness(0.92); transform: translateY(-4px); }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
  .container { padding: 0 28px; }
  .nav-menu ul { gap: 26px; }
  .coaches-inner,
  .amenities-inner,
  .about-inner { gap: 50px; }
}

@media (max-width: 992px) {
  section { padding: 80px 0; }

  .hamburger    { display: flex; }
  .nav-cta      { display: none; }
  .nav-socials  { display: none; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark);
    padding: 90px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }
  .nav-menu.open { right: 0; }
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .nav-menu a { font-size: 16px; }

  .hero-scroll { display: none; }

  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px;
  }
  .class-card.big,
  .class-card.wide { grid-column: span 2; grid-row: span 1; }

  .coaches-inner { grid-template-columns: 1fr; gap: 60px; }
  .coaches-images { height: 380px; max-width: 500px; margin: 0 auto; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }

  .amenities-inner { grid-template-columns: 1fr; gap: 50px; }

  .membership-card { max-width: 540px; }
  .membership-tabs { margin-top: -12px; }
  .fee-row { padding: 16px 22px; }
  .membership-features { gap: 12px 24px; }

  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-media img { height: 380px; }

  .team-prev { left: 10px; }
  .team-next { right: 10px; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 30px; }

  .ig-strip { grid-template-columns: repeat(3, 1fr); }
  .ig-item:nth-child(4),
  .ig-item:nth-child(5) { display: none; }

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .hero-inner { padding: 120px 20px 60px; }
  .hero-title { letter-spacing: 1px; }
  .hero-desc  { font-size: 15px; }
  .hero-cta   { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .classes-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .class-card.big,
  .class-card.wide { grid-column: span 1; grid-row: span 1; }

  .coaches-images { height: 340px; }
  .bubble-1 { width: 130px; height: 130px; left: 0; }
  .bubble-2 { width: 110px; height: 110px; left: 140px; }
  .bubble-3 { width: 150px; height: 150px; left: 70px; bottom: 0; }
  .bubble-4 { width: 100px; height: 100px; left: 230px; top: 90px; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-icon { width: 100px; height: 100px; font-size: 36px; }

  .amenities-media { height: 360px; }

  .team-prev, .team-next {
    top: auto;
    bottom: -30px;
    position: absolute;
  }
  .team-prev { left: calc(50% - 60px); }
  .team-next { right: calc(50% - 60px); }
  .team-slider-wrap { padding-bottom: 50px; }

  .about-media img { height: 320px; }

  .membership-tabs {
    width: 100%;
    margin-bottom: 22px;
  }
  .membership-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 12px;
  }
  .fee-row { padding: 14px 18px; flex-wrap: wrap; }
  .fee-row .duration { font-size: 14px; }
  .fee-row .fee-price { font-size: 15px; }
  .membership-features { gap: 10px 18px; }
  .membership-features li { font-size: 12px; }

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

  .form-row { grid-template-columns: 1fr; }

  .ig-strip { grid-template-columns: repeat(2, 1fr); }
  .ig-item:nth-child(3) { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .marquee-track { gap: 30px; }
  .back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 48px; }
}
