/* ================================================================
   EVERYTIME FITNESS — style.css
   PREMIUM UPGRADE v5.0 — Dark Black + Blood Red Neon
   Futuristic Luxury Theme | All SEO & Structure Preserved
   Changes v5.0:
     - Recolored entire theme from Electric Blue/Purple to Red/Black
================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES — Red + Black Neon Palette
================================================================ */
:root {
  /* CORE BACKGROUNDS */
  --bg-main:        #050505;
  --bg-section:     #120707;
  --bg-card:        #1A0E0E;

  /* BRIGHT RED */
  --blue:           #FF1E3C;
  --blue-dim:       rgba(255, 30, 60, 0.10);
  --blue-glow:      rgba(255, 30, 60, 0.28);
  --blue-mid:       #FF5C3D;

  /* DEEP CRIMSON */
  --purple:         #A80F1E;
  --purple-dim:     rgba(168, 15, 30, 0.10);
  --purple-glow:    rgba(168, 15, 30, 0.28);

  /* CTA GRADIENT — Red → Crimson */
  --cta-from:       #FF1E3C;
  --cta-to:         #A80F1E;
  --cta-grad:       linear-gradient(135deg, #FF1E3C 0%, #A80F1E 100%);

  /* LEGACY accent kept for JS compatibility */
  --accent:         #FF1E3C;
  --accent-2:       #A80F1E;
  --accent-dim:     rgba(255, 30, 60, 0.10);
  --accent-glow:    rgba(255, 30, 60, 0.28);

  /* CTA warm (kept for save badges) */
  --cta:            #FFB347;
  --cta-dark:       #e0973b;

  /* BORDERS */
  --border:         rgba(255, 30, 60, 0.08);
  --border-strong:  rgba(255, 30, 60, 0.22);
  --border-hover:   rgba(168, 15, 30, 0.45);

  /* TEXT */
  --text-primary:   #FFFFFF;
  --text-muted:     #B5B5B5;

  /* TYPOGRAPHY */
  --font-heading:   'Bebas Neue', 'Impact', sans-serif;
  --font-body:      'Poppins', system-ui, sans-serif;

  /* SPACING */
  --section-pad:    5rem 1.5rem;
  --section-pad-sm: 2.5rem 1rem;
  --card-radius:    16px;
  --nav-h:          72px;

  /* TRANSITIONS */
  --trans-fast:     0.2s ease;
  --trans-med:      0.35s ease;
  --trans-slow:     0.65s cubic-bezier(0.16, 1, 0.3, 1);

  /* GLASS */
  --glass-bg:       rgba(18, 7, 7, 0.75);
  --glass-border:   rgba(255, 30, 60, 0.14);
  --glass-blur:     24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

/* Premium slim scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: var(--cta-grad);
  border-radius: 2px;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ================================================================
   3. UTILITY CLASSES
================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.section { padding: var(--section-pad); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.3rem 1.1rem;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Electric blue + purple gradient text */
.accent-text {
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(168, 15, 30, 0.4));
}

/* Premium Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--card-radius);
  position: relative;
  overflow: hidden;
}

/* Gradient border shimmer on glass cards */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255, 30, 60, 0.3) 0%,
    transparent 40%,
    rgba(168, 15, 30, 0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* Keep content above the shimmer border */
.glass-card > * { position: relative; z-index: 1; }

.hidden-mobile { display: block; }

/* ================================================================
   4. BUTTONS — Premium gradient CTAs
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast);
  will-change: transform;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* PRIMARY: Blue → Purple gradient */
.btn-primary {
  background: var(--cta-grad);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(168, 15, 30, 0.35),
              0 2px 8px rgba(255, 30, 60, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(168, 15, 30, 0.55),
              0 4px 16px rgba(255, 30, 60, 0.3);
}

/* OUTLINE */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 24px var(--blue-glow), 0 0 8px var(--purple-glow);
}

/* CALL */
.btn-call {
  background: var(--cta-grad);
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  box-shadow: 0 0 16px rgba(168, 15, 30, 0.28);
}
.btn-call:hover { box-shadow: 0 0 32px rgba(168, 15, 30, 0.5); }

/* PLAN */
.btn-plan {
  width: 100%;
  justify-content: center;
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border-strong);
  margin-top: 1.5rem;
}
.btn-plan:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(168, 15, 30, 0.4);
}

.btn-plan-featured {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  background: var(--cta-grad);
  color: #fff;
}
.btn-plan-featured:hover {
  box-shadow: 0 8px 28px rgba(168, 15, 30, 0.5);
}

/* CALL SM */
.btn-call-sm {
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid var(--border-strong);
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  display: inline-flex;
}
.btn-call-sm:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
}

/* WHATSAPP */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-full { width: 100%; justify-content: center; }

/* [NEW] Trainer Call Button */
.btn-trainer-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cta-grad);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(168, 15, 30, 0.3);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  margin-top: 1rem;
  align-self: flex-start;
}
.btn-trainer-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168, 15, 30, 0.5);
}

/* ================================================================
   PRELOADER — Ultra Premium with Neon Glow + Percentage
================================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  will-change: opacity, transform;
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: hidden;
}

/* Background glow orbs */
.preloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse,
    rgba(255, 30, 60, 0.08) 0%,
    rgba(168, 15, 30, 0.06) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: preloader-pulse-bg 2s ease-in-out infinite;
}

@keyframes preloader-pulse-bg {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Neon grid lines background */
.preloader::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 30, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 30, 60, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.preloader.hide {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.preloader.done { display: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Logo container with rotating rings */
.preloader-logo {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-bolt {
  font-size: 2.8rem;
  filter: drop-shadow(0 0 20px var(--blue)) drop-shadow(0 0 40px var(--purple));
  animation: preloader-bolt-pulse 1.2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes preloader-bolt-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 16px var(--blue)) drop-shadow(0 0 32px var(--purple));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 28px var(--blue)) drop-shadow(0 0 56px var(--purple));
  }
}

/* Outer ring */
.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--blue);
  border-right-color: rgba(255, 30, 60, 0.2);
  animation: preloader-spin 1s linear infinite;
}

/* Inner ring */
.preloader-ring-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-bottom-color: var(--purple);
  border-left-color: rgba(168, 15, 30, 0.2);
  animation: preloader-spin 0.7s linear infinite reverse;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.preloader-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 30, 60, 0.5);
}

.preloader-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Neon progress bar */
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--cta-grad);
  border-radius: 1px;
  animation: preloader-progress 2s ease forwards;
  box-shadow: 0 0 12px var(--blue), 0 0 24px var(--purple);
}

@keyframes preloader-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

.preloader-percent {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  animation: preloader-count 2s ease forwards;
}

.preloader-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  animation: fade-in 1s ease 0.5s both;
}

/* ================================================================
   5. NAVBAR — Glassmorphism with gradient logo
================================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--trans-med), box-shadow var(--trans-med);
  will-change: background;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(255, 30, 60, 0.1),
    0 1px 0 rgba(168, 15, 30, 0.05),
    0 4px 40px rgba(0,0,0,0.9);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 12px var(--blue)) drop-shadow(0 0 8px var(--purple));
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 10px var(--blue)); }
  50%       { filter: drop-shadow(0 0 20px var(--purple)); }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo-accent {
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  transition: color var(--trans-fast), background var(--trans-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--cta-grad);
  border-radius: 1px;
  transition: transform var(--trans-fast);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--trans-med), opacity var(--trans-med);
  transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   6. HERO SECTION — Ultra Premium with Particles Canvas
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
}

/* Slow zoom animation */
.hero-img-zoom {
  animation: hero-zoom 16s ease-out forwards;
  transform-origin: center center;
}

@keyframes hero-zoom {
  from { transform: scale(1.10); }
  to   { transform: scale(1); }
}

/* Multi-layer overlay: deep black + blue + purple */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.82) 40%,
    rgba(18, 7, 7, 0.65) 80%,
    rgba(30, 5, 60, 0.55) 100%
  );
}

/* Blue glow bottom-left */
.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 30, 60, 0.12) 0%, transparent 65%);
}

/* Purple glow top-right */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(168, 15, 30, 0.10) 0%, transparent 65%);
}

/* Particles canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Animated neon scanline */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
  opacity: 0.4;
  animation: hero-scanline 6s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes hero-scanline {
  from { top: 0%; }
  to   { top: 100%; }
}

/* Moving gradient background */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255, 30, 60, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(168, 15, 30, 0.07) 0%, transparent 50%);
  animation: hero-bg-move 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes hero-bg-move {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 2rem 1.5rem;
  width: 100%;
}

/* Location badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  background: rgba(255, 30, 60, 0.07);
  border: 1px solid rgba(255, 30, 60, 0.22);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--blue);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--blue); }
  50%       { opacity: 0.4; transform: scale(0.7); box-shadow: 0 0 2px var(--blue); }
}

/* Hero title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.93;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  overflow: visible;
}

.title-line { display: block; }

/* Clip-path line reveal */
.hero-line-reveal {
  clip-path: inset(0 0 100% 0);
  animation: line-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-reveal.delay-1 { animation-delay: 0.18s; }

@keyframes line-reveal {
  to { clip-path: inset(0 0 0% 0); }
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* CTA row */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Button entry animation */
.btn-hero-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  min-width: 110px;
  transition: border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
}

.stat-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--blue-glow);
}

.stat-icon { font-size: 1.5rem; }

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-primary);
  border-bottom: 1.5px solid var(--text-primary);
  transform: rotate(45deg) translateY(-2px);
}

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

/* ================================================================
   7. WHY CHOOSE US
   [MODIFIED v4] Added .why-list-grid for 2-col on mobile/tablet
================================================================ */
.why-section {
  background: var(--bg-section);
  overflow: hidden;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 30, 60, 0.05) 0%, transparent 65%);
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 15, 30, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

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

.why-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.75rem; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 30, 60, 0.02);
  transition: border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
}

.why-item:hover {
  border-color: var(--border-strong);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(255, 30, 60, 0.07);
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--blue-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--trans-fast), box-shadow var(--trans-fast);
}

.why-item:hover .why-icon-wrap {
  background: rgba(168, 15, 30, 0.12);
  box-shadow: 0 0 16px rgba(168, 15, 30, 0.2);
}

.why-item-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.2rem; }
.why-item-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.why-cta-card {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.why-cta-icon { font-size: 3rem; }
.why-cta-card h3 { font-family: var(--font-heading); font-size: 1.7rem; letter-spacing: 0.04em; color: var(--text-primary); }
.why-cta-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ================================================================
   8. ABOUT SECTION
   [MODIFIED v4] Enhanced counter styling — premium glow + float
================================================================ */
.about-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 15, 30, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 30, 60, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

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

.about-img-wrap { position: relative; }

.about-img-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse,
    rgba(255, 30, 60, 0.08) 0%,
    rgba(168, 15, 30, 0.06) 40%,
    transparent 70%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  animation: about-glow-pulse 4s ease-in-out infinite;
}

@keyframes about-glow-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--card-radius);
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.8),
    0 0 40px rgba(255, 30, 60, 0.08),
    0 0 60px rgba(168, 15, 30, 0.06);
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.float-badge-icon { font-size: 2rem; }

.about-badge-float strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-badge-float span { font-size: 0.72rem; color: var(--text-muted); }

.about-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-text strong { color: var(--text-primary); }

.timings-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.timing-item { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.timing-icon { font-size: 1.4rem; }
.timing-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.timing-item span { font-size: 0.78rem; color: var(--blue); font-weight: 500; }
.timing-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ================================================================
   COUNTERS — [MODIFIED v4] Premium animated glow + float effect
================================================================ */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

/* [MODIFIED v4] Counter item with floating animation */
.counter-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 30, 60, 0.03);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  animation: counter-float 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Stagger float animation for each counter */
.counter-item:nth-child(1) { animation-delay: 0s; }
.counter-item:nth-child(2) { animation-delay: 0.5s; }
.counter-item:nth-child(3) { animation-delay: 1s; }
.counter-item:nth-child(4) { animation-delay: 1.5s; }

/* [NEW] Subtle floating animation */
@keyframes counter-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

.counter-item:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 30px rgba(168, 15, 30, 0.15),
              0 0 20px rgba(255, 30, 60, 0.08);
}

/* [MODIFIED v4] Premium counter number — larger, glowing */
.counter-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 30, 60, 0.5))
          drop-shadow(0 0 24px rgba(168, 15, 30, 0.3));
  transition: filter var(--trans-med);
}

.counter-item:hover .counter-num {
  filter: drop-shadow(0 0 20px rgba(255, 30, 60, 0.7))
          drop-shadow(0 0 40px rgba(168, 15, 30, 0.5));
}

/* [MODIFIED v4] Counter + and % with gradient */
.counter-plus {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: super;
  font-size: 1.2rem;
}

.counter-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.4rem;
}

/* ================================================================
   9. SERVICES SECTION
================================================================ */
.services-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 30, 60, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  transition: transform var(--trans-med), border-color var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
}

/* Override glass-card ::before for service cards — no gradient border shimmer */
.service-card.glass-card::before { display: none; }

/* Custom top accent bar */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cta-grad);
  transform: scaleX(0);
  transition: transform var(--trans-med);
  z-index: 1;
}

.service-card:hover { transform: translateY(-10px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: rgba(168, 15, 30, 0.3); box-shadow: 0 20px 60px rgba(168, 15, 30, 0.1); }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--blue-dim);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background var(--trans-fast), box-shadow var(--trans-fast), transform var(--trans-fast);
}

.service-card:hover .service-icon-wrap {
  background: rgba(168, 15, 30, 0.15);
  box-shadow: 0 0 24px rgba(168, 15, 30, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.service-icon { font-size: 1.5rem; }
.service-title { font-family: var(--font-heading); font-size: 1.25rem; letter-spacing: 0.04em; color: var(--text-primary); margin-bottom: 0.65rem; }
.service-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.service-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-color: var(--blue-dim);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  display: inline-block;
  border: 1px solid var(--border);
}

/* ================================================================
   10. MEMBERSHIP SECTION
================================================================ */
.membership-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.membership-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(168, 15, 30, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Slider wrapper */
.membership-slider-wrap {
  position: relative;
  overflow: hidden;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.plan-card {
  padding: 1.75rem;
  position: relative;
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255, 30, 60, 0.2);
}

.plan-featured {
  border-color: var(--blue) !important;
  background: linear-gradient(160deg,
    rgba(255, 30, 60, 0.07) 0%,
    rgba(168, 15, 30, 0.07) 50%,
    rgba(18, 7, 7, 0.9) 100%
  );
  box-shadow:
    0 0 50px rgba(255, 30, 60, 0.12),
    0 0 80px rgba(168, 15, 30, 0.08),
    0 0 0 1px rgba(255, 30, 60, 0.25);
  transform: scale(1.04);
}

.plan-featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 28px 70px rgba(168, 15, 30, 0.25);
}

.featured-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-grad);
  color: #fff;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 10px 10px;
}

.save-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 179, 71, 0.1);
  color: var(--cta);
  border: 1px solid rgba(255, 179, 71, 0.35);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
}

.save-badge-gold { background: rgba(255, 179, 71, 0.15); color: var(--cta); border-color: var(--cta); }

.plan-header { margin-bottom: 1.25rem; padding-top: 0.75rem; }
.plan-name { font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.6rem; }
.plan-featured .plan-name { background: var(--cta-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.plan-price { display: flex; align-items: baseline; gap: 0.1rem; margin-bottom: 0.25rem; }
.currency { font-size: 1.2rem; color: var(--text-primary); font-weight: 600; }
.amount { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-primary); line-height: 1; }
.plan-featured .amount { background: var(--cta-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-period { font-size: 0.72rem; color: var(--text-muted); }

.plan-features { flex: 1; display: flex; flex-direction: column; gap: 0.55rem; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted); }
.plan-features li span { color: var(--blue); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* Membership dots (mobile) */
.membership-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.membership-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
  padding: 0;
}

.membership-dot.active {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  transform: scale(1.3);
}

/* ================================================================
   11. TRANSFORMATION STATISTICS SECTION
================================================================ */
.stats-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 30, 60, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(168, 15, 30, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.stat-big-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.stat-big-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cta-grad);
  transform: scaleX(0);
  transition: transform var(--trans-med);
}

.stat-big-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(168, 15, 30, 0.15); }
.stat-big-card:hover::after { transform: scaleX(1); }

.stat-big-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(168, 15, 30, 0.4));
  display: block;
  margin-bottom: 0.3rem;
}

.stat-big-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-big-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* ================================================================
   12. GALLERY SECTION
   [MODIFIED v4] Single image visible on ALL devices
   Added: blue+purple glow, glass reflection, object-fit cover,
   consistent height, border-radius, pagination dots
================================================================ */
.gallery-section {
  background: var(--bg-main);
  position: relative;
}

.gallery-slider-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.gallery-slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* [MODIFIED v5] Track — no side padding, so each slide is exactly
   viewport width with zero gutter (no adjacent-image peek), matching
   the testimonials slider pattern. */
.gallery-slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 0;
}

/* [MODIFIED v5] Single slide — always exactly 100% width, no peek */
.gslide {
  flex: 0 0 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-section);
  cursor: pointer;
  border: 1px solid var(--border-strong);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  /* [NEW] Blue + Purple glow */
  box-shadow:
    0 0 0 1px rgba(255, 30, 60, 0.12),
    0 0 40px rgba(255, 30, 60, 0.08),
    0 0 80px rgba(168, 15, 30, 0.06);
}

.gslide:hover {
  border-color: rgba(255, 30, 60, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 30, 60, 0.25),
    0 0 60px rgba(255, 30, 60, 0.15),
    0 0 100px rgba(168, 15, 30, 0.1);
}

/* [NEW] Glass reflection overlay */
.gslide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

/* [MODIFIED v4] Full-width cover image, consistent height */
/* [FIX] Height ab viewport height (vh) se link hai — isse PC/desktop
   par bhi photo screen ki height ke hisaab se badi dikhegi, na ki
   fixed 480px chhoti patti jaisi. */
.gslide-img {
  width: 100%;
  height: clamp(480px, 65vh, 720px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
  will-change: transform;
}

.gslide:hover .gslide-img {
  transform: scale(1.04);
  filter: brightness(0.6);
}

.gslide-zoom-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: rgba(168, 15, 30, 0.08);
  border: none;
  cursor: pointer;
  color: white;
  opacity: 0;
  transition: opacity var(--trans-med), transform var(--trans-med);
  transform: scale(0.8);
  z-index: 3;
}

.gslide:hover .gslide-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

/* Arrow buttons */
.gslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(5,5,5,0.85);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  backdrop-filter: blur(10px);
}

.gslider-prev { left: 0.5rem; }
.gslider-next { right: 0.5rem; }

.gslider-btn:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 30, 60, 0.3);
}

/* [MODIFIED v4] Wider active dot for single-image slider */
.gslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast), width var(--trans-fast);
  padding: 0;
}

.gslider-dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--blue);
}

/* ================================================================
   12b. GALLERY — PC/DESKTOP VIEW (matched to reference design)
   [NEW] Sirf desktop (>=1025px) ke liye: poore section jitni edge-to-edge
   image ki jagah ab ek "framed" box jaisa dikhega — center mein, rounded
   30px corners, neon border-glow, 700px height, glass circular arrows,
   aur dots seedhe image ke andar bottom par overlay ki tarah.
   Tablet/mobile ka layout jaisa tha waisa hi rehta hai, isko touch nahi kiya.
================================================================ */
@media (min-width: 1025px) {

  .gallery-slider-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid var(--border-strong);
    box-shadow:
      0 0 0 1px rgba(255, 30, 60, 0.12),
      0 0 60px rgba(255, 30, 60, 0.15),
      0 0 100px rgba(168, 15, 30, 0.1);
  }

  /* Frame ab wrap khud sambhal raha hai, isliye per-slide border/shadow hata di */
  .gslide {
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .gslide::after { border-radius: 0; }

  .gslide-img {
    height: 700px;
  }

  .gslider-btn {
    width: 58px;
    height: 58px;
  }

  .gslider-prev { left: 20px; }
  .gslider-next { right: 20px; }

  /* Dots ab image ke andar, bottom par overlay ki tarah */
  .gslider-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 20;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fade-in 0.2s ease;
}

.lightbox[hidden] { display: none; }
.lightbox-content { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 80px rgba(168, 15, 30, 0.2);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--cta-grad);
  border-color: transparent;
  color: #fff;
}

/* ================================================================
   13. TRAINERS SECTION
   [MODIFIED v4] Full redesign — 1 trainer visible on ALL devices
   Premium card with photo area, horizontal layout, call button
================================================================ */
.trainers-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.trainers-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 30, 60, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.trainers-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 15, 30, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.trainer-slider-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.trainer-slider-viewport { overflow: hidden; width: 100%; }

.trainer-slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 0.5rem 3rem 1.5rem;
}

/* [MODIFIED v4] Trainer card — 1 visible, horizontal layout */
.trainer-card {
  flex: 0 0 calc(100% - 6rem);
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  transition: transform var(--trans-med), border-color var(--trans-med), box-shadow var(--trans-med);
  will-change: transform;
  min-height: 420px;
  overflow: hidden;
}

.trainer-card:hover {
  border-color: rgba(255, 30, 60, 0.3);
  box-shadow: 0 24px 60px rgba(255, 30, 60, 0.1),
              0 0 0 1px rgba(168, 15, 30, 0.15);
}

/* [NEW] Photo section — premium gradient avatar */
.trainer-photo-wrap {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
}

/* [NEW] Photo background with premium gradient */
.trainer-photo-bg {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* [NEW] Trainer gradient themes */
.trainer-bg-1 {
  background: linear-gradient(160deg, #000d1a 0%, #001f3f 40%, #003366 70%, #001833 100%);
}
.trainer-bg-2 {
  background: linear-gradient(160deg, #0d0020 0%, #2a005a 40%, #4b0082 70%, #1a0044 100%);
}
.trainer-bg-3 {
  background: linear-gradient(160deg, #050015 0%, #1a0044 40%, #3d00b5 70%, #0d0030 100%);
}
.trainer-bg-4 {
  background: linear-gradient(160deg, #00050a 0%, #001233 40%, #002060 70%, #000e28 100%);
}

/* [NEW] Large initials */
.trainer-photo-initials {
  font-family: var(--font-heading);
  font-size: 5rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 60px rgba(255, 30, 60, 0.3);
}

/* [NEW] Ambient glow inside photo area */
.trainer-photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%,
    rgba(255, 30, 60, 0.12) 0%,
    rgba(168, 15, 30, 0.08) 40%,
    transparent 70%
  );
  animation: trainer-glow-pulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes trainer-glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* [NEW] Trainer card body */
.trainer-card-body {
  flex: 1;
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* [NEW] Meta top row: exp badge + tags */
.trainer-meta-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.trainer-exp-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--cta-grad);
  color: #fff;
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(168, 15, 30, 0.3);
}

.trainer-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  line-height: 1;
}

.trainer-role {
  font-size: 0.85rem;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: -0.25rem;
}

.trainer-specialty {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.trainer-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.trainer-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
}

/* Trainer arrows */
.tslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(5,5,5,0.9);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  backdrop-filter: blur(10px);
}

.tslider-prev { left: 0.5rem; }
.tslider-next { right: 0.5rem; }

.tslider-btn:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 30, 60, 0.3);
}

.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast), width var(--trans-fast);
  padding: 0;
}

.tslider-dot.active {
  background: var(--purple);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--purple);
}

/* ================================================================
   14. TESTIMONIALS SECTION
   [MODIFIED v4] Full redesign — 1 visible on ALL devices
   No text clipping. Equal height. 5 rich testimonials.
   Added profession + member-since. Premium glassmorphism.
================================================================ */
.testimonials-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 15, 30, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-wrapper { position: relative; overflow: hidden; }

/* [MODIFIED v4] Track — no gap, single item */
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* [MODIFIED v4] Card — always 100% width, no min-height overflow */
.testimonial-card {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  /* [FIXED] Remove overflow that caused text clipping */
  overflow: visible;
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  border-color: rgba(168, 15, 30, 0.3);
  box-shadow: 0 20px 50px rgba(168, 15, 30, 0.1);
}

/* [MODIFIED v4] Larger, more prominent stars */
.testimonial-stars {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* [MODIFIED v4] Full testimonial text — no clipping */
.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-text::before {
  content: open-quote;
  background: var(--cta-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 30, 60, 0.4));
}

/* [MODIFIED v4] Author area with profession + member-since */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  justify-content: center;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cta-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(168, 15, 30, 0.3);
}

/* [NEW] Author info group */
.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}

/* [NEW] Profession line */
.author-profession {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 500;
}

/* [NEW] Member since line */
.author-since {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast), box-shadow var(--trans-fast);
  line-height: 1;
}

.t-btn:hover {
  background: var(--cta-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255, 30, 60, 0.3);
}

.t-dots { display: flex; gap: 0.5rem; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast), width var(--trans-fast);
  padding: 0;
}

.t-dot.active {
  background: var(--purple);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 6px var(--purple);
}

/* ================================================================
   15. MEMBERSHIP BENEFITS SECTION
================================================================ */
.benefits-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 30, 60, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--trans-fast), border-color var(--trans-fast);
  will-change: transform;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 30, 60, 0.25);
}

.benefit-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), box-shadow var(--trans-fast);
}

.benefit-card:hover .benefit-icon {
  background: var(--purple-dim);
  box-shadow: 0 0 16px var(--purple-glow);
}

.benefit-title { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.benefit-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ================================================================
   16. FAQ SECTION
================================================================ */
.faq-section {
  background: var(--bg-main);
  position: relative;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open { border-color: var(--border-strong); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--trans-fast);
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--trans-med), background var(--trans-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--cta-grad);
  border-color: transparent;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--trans-med);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ================================================================
   17. CONTACT SECTION
================================================================ */
.contact-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 30, 60, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

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

.contact-card { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item address { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.call-buttons { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.25rem; }

.contact-form { padding: 1.75rem; }

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-label span { color: var(--blue); }

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(181, 181, 181, 0.35); }

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.07), 0 0 12px rgba(168, 15, 30, 0.05);
  background: rgba(255, 30, 60, 0.025);
}

select.form-input option { background: #1A0E0E; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-message {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
  display: none;
}

.form-message.success { display: block; background: rgba(255, 30, 60, 0.08); color: var(--blue); border: 1px solid rgba(255, 30, 60, 0.25); }
.form-message.error   { display: block; background: rgba(255, 80, 80, 0.08); color: #ff6b6b; border: 1px solid rgba(255, 80, 80, 0.25); }

/* ================================================================
   18. MAP SECTION
   [MODIFIED v4] Premium glass border, blue glow, responsive height
   Exact location: A-18 Basement, Amrit Nagar, South Extension Part-1
================================================================ */
.map-section {
  background: var(--bg-main);
  padding: 3.5rem 0 0;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header .section-subtitle {
  margin-bottom: 1.5rem;
}

/* [NEW] Open in Maps button */
.map-open-btn {
  display: inline-flex;
  margin-top: 1rem;
}

/* [MODIFIED v4] Map container — glass border + glow + rounded */
.map-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-top: none;
  /* [NEW] Glass border + blue glow */
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 30, 60, 0.15),
    0 0 60px rgba(255, 30, 60, 0.08),
    0 0 100px rgba(168, 15, 30, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.5);
  /* [NEW] Glass reflection on top */
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 30, 60, 0.04) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.map-container iframe {
  display: block;
  filter: grayscale(20%) brightness(0.8) saturate(0.85);
}

/* ================================================================
   19. FOOTER
================================================================ */
.footer {
  background: #020208;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
}

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

.footer-logo { margin-bottom: 0.6rem; }
.footer-tagline { font-family: var(--font-heading); font-size: 0.95rem; letter-spacing: 0.1em; background: var(--cta-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.6rem; }
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-heading { font-family: var(--font-heading); font-size: 1rem; letter-spacing: 0.12em; color: var(--text-primary); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.82rem; color: var(--text-muted); transition: color var(--trans-fast); }
.footer-link:hover { color: var(--blue); }

.social-links { display: flex; gap: 0.6rem; }

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--trans-fast), border-color var(--trans-fast), background var(--trans-fast);
}

.social-link:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue-dim);
  box-shadow: 0 0 16px var(--blue-glow);
}

.footer-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-phone { color: var(--blue); font-weight: 600; transition: color var(--trans-fast); }
.footer-phone:hover { color: var(--purple); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-seo-text { font-size: 0.72rem; color: rgba(181, 181, 181, 0.35); }

/* ================================================================
   20. SCROLL TO TOP
================================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 46px;
  height: 46px;
  background: var(--cta-grad);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(168, 15, 30, 0.4);
  transition: transform var(--trans-fast), opacity var(--trans-fast), box-shadow var(--trans-fast);
  will-change: transform;
  font-weight: 700;
}

.scroll-top-btn:not([hidden]) { display: flex; }
.scroll-top-btn[hidden]       { display: none; }
.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(168, 15, 30, 0.6);
}

/* ================================================================
   21. SCROLL REVEAL — GPU-accelerated
================================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed { opacity: 1; transform: translate(0); }

/* Hero animations */
.animate-fade-in  { opacity: 0; animation: fade-in 0.9s ease forwards; }
.animate-slide-up { opacity: 0; transform: translateY(28px); animation: slide-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.50s; }

@keyframes fade-in  { to { opacity: 1; } }
@keyframes slide-up { to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   22. RESPONSIVE
================================================================ */

/* ── Tablet: ≤ 1024px ── */
@media (max-width: 1024px) {
  .membership-grid    { grid-template-columns: repeat(2, 1fr); }
  .plan-featured      { transform: none; }
  .plan-featured:hover{ transform: translateY(-8px); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }

  /* [MODIFIED v5] Gallery: full-width slide, no peek gutter */
  .gslide { flex: 0 0 100%; }
  .gslide-img { height: 380px; }

  /* [MODIFIED v4] Trainer: still 1 on tablet, smaller photo */
  .trainer-card { flex: 0 0 calc(100% - 6rem); }
  .trainer-photo-wrap { flex: 0 0 220px; }
  .trainer-photo-bg   { min-height: 380px; }
  .trainer-name       { font-size: 1.75rem; }

  /* [MODIFIED v4] Testimonials: still 1 on tablet */
  .testimonial-card { min-width: 100%; padding: 2rem; }
  .testimonial-text { font-size: 0.95rem; }
}

/* ── Tablet: ≤ 900px ── */
@media (max-width: 900px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img  { height: 320px; }
  .about-badge-float { bottom: -1rem; right: -0.5rem; }
  .counters-row { grid-template-columns: repeat(2, 1fr); }
  .why-visual { order: -1; }

  /* [MODIFIED v4] Why list: 2-column grid on tablet */
  .why-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  /* [MODIFIED v4] Reduce why-item padding on tablet */
  .why-list-grid .why-item {
    padding: 0.85rem 1rem;
  }

  /* [MODIFIED v4] Trainer card: stack on tablet */
  .trainer-card {
    flex-direction: column;
    flex: 0 0 calc(100% - 4rem);
    min-height: auto;
  }
  .trainer-photo-wrap { flex: none; height: 240px; }
  .trainer-photo-bg   { min-height: 240px; }
  .trainer-photo-initials { font-size: 4rem; }
  .trainer-card-body  { padding: 1.75rem; }
  .trainer-slider-track { padding: 0.5rem 2rem 1.5rem; }
  .trainer-card { flex: 0 0 calc(100% - 4rem); }

  .tslider-prev { left: 0.25rem; }
  .tslider-next { right: 0.25rem; }
  .gslider-prev { left: 0.25rem; }
  .gslider-next { right: 0.25rem; }

  .gallery-slider-track { padding: 0; }
  .gslide { flex: 0 0 100%; }

  /* [MODIFIED v4] Testimonials single-col */
  .testimonial-card { padding: 1.75rem; }
}

/* ── Mobile: ≤ 640px ── */
@media (max-width: 640px) {
  :root { --section-pad: var(--section-pad-sm); }

  /* Navbar */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--trans-med), opacity var(--trans-med);
    z-index: 999;
    pointer-events: none;
  }

  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav-link { padding: 0.8rem 1rem; border-radius: 8px; display: block; text-align: left; font-size: 0.95rem; }
  .nav-link:hover { background: var(--blue-dim); }

  .btn-call { display: block; text-align: center; margin-top: 0.5rem; border-radius: 10px; }

  /* Hero */
  .hero-title  { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-stats  { gap: 0.5rem; }
  .stat-card   { min-width: calc(50% - 0.4rem); padding: 0.7rem; }
  .hero-cta    { gap: 0.75rem; }

  /* Services: 2-col compact on mobile */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card  { padding: 1.1rem; }
  .service-title { font-size: 1rem; }
  .service-desc  { font-size: 0.78rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-big-num { font-size: 2.5rem; }

  /* [FIXED] Benefits: 2-column grid on mobile instead of stacked 1-column */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* [FIXED] Compact vertical card layout to fit cleanly in 2 columns */
  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.1rem 0.85rem;
    gap: 0.6rem;
  }
  .benefit-title { font-size: 0.82rem; }
  .benefit-desc  { font-size: 0.72rem; }

  /* Membership: single-card swipe on mobile */
  .membership-slider-wrap { overflow: visible; }
  .membership-grid {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    padding: 0 0 0.5rem;
  }
  .plan-card    { flex: 0 0 85vw; min-width: 0; }
  .plan-featured { transform: none; }
  .membership-dots { display: flex; }

  /* [MODIFIED v4] Gallery: 1 visible mobile */
  .gallery-slider-track { padding: 0; }
  .gslide { flex: 0 0 100%; }
  .gslide-img { height: 260px; }

  /* [MODIFIED v4] Trainer: stack + compact on mobile */
  .trainer-slider-track { padding: 0.5rem 1rem 1.5rem; }
  .trainer-card {
    flex: 0 0 calc(100% - 2rem);
    flex-direction: column;
    min-height: auto;
  }
  .trainer-photo-wrap { flex: none; height: 200px; }
  .trainer-photo-bg   { min-height: 200px; }
  .trainer-photo-initials { font-size: 3.5rem; }
  .trainer-card-body  { padding: 1.5rem 1.25rem; }
  .trainer-name       { font-size: 1.5rem; }
  .trainer-specialty  { font-size: 0.85rem; }
  .btn-trainer-call   { width: 100%; justify-content: center; }
  .trainer-meta-top   { gap: 0.5rem; }

  .tslider-prev { left: 0; }
  .tslider-next { right: 0; }
  .gslider-prev { left: 0; }
  .gslider-next { right: 0; }
  .tslider-btn, .gslider-btn { width: 40px; height: 40px; font-size: 1.4rem; }

  /* [MODIFIED v4] Testimonials — full width, compact */
  .testimonial-card   { padding: 1.5rem 1.25rem; }
  .testimonial-text   { font-size: 0.88rem; }
  .testimonial-author { flex-direction: column; text-align: center; gap: 0.75rem; }
  .author-info        { text-align: center; }

  /* [MODIFIED v4] Why list: 2-col grid on mobile */
  .why-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  /* [MODIFIED v4] Compact why items on mobile */
  .why-list-grid .why-item {
    padding: 0.75rem 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .why-list-grid .why-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .why-item-title { font-size: 0.8rem; }
  .why-item-desc  { font-size: 0.74rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* About */
  .about-badge-float { display: none; }
  .timings-card { flex-direction: column; gap: 0.9rem; }
  .timing-divider { width: 100%; height: 1px; }
  .counters-row   { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .counter-num    { font-size: 2.2rem; }

  /* Why */
  .why-visual { order: -1; }
  .why-cta-card { padding: 1.5rem; }

  /* Contact */
  .contact-form { padding: 1.25rem; }

  /* FAQ */
  .faq-question { padding: 1rem 1.25rem; font-size: 0.875rem; }
  .faq-answer { padding: 0 1.25rem; }
  .faq-item.open .faq-answer { padding: 0 1.25rem 1rem; }

  /* Map */
  .map-container { border-radius: 14px; margin: 0 1rem; }
  .map-container iframe { height: 300px; }

  /* Scroll top */
  .scroll-top-btn { bottom: 1.25rem; right: 1.25rem; }

  /* Misc */
  .hidden-mobile { display: none; }

  /* Lightbox */
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }

  /* Section header tighter */
  .section-header { margin-bottom: 1.75rem; }
}

/* ── Very small: ≤ 380px ── */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .services-grid { grid-template-columns: 1fr; }
  .stat-card { min-width: calc(50% - 0.4rem); }
  .why-list-grid { grid-template-columns: 1fr; }
  .trainer-card { flex: 0 0 calc(100% - 2rem); }
  .gslide { flex: 0 0 100%; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  /* Disable counter float for reduced motion */
  .counter-item { animation: none; }
}