/* ═══════════════════════════════════════════════════════════
   UNIVERSAL GYM DEMO TEMPLATE — style.css
   Fonts: Bebas Neue (display) · Barlow Condensed (headings)
          Barlow (body) — loaded via Google Fonts in index.html
   ─────────────────────────────────────────────────────────
   COLOUR TOKENS: Update :root variables to match gym branding
═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   COLOUR & DESIGN TOKENS
   REPLACE: Update these values to match each gym's branding
═══════════════════════════════════════════════════════════ */
:root {
  /* Primary brand colour — REPLACE with gym's accent colour */
  --fire:        #e53e00;
  --fire-dark:   #bf3300;
  --fire-glow:   rgba(229, 62, 0, 0.35);

  /* Neutrals */
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #181818;
  --dark-3:      #222222;
  --dark-card:   #1a1a1a;
  --mid:         #2a2a2a;
  --border:      rgba(255,255,255,0.08);
  --light-bg:    #f4f4f2;
  --light-card:  #ffffff;

  /* Text */
  --text-white:  #ffffff;
  --text-muted:  rgba(255,255,255,0.55);
  --text-dark:   #1a1a1a;
  --text-mid:    #555555;

  /* Shadows */
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.25);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.4);
  --shadow-fire: 0 8px 40px rgba(229,62,0,0.3);

  /* Layout */
  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1200px;
  --nav-h:       80px;
}

/* ═══════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════ */
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

/* ─── Layout container ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Sections ─── */
.section         { padding: 100px 0; }
.section--dark   { background: var(--dark); }
.section--light  { background: var(--light-bg); color: var(--text-dark); }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 12px 0 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section--dark .section-sub { color: var(--text-muted); }

.accent-text {
  color: var(--fire);
}

.section-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--fire);
  color: var(--fire);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.section--light .section-tag {
  background: rgba(229,62,0,0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--fire    { background: var(--fire); color: #fff; border-color: var(--fire); }
.btn--fire:hover { background: var(--fire-dark); box-shadow: var(--shadow-fire); transform: translateY(-2px); }
.btn--primary { background: var(--fire); color: #fff; border-color: var(--fire); }
.btn--primary:hover { background: var(--fire-dark); transform: translateY(-2px); }
.btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--outline { background: transparent; color: var(--fire); border-color: var(--fire); }
.btn--outline:hover { background: var(--fire); color: #fff; }
.btn--wa      { background: #25d366; color: #fff; border-color: #25d366; }
.btn--wa:hover { background: #1db954; }
.btn--lg      { padding: 15px 36px; font-size: 1rem; }
.btn--xl      { padding: 18px 48px; font-size: 1.1rem; }
.btn--full    { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
═══════════════════════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: scale(1.12); }
.float-btn--wa    { background: #25d366; color: #fff; }
.float-btn--phone { background: var(--fire); color: #fff; }
.float-pulse {
  animation: floatPulse 2.4s infinite;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(229,62,0,0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(229,62,0,0); }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Scrolled state */
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo__icon {
  width: 38px; height: 38px;
  background: var(--fire);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo__icon svg { width: 22px; height: 22px; fill: #fff; }
.nav-logo__name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}
.nav-logo__tag {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--fire);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--fire);
  transition: width 0.2s;
}
.nav-links a:hover       { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active      { color: var(--fire); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--fire); }
.mobile-menu a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* REPLACE .hero__bg-placeholder with:
   background: url('img/hero-gym.jpg') center/cover no-repeat;
   on the .hero__bg element */
.hero__bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0800 50%, #0f0f0f 100%);
  position: relative;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229,62,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,62,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__silhouette {
  position: absolute;
  bottom: 0; right: 5%;
  width: min(520px, 50vw);
  opacity: 0.6;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 55%,
    rgba(10,10,10,0.3) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--fire);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-line {
  flex: 0 0 40px;
  height: 2px;
  background: var(--fire);
}

.hero__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: normal;
  color: rgba(255,255,255,0.35);
  -webkit-text-stroke: 1px rgba(255,255,255,0.35);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

/* Stats */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  width: fit-content;
  backdrop-filter: blur(12px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat:first-child { padding-left: 0; }
.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
}
.stat__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.stat__divider {
  width: 1px;
  background: var(--border);
  margin: 4px 0;
  align-self: stretch;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}
.scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--fire), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
.ticker-section {
  background: var(--fire);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerSlide 28s linear infinite;
  gap: 0;
}
.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 28px;
  white-space: nowrap;
}
.ticker-dot {
  color: rgba(255,255,255,0.5) !important;
  padding: 0 4px !important;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual side */
.about-visual {
  position: relative;
  height: 520px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img--main {
  width: 75%;
  height: 420px;
  top: 0; left: 0;
  box-shadow: var(--shadow-md);
}
.about-img--accent {
  width: 48%;
  height: 220px;
  bottom: 0; right: 0;
  border: 3px solid var(--fire);
  box-shadow: var(--shadow-fire);
}
.about-badge {
  position: absolute;
  top: 20px; right: -16px;
  background: var(--fire);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  transform: rotate(3deg);
  box-shadow: var(--shadow-fire);
  z-index: 2;
}
.badge-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
.about-float-card {
  position: absolute;
  bottom: 60px;
  left: -24px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--fire);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 10;
}
.float-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--fire);
  line-height: 1;
}
.float-card__num span { font-size: 1.4rem; }
.float-card__text {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  margin-top: 4px;
}

/* Text side */
.about-text__para {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.section--dark .about-text__para { color: var(--text-muted); }

.about-highlights {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.highlight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlights strong { color: var(--fire); }

/* ═══════════════════════════════════════════════════════════
   IMAGE PLACEHOLDERS (remove when real photos added)
═══════════════════════════════════════════════════════════ */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 20px;
}
.img-placeholder p {
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.img-placeholder svg { width: 56px; height: 56px; flex-shrink: 0; }

.img-placeholder--dark    { background: var(--dark-3); color: rgba(255,255,255,0.3); }
.img-placeholder--fire    { background: linear-gradient(145deg, #1a0800, #2a1000); color: rgba(229,62,0,0.5); }
.img-placeholder--trainer { background: var(--dark-2); color: rgba(255,255,255,0.25); min-height: 220px; }
.img-placeholder--gallery { background: var(--dark-3); color: rgba(255,255,255,0.3); }
.img-placeholder--gallery span { font-size: 2rem; }

/* ═══════════════════════════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--light-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid #e8e8e4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.program-card:hover::before { background: var(--fire); }

.program-card--featured {
  background: var(--dark);
  color: #fff;
  border-color: var(--fire);
  box-shadow: 0 0 0 1px var(--fire), 0 20px 60px rgba(229,62,0,0.2);
}
.program-card--featured::before { background: var(--fire) !important; }
.program-card--featured p { color: var(--text-muted); }

.program-card__badge {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--fire);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 36px;
  transform: rotate(42deg);
  font-family: 'Barlow Condensed', sans-serif;
}

.program-card__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.program-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.program-card--featured h3 { color: #fff; }
.program-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; }

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.program-card__tags span {
  font-size: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(229,62,0,0.1);
  color: var(--fire);
  border: 1px solid rgba(229,62,0,0.2);
}
.program-card__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fire);
  transition: gap 0.2s;
  display: inline-flex;
  gap: 6px;
}
.program-card__cta:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.why-section { position: relative; overflow: hidden; }
.why-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  background: rgba(229,62,0,0.06);
  border-color: rgba(229,62,0,0.3);
  transform: translateY(-4px);
}
.why-card__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: rgba(229,62,0,0.12);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  transition: color 0.3s;
}
.why-card:hover .why-card__num { color: rgba(229,62,0,0.25); }
.why-card__icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   TRAINERS
═══════════════════════════════════════════════════════════ */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trainer-card {
  background: var(--light-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e8e8e4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.trainer-card__photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}
/* Style for real trainer photo (once added) */
.trainer-real-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}
.trainer-card:hover .trainer-real-photo { transform: scale(1.05); }

.trainer-card__social {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex;
  gap: 8px;
}
.trainer-card__social a {
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.trainer-card__social a:hover { background: var(--fire); }

.trainer-card__info {
  padding: 20px;
}
.trainer-card__info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.trainer-card__role {
  display: block;
  font-size: 0.76rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 10px;
}
.trainer-card__info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}
.trainer-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.trainer-card__tags span {
  font-size: 0.68rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: rgba(229,62,0,0.08);
  color: var(--fire);
  border-radius: 4px;
  border: 1px solid rgba(229,62,0,0.18);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* Hover zoom for real images */
/* .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
} */

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(229,62,0,0.9), transparent);
  color: #fff;
  padding: 32px 16px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: color 0.2s;
}
.toggle-label.active { color: var(--fire); }
.toggle-switch {
  width: 52px; height: 28px;
  background: var(--mid);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  transition: background 0.3s;
}
.toggle-switch.on { background: var(--fire); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.3s;
}
.toggle-switch.on .toggle-thumb { left: 27px; }
.save-badge {
  display: inline-block;
  background: var(--fire);
  color: #fff;
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
  letter-spacing: 0.08em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--light-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid #e8e8e4;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }

.pricing-card--featured {
  background: var(--dark);
  border-color: var(--fire);
  box-shadow: 0 0 0 1px var(--fire), 0 24px 60px rgba(229,62,0,0.25);
  transform: scale(1.04);
  color: #fff;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-card--featured h3,
.pricing-card--featured p { color: rgba(255,255,255,0.9); }

.pricing-card__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--fire);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
}
.pricing-card__header { margin-bottom: 28px; }
.pricing-card__icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-card__header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.pricing-card--featured .pricing-card__header h3 { color: #fff; }
.pricing-card__header p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.pricing-card--featured .pricing-card__header p { color: var(--text-muted); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.currency {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fire);
}
.amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-card--featured .amount { color: #fff; }
.period {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.pricing-card--featured .period { color: var(--text-muted); }

.pricing-card__features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.7); }
.pricing-card__features li.included::before { content: '✓'; color: var(--fire); font-weight: 800; flex-shrink: 0; }
.pricing-card__features li.excluded        { opacity: 0.4; text-decoration: line-through; }
.pricing-card__features li.excluded::before { content: '✕'; color: #999; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.pricing-note strong { color: var(--fire); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.rating-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.stars { color: #f5a623; font-size: 1.3rem; }
.rating-label { font-size: 0.88rem; color: var(--text-muted); }

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiScroll 40s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(229,62,0,0.4); }
.testi-card--accent {
  background: linear-gradient(145deg, #1a0800, #1e0900);
  border-color: rgba(229,62,0,0.25);
}
.testi-card__stars { color: #f5a623; font-size: 1rem; margin-bottom: 16px; }
.testi-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 40px; height: 40px;
  background: var(--fire);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 0.9rem; color: #fff; }
.testi-card__author span  { display: block; font-size: 0.75rem; color: var(--fire); margin-top: 2px; }

.testi-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 2;
}
.testi-fade--left  { left: 0;  background: linear-gradient(to right, var(--dark), transparent); }
.testi-fade--right { right: 0; background: linear-gradient(to left,  var(--dark), transparent); }

/* ═══════════════════════════════════════════════════════════
   FREE TRIAL CTA
═══════════════════════════════════════════════════════════ */
.trial-section {
  position: relative;
  background: linear-gradient(135deg, #0f0000 0%, var(--fire-dark) 50%, #1a0400 100%);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.trial-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 20vw, 18rem);
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.08em;
}
.trial-content { position: relative; z-index: 2; }
.trial-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 24px;
}
.trial-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.trial-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(229,62,0,0.3); }
.contact-card__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-card strong { display: block; font-size: 0.8rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fire); margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.contact-card a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.contact-card a:hover { color: var(--fire); }

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 4px 0;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 200px;
  background: var(--dark-3);
}
.map-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  text-align: center;
}
.map-placeholder__inner span { font-size: 2rem; }
.map-placeholder__inner p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.map-placeholder__inner a { color: var(--fire); font-size: 0.85rem; font-weight: 600; margin-top: 6px; }
.map-placeholder__inner a:hover { text-decoration: underline; }

/* ─── Contact form ─── */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(229,62,0,0.15);
}
.form-group select option { background: var(--dark); color: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success.hidden { display: none; }
.form-success__icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--fire);
  margin-bottom: 12px;
}
.form-success p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}
.footer-socials a:hover { background: var(--fire); border-color: var(--fire); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--fire); }
.footer-contact li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-contact a:hover { color: var(--fire); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .about-visual   { height: 320px; }
  .programs-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .contact-grid   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .section         { padding: 72px 0; }
  .hero__stats     { padding: 18px 16px; }
  .stat            { padding: 0 16px; }
  .stat__num       { font-size: 1.8rem; }
  .stat__divider   { display: none; }
  .hero__stats     { flex-wrap: wrap; gap: 16px; }
  .stat            { padding: 0; flex: 0 0 40%; }
  .programs-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .trainers-grid   { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: auto; grid-row: auto; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px; }
  .form-row        { grid-template-columns: 1fr; }
  .hero__cta       { flex-direction: column; }
  .about-visual    { height: 260px; }
  .about-img--main { width: 85%; height: 260px; }
  .about-img--accent { width: 55%; height: 160px; }
  .about-float-card { left: 0; bottom: 20px; }
}
