/* ==========================================================================
   ELITEFIT PERFORMANCE CENTER — MAIN STYLESHEET
   ₹2–10 Lakh Premium Fitness Brand Theme (Luxury, Modern, High-Energy)
   ========================================================================== */

/* -------- GOOGLE FONTS -------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@800;900&family=Poppins:wght@500;600;700&display=swap');

/* -------- CSS VARIABLES (DESIGN SYSTEM) -------- */
:root {
  /* Color Palette */
  --primary:           #0B1120; /* Dark Slate Blue */
  --primary-rgb:       11, 17, 32;
  --secondary:         #111A30; /* Charcoal Navy */
  --accent:            #FF6B00; /* Premium Orange */
  --accent-rgb:        255, 107, 0;
  --accent-dark:       #E05E00; /* Dark Orange */
  --highlight:         #FF8C1A; /* Secondary Orange */
  --orange:            #FF6B00; /* Primary Orange */
  --orange-dark:       #E05E00; /* Dark Orange */
  --amber:             #F59E0B; /* Amber Accent */
  --amber-rgb:         245, 158, 11;
  --bg-light:          #0B1120; /* Dark Obsidian Blue */
  --bg-section-light:  #111A30; /* Dark Charcoal Navy */
  --text-dark:         #F8FAFC; /* Light slate text */
  --text-muted:        #94A3B8; /* Muted text */
  --text-light:        #F8FAFC;
  --text-light-muted:  #64748B;

  /* Gradients */
  --grad-accent:       linear-gradient(135deg, #FF6B00 0%, #FF8C1A 50%, #E05E00 100%);
  --grad-orange:       linear-gradient(135deg, #FF6B00 0%, #E05E00 100%);
  --grad-dark:         linear-gradient(135deg, #0B1120 0%, #111A30 100%);
  --grad-overlay:      linear-gradient(to bottom, rgba(11, 17, 32, 0.4) 0%, rgba(11, 17, 32, 0.85) 70%, #0B1120 100%);
  --grad-card:         linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%);
  
  /* Shadow Systems */
  --shadow-sm:         0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md:         0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg:         0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-accent:     0 8px 30px rgba(255, 107, 0, 0.25);
  --shadow-orange:     0 8px 30px rgba(255, 107, 0, 0.25);
  --shadow-glass:      0 8px 32px 0 rgba(0, 0, 0, 0.35);
  
  /* Borders */
  --border-light:      1px solid rgba(255, 255, 255, 0.08);
  --border-dark:       1px solid rgba(255, 255, 255, 0.08);
  
  /* Layout Metrics */
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         24px;
  --radius-xl:         36px;
  --radius-full:       9999px;
  --transition:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:         'Montserrat', sans-serif;
  --font-sub:          'Poppins', sans-serif;
  --font-body:         'Inter', sans-serif;
  --container-w:       1280px;
  --header-h:          84px;
  --header-h-sm:       68px;
}

/* -------- CSS RESET -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; border: none; background: none; }
button { cursor: pointer; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* -------- CUSTOM SCROLLBAR -------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 5px; border: 2px solid var(--primary); }
::-webkit-scrollbar-thumb:hover { background: var(--highlight); }

/* -------- CONTAINER LAYOUT -------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* -------- UTILITY CLASSES -------- */
.section { padding: 7.5rem 0; position: relative; }
@media (max-width: 768px) { .section { padding: 4.5rem 0; } }
.bg-dark-sec { background: var(--primary); color: var(--text-light); }
.bg-light-sec { background: var(--bg-section-light); }
.text-accent { color: var(--accent); }
.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w-full { width: 100%; }

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.45);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}
.btn-dark-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-dark-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 1.3rem 2.8rem; font-size: 1.05rem; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.8rem; }

/* -------- SECTION HEADERS -------- */
.section-header {
  max-width: 750px;
  margin: 0 auto 4.5rem;
  text-align: center;
}
.section-badge {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  padding: 0.3rem 1rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-full);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: inherit;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.bg-dark-sec .section-desc { color: var(--text-light-muted); }

/* -------- FLOATING BACKGLOWS -------- */
.backglow-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.backglow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
  animation: glowMove 15s ease-in-out infinite alternate;
}
.bg-dark-sec .backglow { opacity: 0.08; }
.bg-1 { width: 500px; height: 500px; background: var(--accent); top: 10%; left: -200px; }
.bg-2 { width: 600px; height: 600px; background: var(--highlight); bottom: 10%; right: -250px; animation-delay: -5s; }
@keyframes glowMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.9); }
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.2) 30%, rgba(132, 204, 22, 0.2) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}
.header.scrolled {
  background: rgba(11, 15, 25, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.header.scrolled::after {
  opacity: 0.4;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  height: 84px;
  padding: 0 24px;
  margin: 0 auto;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1200px) {
  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
    align-items: center;
    padding: 0 56px;
    gap: 40px; /* Minimum separation gap between nav and actions */
  }
}
.header.scrolled .header-container {
  height: 68px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--grad-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--accent);
  border-radius: calc(var(--radius-sm) + 3px);
  opacity: 0.5;
}
.logo-icon svg { width: 24px; height: 24px; fill: white; }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--text-light);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}
.header.scrolled .logo {
  transform: scale(0.95);
}

/* Desktop Navigation Menu */
.nav-menu { display: none; }
@media (min-width: 1200px) {
  .nav-menu {
    display: block;
    grid-column: 2;
    justify-self: center;
  }
  .nav-list {
    display: flex;
    align-items: center;
    gap: 16px; /* Grouped closer together for compact luxury feel */
  }
  .nav-link {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-link:hover {
    color: var(--accent);
  }
  .nav-link:hover::after {
    width: 50%;
    left: 25%;
  }
  .nav-link.active {
    background: rgba(249, 115, 22, 0.12); /* Subtle active-state pill */
    color: var(--orange) !important;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: none; /* Flat styling, completely removes active glow */
  }
  .nav-link.active::after {
    display: none;
  }
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px; /* Increased separation */
}
@media (min-width: 1200px) {
  .header-actions {
    grid-column: 3;
    justify-self: end;
  }
}

.btn-cta-call {
  height: 52px; /* Matched height */
  padding: 0 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.6); /* Dark glass button */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-cta-call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.btn-cta-call:hover {
  transform: translateY(-3px); /* Hover lift */
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn-cta-call:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.btn-cta-trial {
  height: 52px; /* Matched height */
  padding: 0 28px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #F97316 100%);
  background-size: 200% auto;
  background-position: left center;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: ctaPulse 15s infinite;
}
.btn-cta-trial:hover {
  transform: translateY(-3px); /* Hover lift */
  background-position: right center; /* Gradient shift */
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.45);
}
.btn-cta-trial:active {
  transform: translateY(0);
}

@keyframes ctaPulse {
  0%, 90%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
  }
  93% {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4), 0 0 0 8px rgba(249, 115, 22, 0.15);
  }
  96% {
    transform: scale(0.98);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.25), 0 0 0 4px rgba(249, 115, 22, 0.1);
  }
  98% {
    transform: scale(1.02);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.35), 0 0 0 2px rgba(249, 115, 22, 0.05);
  }
}

/* Responsive adjustments for mid-size desktop screens to prevent layout overflow */
@media (min-width: 1200px) and (max-width: 1349px) {
  .header-container {
    padding: 0 28px;
    gap: 16px;
    grid-template-columns: auto 1fr auto;
  }
  .logo {
    gap: 10px;
  }
  .logo-icon {
    width: 38px;
    height: 38px;
  }
  .logo-icon svg {
    width: 18px;
    height: 18px;
  }
  .logo-title {
    font-size: 1.3rem;
  }
  .logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
  .nav-list {
    gap: 12px;
  }
  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }
  .header-actions {
    gap: 12px;
  }
  .btn-cta-call, .btn-cta-trial {
    height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }
}

@media (max-width: 1199px) {
  .header-actions .btn-cta-call,
  .header-actions .btn-cta-trial {
    display: none;
  }
}

/* Hamburger Toggle Button */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: var(--radius-full);
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
}
@media (min-width: 1200px) {
  .mobile-toggle { display: none; }
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu Panel */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  padding: 120px 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu-panel.open {
  transform: translateX(0);
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.mobile-nav-link {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.4rem;
  color: #ffffff;
  display: inline-block;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent);
}
.mobile-nav-link:hover::after {
  width: 40%;
  left: 30%;
}

.mobile-menu-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}
.mobile-menu-cta-group .btn-cta-call,
.mobile-menu-cta-group .modal-btn-wa,
.mobile-menu-cta-group .btn-cta-trial {
  width: 100%;
  height: 50px;
  border-radius: var(--radius-full);
  font-size: 14px;
}
.mobile-menu-cta-group .btn-cta-call {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
}
.mobile-menu-cta-group .modal-btn-wa {
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
}
.mobile-menu-cta-group .modal-btn-wa:hover {
  background: #20ba56;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.mobile-menu-cta-group .btn-cta-trial {
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
  animation: none; /* Disable heartbeat loop in menu to avoid distraction */
}

.mobile-menu-footer {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.mobile-menu-footer p { font-size: 0.8rem; color: var(--text-light-muted); margin-bottom: 0.25rem; }

/* Overlay back-layer */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.menu-overlay.active { opacity: 1; pointer-events: all; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--text-light);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-overlay);
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-h);
}
.hero-content { max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: var(--border-light);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light-muted);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 4rem; }
@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Trust Badges Grid */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 650px;
}
@media (min-width: 640px) { .hero-trust { grid-template-columns: repeat(4, 1fr); } }
.trust-badge-item {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-light);
  backdrop-filter: blur(10px);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.trust-badge-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--accent);
}
.trust-number {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1.2;
}
.trust-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Scroll indicator anchor */
.hero-scroll-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-wheel {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  position: relative;
}
.hero-scroll-wheel::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--radius-full);
  animation: mouseWheel 1.8s infinite;
}
@keyframes mouseWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--bg-light);
  border: var(--border-dark);
  padding: 3rem 2.2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-slow);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-dark);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-slow);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.feat-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px dashed var(--accent);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.feat-icon-box svg { width: 32px; height: 32px; fill: currentColor; }
.feature-card:hover .feat-icon-box {
  background: rgba(255, 255, 255, 0.1);
  border-style: solid;
  border-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.05) rotate(5deg);
}

.feat-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: inherit;
  margin-bottom: 1rem;
}
.feat-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: var(--transition);
}
.feature-card:hover .feat-desc { color: var(--text-light-muted); }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}
.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img-fallback {
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--secondary) 0%, transparent 100%);
  z-index: 1;
}
.service-img-fallback svg {
  width: 70px;
  height: 70px;
  opacity: 0.15;
  fill: var(--text-light);
  transition: var(--transition-slow);
}
.service-card:hover .service-img-fallback svg {
  transform: scale(1.15) rotate(-3deg);
  opacity: 0.3;
}
.service-card-body {
  padding: 2.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  transition: var(--transition);
}
.service-learn-more svg { width: 14px; height: 14px; fill: currentColor; transition: var(--transition); }
.service-card:hover .service-learn-more { color: var(--highlight); }
.service-card:hover .service-learn-more svg { transform: translateX(5px); }

/* ==========================================================================
   TRANSFORMATION SECTION
   ========================================================================== */
.transform-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .transform-container { grid-template-columns: 1.2fr 1fr; } }

/* Before After Comparison Slider */
.comparison-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: var(--border-light);
  user-select: none;
}
.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-img-fallback {
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.slider-img-fallback svg { width: 90px; height: 90px; fill: currentColor; opacity: 0.15; margin-bottom: 10px; }
.slider-img-fallback span { font-family: var(--font-head); font-weight: 900; font-size: 2.5rem; text-transform: uppercase; letter-spacing: 0.05em; }

.slider-img-before {
  z-index: 1;
}
.slider-img-after {
  z-index: 2;
  width: 50%; /* Adjusted dynamically by JS */
  overflow: hidden;
}
/* Ensure the inner fallback image doesn't collapse and spans full width of container */
.slider-img-after .slider-img-fallback {
  width: 100%;
  min-width: 100%; /* Important: prevents shrinking */
}
.slider-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  border: var(--border-light);
  color: var(--text-light);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  z-index: 3;
}
.slider-label-before { left: 1.5rem; }
.slider-label-after { right: 1.5rem; }

/* The drag bar */
.comparison-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* Adjusted by JS */
  width: 4px;
  background: var(--accent);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 10px var(--accent);
}
.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
  cursor: ew-resize;
  pointer-events: all;
  transition: transform 0.1s;
}
.comparison-handle svg { width: 20px; height: 20px; fill: currentColor; }
.comparison-slider-wrapper:hover .comparison-handle { transform: translate(-50%, -50%) scale(1.1); }

/* Range overlay input cover (invisible track, handle matches mouse position) */
.comparison-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  cursor: ew-resize;
}

/* Transformation Metrics */
.transform-info-col { display: flex; flex-direction: column; gap: 2.2rem; }
.transform-metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-light);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  position: relative;
}
.transform-metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
}
.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.metric-name-tag { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--text-light); }
.metric-result-badge {
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-sm);
}
.metric-timeline { font-size: 0.85rem; color: var(--accent); font-family: var(--font-sub); font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; }
.metric-quote { font-family: var(--font-body); font-style: italic; color: var(--text-light-muted); line-height: 1.6; }

/* Transformation Mini Tracker Grid */
.mini-tracker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tracker-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.tracker-item:last-child { border-right: none; }
.tracker-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--text-light);
  line-height: 1.2;
}
.tracker-lbl {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==========================================================================
   MEMBERSHIP PLANS SECTION
   ========================================================================== */
.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 768px) { .membership-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .membership-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  background: var(--bg-light);
  border: var(--border-dark);
  border-radius: var(--radius-md);
  padding: 3.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* Popular tier styling */
.price-card.popular {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: scale(1.03);
}
.price-card.popular:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.4);
}
.price-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
}

.price-header {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 125px;
}
.price-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: inherit;
}
.price-card.popular .price-name { color: var(--accent); }
.price-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1;
  color: inherit;
}
.price-amount span {
  font-size: 1.8rem;
  font-weight: 700;
}
.price-term {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-sub);
  margin-top: 6px;
}
.price-card.popular .price-term { color: var(--text-light-muted); }

.price-features {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}
.price-card.popular .price-features li { color: rgba(248,250,252,0.85); }
.price-features li svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }
.price-features li.disabled { opacity: 0.45; text-decoration: line-through; }
.price-features li.disabled svg { fill: var(--text-light-muted); }

.price-card .btn { width: 100%; }

/* ==========================================================================
   TRAINERS SECTION
   ========================================================================== */
.trainers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .trainers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trainers-grid { grid-template-columns: repeat(3, 1fr); } }

.trainer-card {
  background: var(--bg-light);
  border: var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.trainer-img-box {
  position: relative;
  height: 380px;
  background: var(--secondary);
  overflow: hidden;
}
.trainer-img-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
}
.trainer-img-fallback svg { width: 100px; height: 100px; fill: currentColor; opacity: 0.1; }
.trainer-img-fallback-label {
  position: absolute;
  bottom: 3.5rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.05);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
}
.trainer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition-slow);
}
.trainer-card:hover .trainer-overlay { opacity: 1; }

/* Social Icons in hover overlay */
.trainer-socials {
  position: absolute;
  top: 1.5rem;
  right: -50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-slow);
}
.trainer-card:hover .trainer-socials { right: 1.5rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(15, 23, 42, 0.8);
  border: var(--border-light);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--text-light); transform: scale(1.1); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.trainer-hover-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-slow);
}
.trainer-card:hover .trainer-hover-details { transform: translateY(0); opacity: 1; }

.trainer-cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}
.trainer-cert-tag {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.trainer-info-static {
  padding: 1.8rem;
  text-align: center;
  transition: var(--transition-slow);
  background: var(--bg-light);
  position: relative;
  z-index: 3;
}
.trainer-card:hover .trainer-info-static { transform: translateY(100%); opacity: 0; pointer-events: none; height: 0; padding: 0; }

.trainer-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: inherit;
  margin-bottom: 0.3rem;
}
.trainer-card:hover .trainer-name { color: var(--text-light); }
.trainer-role {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.trainer-exp {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trainer-card:hover .trainer-exp { color: var(--text-light-muted); }

/* ==========================================================================
   FACILITIES SHOWCASE SECTION
   ========================================================================== */
.facilities-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Tabs list styling */
.facility-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}
.facility-tab-btn {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: var(--border-light);
  transition: var(--transition);
}
.facility-tab-btn:hover { background: rgba(255, 255, 255, 0.06); color: var(--text-light); }
.facility-tab-btn.active { background: var(--accent); color: var(--text-light); border-color: var(--accent); }

/* Tab content panel display */
.facility-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.facility-panel.active { display: grid; }
@media (min-width: 1024px) {
  .facility-panel { grid-template-columns: 1.2fr 1fr; }
}

.facility-show-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.facility-img-fallback {
  width: 100%;
  height: 100%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
}
.facility-img-fallback svg { width: 120px; height: 120px; fill: currentColor; opacity: 0.1; }
.facility-img-fallback::after {
  content: 'EliteFit Interactive Gallery View';
  position: absolute;
  bottom: 2rem;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facility-details { display: flex; flex-direction: column; gap: 1.5rem; }
.facility-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-light);
  line-height: 1.2;
}
.facility-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light-muted);
  line-height: 1.65;
}
.facility-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facility-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
}
.facility-feature-item svg { width: 16px; height: 16px; fill: var(--accent); }

/* ==========================================================================
   VIDEO TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-carousel-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
  min-width: 100%;
  width: 100%;
  padding: 0 1rem;
}
.testimonial-bubble {
  background: var(--bg-light);
  border: var(--border-dark);
  padding: 3.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonial-bubble { flex-direction: row; align-items: center; gap: 3rem; }
}

.test-video-block {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .test-video-block { width: 280px; height: 180px; } }

.test-video-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.test-video-fallback svg { width: 50px; height: 50px; fill: currentColor; }
.test-play-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(249,115,22,0.6);
  transition: var(--transition);
}
.test-play-btn:hover { background: var(--highlight); transform: scale(1.1); }
.test-play-btn svg { width: 24px; height: 24px; fill: currentColor; margin-left: 4px; }

.test-content-block { flex-grow: 1; }
.test-rating { display: flex; gap: 4px; color: #FBBF24; margin-bottom: 1rem; }
.test-rating svg { width: 18px; height: 18px; fill: currentColor; }
.test-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}
.test-author-row { display: flex; align-items: center; gap: 15px; }
.test-avatar {
  width: 50px;
  height: 50px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}
.test-author-info { display: flex; flex-direction: column; line-height: 1.3; }
.test-author-name { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--text-dark); }
.test-author-program { font-family: var(--font-sub); font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; }

/* Slide Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border: var(--border-dark);
  border-radius: 50%;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--text-light); }
.carousel-btn svg { width: 18px; height: 18px; fill: currentColor; }

.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 10px;
  height: 10px;
  background: var(--text-light-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.carousel-dot.active { width: 24px; background: var(--accent); border-radius: var(--radius-full); }

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */
.gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Category Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-filter-btn {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  background: var(--bg-section-light);
  border: var(--border-dark);
  transition: var(--transition);
}
.gallery-filter-btn:hover { background: rgba(15,23,42,0.05); color: var(--primary); }
.gallery-filter-btn.active { background: var(--primary); color: var(--text-light); border-color: var(--primary); }

/* Grid system with flex/masonry simulation */
.gallery-grid {
  columns: 1;
  column-gap: 1.5rem;
}
@media (min-width: 500px) { .gallery-grid { columns: 2; } }
@media (min-width: 900px) { .gallery-grid { columns: 3; } }
@media (min-width: 1200px) { .gallery-grid { columns: 4; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-section-light);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item.landscape { aspect-ratio: 4 / 3; }
.gallery-item.portrait { aspect-ratio: 3 / 4; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.gallery-fallback-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 1.5rem;
  text-align: center;
}
.gallery-fallback-art svg { width: 64px; height: 64px; fill: currentColor; opacity: 0.15; margin-bottom: 12px; }
.gallery-item-category {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.gallery-item-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-top: 4px;
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-hover-overlay { opacity: 1; }

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom-icon { transform: scale(1); }
.gallery-zoom-icon svg { width: 20px; height: 20px; fill: currentColor; }

/* Lightbox popup */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-modal.active { display: flex; }
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--text-light);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-content-box {
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img-showcase {
  width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--accent);
}
.lightbox-img-showcase svg { width: 150px; height: 150px; fill: currentColor; opacity: 0.15; }
.lightbox-caption {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  text-align: center;
}
.lightbox-category {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ==========================================================================
   BMI CALCULATOR SECTION
   ========================================================================== */
.bmi-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .bmi-container { grid-template-columns: 1fr 1.2fr; } }

.bmi-calc-card {
  background: var(--bg-light);
  border: var(--border-dark);
  border-radius: var(--radius-md);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
}
.bmi-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bmi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bmi-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bmi-group label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bmi-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.bmi-input-wrapper input,
.bmi-input-wrapper select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-section-light);
  border: 1px solid rgba(15,23,42,0.1);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.bmi-input-wrapper input:focus,
.bmi-input-wrapper select:focus {
  border-color: var(--accent);
  background: var(--bg-light);
  box-shadow: 0 0 10px rgba(249,115,22,0.1);
  outline: none;
}
.bmi-unit {
  position: absolute;
  right: 1.2rem;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* Gender selector styling */
.gender-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.gender-option {
  position: relative;
}
.gender-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.gender-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem;
  background: var(--bg-section-light);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.gender-option input:checked + .gender-label {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.05);
  color: var(--accent);
}
.bmi-result-card {
  background: var(--secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bmi-dashboard-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}
.bmi-dashboard-badge {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.bmi-dashboard-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  color: #ffffff;
  text-transform: uppercase;
}

.bmi-dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 480px) {
  .bmi-dashboard-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.bmi-chart-wrapper {
  flex-shrink: 0;
  width: 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bmi-circular-chart {
  max-width: 120px;
  width: 100%;
}
.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 2.8;
}
.circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.8;
  stroke-linecap: round;
  transition: stroke-dasharray 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.circle-text {
  fill: #ffffff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 8px;
  text-anchor: middle;
}
.bmi-score-lbl {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.bmi-metrics-list {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.bmi-metric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.bmi-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bmi-metric-name {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light-muted);
}
.bmi-metric-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

/* Color indicators for BMI status */
.bmi-status-underweight { color: #60A5FA !important; }
.bmi-status-normal { color: #34D399 !important; }
.bmi-status-overweight { color: #F59E0B !important; } /* Amber */
.bmi-status-obese { color: #EF4444 !important; }

.bmi-analysis-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.bmi-analysis-title {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.bmi-analysis-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

@keyframes slideDownFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: var(--border-dark);
  background: var(--bg-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(15,23,42,0.2); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-md); }

.faq-header {
  width: 100%;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.faq-icon-box {
  width: 32px;
  height: 32px;
  background: var(--bg-section-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-dark);
}
.faq-icon-box svg { width: 14px; height: 14px; fill: currentColor; transition: var(--transition); }
.faq-item.active .faq-icon-box { background: var(--accent); color: var(--text-light); transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content {
  padding: 0 2.2rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-container { grid-template-columns: 1fr 1.2fr; } }

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .contact-card-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-info-card {
  background: var(--bg-section-light);
  border: var(--border-dark);
  padding: 2.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 15px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,115,22,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: currentColor; }
.contact-info-details h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.contact-info-details p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Embedded Map display fallback */
.contact-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 280px;
  position: relative;
  background: var(--primary);
  border: var(--border-dark);
}
.map-iframe-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 2rem;
  text-align: center;
}
.map-iframe-fallback svg { width: 50px; height: 50px; fill: currentColor; opacity: 0.15; margin-bottom: 8px; }
.map-iframe-fallback p { font-family: var(--font-sub); font-size: 0.85rem; font-weight: 700; color: var(--text-light-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* Contact Form */
.contact-form-card {
  background: var(--bg-light);
  border: var(--border-dark);
  border-radius: var(--radius-md);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-section-light);
  border: 1px solid rgba(15,23,42,0.1);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-light);
  box-shadow: 0 0 10px rgba(249,115,22,0.1);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { align-self: flex-start; }
@media (max-width: 640px) { .contact-form .btn { width: 100%; } }

/* ==========================================================================
   POPUP LEAD SYSTEM (MODAL)
   ========================================================================== */
.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lead-modal.active { display: flex; }
.lead-modal-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: modalEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalEnter {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.lead-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.lead-modal-close:hover { color: var(--accent); }

.lead-modal-header {
  background: var(--primary);
  color: var(--text-light);
  padding: 3rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.lead-modal-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-accent);
}
.lead-modal-header h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.2;
}
.lead-modal-header p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light-muted);
  margin-top: 6px;
}

.lead-modal-body { padding: 2.5rem; }
.lead-modal-form { display: flex; flex-direction: column; gap: 1.5rem; }
.lead-modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 480px) { .lead-modal-actions { grid-template-columns: repeat(2, 1fr); } }

/* Quick Action Call buttons inside Modal */
.modal-btn-call {
  background: rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.1);
  color: var(--primary);
  padding: 0.9rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.modal-btn-call:hover { background: var(--primary); color: var(--text-light); border-color: var(--primary); }
.modal-btn-call svg { width: 16px; height: 16px; fill: currentColor; }

.modal-btn-wa {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
  padding: 0.9rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.modal-btn-wa:hover { background: #25D366; color: var(--text-light); border-color: #25D366; }
.modal-btn-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================================================
   FLOATING BUTTONS SYSTEM
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: translateY(-5px) scale(1.05); }
.float-btn svg { width: 26px; height: 26px; fill: currentColor; }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--accent); }

/* Sticky CTA Row on Mobile View */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  border-top: var(--border-light);
  padding: 0.8rem 1.5rem;
  z-index: 989;
  display: flex;
  justify-content: center;
}
.sticky-mobile-cta .btn { width: 100%; max-width: 480px; }
@media (min-width: 768px) {
  .sticky-mobile-cta { display: none !important; }
}
/* Offset body margin for mobile sticky bar */
@media (max-width: 767px) {
  body { padding-bottom: 70px; }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: var(--secondary);
  color: var(--text-light);
  padding: 6rem 0 3rem;
  border-top: var(--border-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.65;
}
.footer-social-row { display: flex; gap: 12px; }
.footer-social-row .social-link { background: rgba(255,255,255,0.03); }

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link-item a {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--text-light-muted);
  transition: var(--transition);
}
.footer-link-item a:hover { color: var(--accent); padding-left: 5px; }

.footer-hours-list { display: flex; flex-direction: column; gap: 12px; }
.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light-muted);
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  padding-bottom: 6px;
}
.footer-hours-item span:last-child { color: var(--text-light); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light-muted);
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--text-light-muted);
  transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--accent); }

/* -------- DYNAMIC MEDIA & IMAGE RULES -------- */
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.service-card:hover .service-img {
  transform: scale(1.1);
}

.comparison-img-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.slider-img-after-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.trainer-card:hover .trainer-img {
  transform: scale(1.05);
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.facility-show-box:hover .facility-img {
  transform: scale(1.03);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.test-video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.test-video-block:hover .test-video-cover {
  transform: scale(1.05);
}
.test-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.45);
  z-index: 1;
}
.test-play-btn {
  z-index: 2;
}
.test-avatar {
  flex-shrink: 0;
}
.price-card.popular .btn-primary {
  background: var(--accent);
  color: var(--text-light);
}
.price-card.popular .btn-primary:hover {
  background: var(--accent-dark);
}
.logo-icon svg {
  fill: var(--text-light);
}

