/* ═══════════════════════════════════════════════════════════════
   HMT FITNESS GYM & CLUB — STYLESHEET
   Styled to match nustepgym.in: matte black + red accent,
   Barlow Condensed (headings) + Inter (body).
═══════════════════════════════════════════════════════════════ */

:root {
  --red: #e8003d;
  --red-dark: #b8002f;
  --red-light: #ff1a55;

  --black: #0a0a0a;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --charcoal-2: #222222;

  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --gray-dim: #666660;
  --border: rgba(255, 255, 255, 0.08);
  --border-red: rgba(232, 0, 61, 0.3);

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

.gold { color: var(--red); } /* kept classname for compatibility, now renders as the red accent */

/* ── Preloader ───────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--red);
  animation: pulseMark 1.4s ease-in-out infinite;
}
.preloader-mark span { color: var(--white); }
@keyframes pulseMark {
  0%, 100% { opacity: 0.4; letter-spacing: 0.3em; }
  50% { opacity: 1; letter-spacing: 0.45em; }
}

/* ── Layout Helpers ──────────────────────────────────────── */
section { position: relative; padding: 90px 1.5rem; max-width: var(--container); margin: 0 auto; }
.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}
.section-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold, .btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-gold:hover, .btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232, 0, 61, 0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--border); }
.btn-dark:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-ghost { color: var(--gray); font-weight: 500; }
.btn-ghost:hover { color: var(--red); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 16px 0;
}
.navbar.scrolled { background: rgba(10,10,10,0.97); backdrop-filter: blur(12px); padding: 10px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.logo-mark {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: var(--red);
  letter-spacing: 1px;
}
.logo-text { font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; color: var(--white); display: flex; align-items: baseline; gap: 8px; }
.logo-text em { font-style: normal; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; color: var(--gray); font-family: var(--font-body); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); position: relative; padding: 4px 0; transition: color var(--transition);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-call { display: flex; }
.nav-call i { color: var(--red); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 30px; height: 24px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); transition: var(--transition); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; max-width: none;
  display: flex; align-items: center;
  padding: 140px 1.5rem 4rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 60px),
    linear-gradient(135deg, #141414 0%, #0a0a0a 60%, #060605 100%);
}
.hero-veil { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.4) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%; }
.eyebrow.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 0, 61, 0.15);
  border: 1px solid rgba(232, 0, 61, 0.4);
  border-radius: 50px;
  font-size: 0.8rem; letter-spacing: 2px; color: var(--red); margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1; letter-spacing: -1px; text-transform: uppercase;
  color: var(--white); margin: 0 0 24px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-stats .stat-item { display: flex; flex-direction: column; }
.hero-stats .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--red); line-height: 1; }
.hero-stats .stat-plus { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--red); }
.hero-stats p { font-size: 0.8rem; color: var(--gray); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--gray); font-size: 0.75rem; z-index: 2;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--red), transparent); }
.scroll-cue i { animation: bounce 1.8s infinite; color: var(--red); }
@keyframes bounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ── Marquee Ticker ──────────────────────────────────────── */
.marquee-bar { background: var(--red); padding: 14px 0; overflow: hidden; white-space: nowrap; max-width: none; }
.marquee-track {
  display: inline-flex; gap: 40px;
  animation: marquee 25s linear infinite;
}
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.marquee-track .dot { font-size: 0.5rem; opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Image Placeholders ──────────────────────────────────── */
.img-placeholder {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232,0,61,0.08), transparent 60%),
    repeating-linear-gradient(45deg, #161614 0 2px, #101010 2px 26px);
  border: 1.5px dashed rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.3); min-height: 220px; text-align: center; padding: 1rem;
  transition: var(--transition);
}
.img-placeholder i { font-size: 1.8rem; color: rgba(232,0,61,0.5); }
.img-placeholder span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.img-placeholder.tall { min-height: 480px; }
.img-placeholder:hover { border-color: rgba(232,0,61,0.35); background: rgba(232,0,61,0.04); color: rgba(255,255,255,0.45); }

/* ── About ───────────────────────────────────────────────── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--red); color: #fff;
  padding: 20px 24px; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(232,0,61,0.4);
}
.about-media-badge i { font-size: 1.4rem; }
.about-media-badge strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; line-height: 1; }
.about-media-badge small { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }
.about-text { color: var(--gray-light); margin: 1.4rem 0 1.75rem; font-size: 0.975rem; line-height: 1.8; }
.about-list { margin-bottom: 2.2rem; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.925rem; color: var(--gray-light); }
.about-list i { color: var(--red); font-size: 0.8rem; }

/* ── Why / Services ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform var(--transition);
}
.why-card:hover { border-color: var(--border-red); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.why-card:hover::before { transform: scaleX(1); }
.why-card i {
  width: 58px; height: 58px; border-radius: var(--radius);
  background: rgba(232,0,61,0.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; transition: var(--transition);
}
.why-card:hover i { background: var(--red); color: #fff; }
.why-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; color: var(--white); }
.why-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ── Programs ────────────────────────────────────────────── */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.program-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform var(--transition);
}
.program-card:hover { border-color: var(--border-red); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.program-card:hover::before { transform: scaleX(1); }
.program-icon {
  width: 58px; height: 58px; border-radius: var(--radius);
  background: rgba(232,0,61,0.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px; transition: var(--transition);
}
.program-card:hover .program-icon { background: var(--red); color: #fff; }
.program-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.program-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ── Trainers ────────────────────────────────────────────── */
.trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trainer-card { text-align: center; }
.trainer-photo {
  aspect-ratio: 3/3.6; border-radius: var(--radius-lg); margin-bottom: 1.2rem;
  background: repeating-linear-gradient(45deg, #161614 0 2px, #101010 2px 26px);
  border: 1.5px dashed rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
}
.trainer-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.2rem; }
.trainer-card p { color: var(--red); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 0.9rem; }
.trainer-social { display: flex; gap: 0.9rem; justify-content: center; }
.trainer-social a {
  width: 38px; height: 38px; background: var(--charcoal); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray);
  transition: var(--transition);
}
.trainer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.price-card.featured { background: var(--black-soft); border-color: var(--red); transform: scale(1.04); box-shadow: 0 0 60px rgba(232,0,61,0.2); }
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}
.price-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--red); margin-bottom: 16px; }
.price-tag { font-family: var(--font-display); font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 8px; color: var(--white); }
.price-tag span { font-size: 1.8rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.price-tag small { font-family: var(--font-body); font-size: 1rem; font-weight: 400; color: var(--gray); }
.price-card ul { text-align: left; margin: 20px 0 2rem; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-light); }
.price-card li i { color: var(--red); font-size: 0.8rem; width: 14px; }
.price-card li.muted { opacity: 0.4; }
.price-card li.muted i { color: var(--gray); }
.pricing-note { text-align: center; color: var(--gray); font-size: 0.85rem; margin-top: 2rem; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 250px 250px; gap: 16px; }
.gallery-grid .img-placeholder { min-height: 0; height: 100%; }
.gallery-grid .reveal:first-child { grid-row: span 2; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { text-align: center; }
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: left; transition: var(--transition);
}
.testi-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.testi-card > i.fa-quote-left { color: var(--red); font-size: 1.3rem; margin-bottom: 1rem; display: none; }
.testi-stars { color: #f59e0b; margin-bottom: 16px; font-size: 0.9rem; }
.testi-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 1.2rem;
  flex-shrink: 0;
}
.testi-author strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.testi-author small { color: var(--red); font-size: 0.78rem; font-weight: 600; }
.testi-dots { display: none; gap: 0.6rem; justify-content: center; margin-top: 2rem; }
.testi-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.testi-dots button.active { background: var(--red); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  max-width: none; padding: 0;
  background: linear-gradient(135deg, #1a0a0d, #0a0a0a 60%);
  border-top: 1px solid var(--border-red); border-bottom: 1px solid var(--border-red);
}
.cta-inner { max-width: 700px; margin: 0 auto; padding: 80px 1.5rem; text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; }
.cta-inner p { color: var(--gray); margin-bottom: 2rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { margin: 1.8rem 0 0; }
.contact-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-list i { color: var(--red); font-size: 1.2rem; margin-top: 4px; width: 20px; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; color: var(--white); }
.contact-list span { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.social-row { display: flex; gap: 14px; padding: 24px 0 0; }
.social-row a {
  width: 42px; height: 42px; background: var(--charcoal); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gray); transition: var(--transition);
}
.social-row a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

.contact-form { background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; text-transform: uppercase; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: var(--charcoal-2); border: 1px solid var(--border); color: var(--white);
  padding: 12px 16px; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.95rem;
  transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); }
.contact-form select option { background: var(--charcoal); }
.contact-form textarea { resize: vertical; }
.form-status { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--red); min-height: 1.2em; }

.map-wrap { margin-top: 64px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); filter: grayscale(0.4) contrast(1.1); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { max-width: none; background: var(--black-soft); border-top: 1px solid var(--border); padding: 64px 1.5rem 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand p { color: var(--gray); font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.4rem; max-width: 320px; }
.footer-links h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--white); margin-bottom: 20px; }
.footer-links a { display: flex; align-items: center; gap: 0.6rem; color: var(--gray); font-size: 0.875rem; padding: 6px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 20px 0; text-align: center; color: var(--gray); font-size: 0.82rem; }

/* ── Floating Buttons ────────────────────────────────────── */
.float-btn {
  position: fixed; right: 1.8rem; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45); z-index: 900; transition: var(--transition);
}
.whatsapp-btn { bottom: 1.8rem; background: #25D366; color: #fff; }
.whatsapp-btn:hover { transform: scale(1.08); }
.back-to-top {
  bottom: 6.4rem; background: var(--charcoal); color: var(--red); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red); color: #fff; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid, .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .testi-track { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .gallery-grid .reveal:first-child { grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--black-soft); border-left: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 6.5rem 2rem 2rem; gap: 1.6rem;
    transition: right 0.4s ease; z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  section { padding: 60px 1.2rem; }
  .why-grid, .programs-grid, .trainers-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-rows: repeat(6, 220px); }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .float-btn { width: 46px; height: 46px; right: 1.1rem; font-size: 1.1rem; }
  .whatsapp-btn { bottom: 1.1rem; }
  .back-to-top { bottom: 5.6rem; }
  .testi-track { grid-template-columns: 1fr; }
}
