/* ==========================================================================
   GYM ZONE BASHUNDHARA - PREMIUM STYLESHEET
   Dark Luxury Fitness Design System with Gold & Amber Glassmorphism
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

/* --- Root CSS Variables --- */
:root {
  /* Color Palette */
  --bg-dark: #08080a;
  --bg-card: rgba(18, 18, 24, 0.75);
  --bg-card-hover: rgba(28, 28, 38, 0.85);
  --bg-elevated: #121218;
  --bg-surface: #181822;

  --gold-primary: #ffc800;
  --gold-hover: #ffe066;
  --gold-dark: #cc9f00;
  --gold-gradient: linear-gradient(135deg, #ffea75 0%, #ffc800 50%, #d49b00 100%);
  --gold-glow: rgba(255, 200, 0, 0.25);
  --gold-glow-strong: rgba(255, 200, 0, 0.45);

  --text-main: #f0f0f5;
  --text-muted: #a0a0b2;
  --text-dim: #6b6b7b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(255, 200, 0, 0.25);
  --border-gold-strong: rgba(255, 200, 0, 0.6);

  /* Fonts */
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Oswald', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation & Shadows */
  --shadow-card: 0 12px 32px -4px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 25px -3px rgba(255, 200, 0, 0.3);
  --glass-backdrop: blur(16px) saturate(180%);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #2a2a36;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.gold-text {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Premium Light-Sweep Metallic Shimmer for Headline Highlights */
.shimmer-text {
  background: linear-gradient(
    110deg,
    #FFC800 0%,
    #FFE280 25%,
    #FFFFFF 50%,
    #FFE280 75%,
    #FFC800 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slowShimmer 5.5s linear infinite;
  display: inline-block;
  will-change: background-position;
}

@keyframes slowShimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.bengali-font {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9em;
  letter-spacing: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header Styles */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-tag i {
  font-size: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.center-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Spacing */
section {
  padding: 6rem 0;
  position: relative;
}

/* --- Buttons & UI Controls --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s ease, 
              border-color 0.3s ease, 
              color 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  will-change: transform, box-shadow;
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
}

@keyframes btnBreathing {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.45), 0 0 15px rgba(255, 200, 0, 0.25);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 14px 35px rgba(255, 200, 0, 0.72), 0 0 25px rgba(255, 200, 0, 0.45);
    transform: translateY(-2px) scale(1.025);
  }
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  animation: btnBreathing 3.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.btn-primary:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 45px rgba(255, 200, 0, 0.8), 0 0 30px rgba(255, 200, 0, 0.5);
  color: #000000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 200, 0, 0.18);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 200, 0, 0.4), 0 0 18px rgba(255, 200, 0, 0.25);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* Glassmorphism Card Component */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 200, 0, 0.12);
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.top-bar {
  background: #040405;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-info {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info-item i {
  color: var(--gold-primary);
}

.top-badge {
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(255, 200, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.4rem;
  box-shadow: var(--shadow-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 2.75rem;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-gold);
  z-index: 1002;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-link i {
  color: var(--gold-primary);
  width: 24px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem 0;
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(255, 200, 0, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 200, 0, 0.05) 0%, transparent 50%),
              var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 100%),
              linear-gradient(to bottom, rgba(0,0,0,1) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 100%),
                      linear-gradient(to bottom, rgba(0,0,0,1) 85%, transparent 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 10, 0.95) 0%,
    rgba(8, 8, 10, 0.72) 35%,
    rgba(8, 8, 10, 0.25) 70%,
    rgba(8, 8, 10, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) contrast(1.2) saturate(1.1);
  position: relative;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(24, 24, 32, 0.8);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stars {
  color: var(--gold-primary);
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
}

.rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Stats Counter Banner */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   INFINITE SCROLLING MARQUEE TICKER
   ========================================================================== */
.marquee-section {
  width: 100%;
  overflow: hidden;
  background: rgba(12, 12, 16, 0.98);
  border-top: 1px solid rgba(255, 200, 0, 0.25);
  border-bottom: 1px solid rgba(255, 200, 0, 0.25);
  padding: 1.15rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  animation: scrollMarquee 38s linear infinite;
  will-change: transform;
}

.marquee-section:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F0F0F5;
  white-space: nowrap;
}

.marquee-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.6));
}
.hero-card-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@keyframes subtleFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-highlight-box {
  background: rgba(18, 18, 24, 0.88);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: var(--glass-backdrop);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65), 0 0 18px rgba(255, 200, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease;
  animation: subtleFloat 5s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.hero-highlight-box:nth-child(1) { animation-delay: 0s; }
.hero-highlight-box:nth-child(2) { animation-delay: 1.6s; }
.hero-highlight-box:nth-child(3) { animation-delay: 3.2s; }

.hero-highlight-box:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.02);
  background: rgba(28, 28, 38, 0.95);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 200, 0, 0.25);
}

.highlight-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.highlight-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.highlight-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  filter: brightness(0.9) contrast(1.05);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--glass-backdrop);
  max-width: 280px;
}

.about-badge-icon {
  font-size: 2rem;
  color: var(--gold-primary);
}

.about-badge-text h5 {
  font-size: 1.2rem;
  color: #ffffff;
}

.about-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.pillar-card i {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.pillar-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-img-box {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-img-box img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 8, 10, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.5rem;
}

.service-features-list li {
  font-size: 0.875rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.service-features-list li i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

/* ==========================================================================
   MEMBERSHIP PLANS & COMPARISON
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(255, 200, 0, 0.08) 0%, rgba(18, 18, 24, 0.85) 100%);
  box-shadow: 0 15px 35px rgba(255, 200, 0, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 1.25rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-gold);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.plan-period {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.plan-savings {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.plan-benefits {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-benefits li {
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.plan-benefits li i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.plan-benefits li.disabled {
  color: var(--text-dim);
  text-decoration: line-through;
}

.plan-benefits li.disabled i {
  color: var(--text-dim);
}

/* Membership Comparison Table */
.comparison-wrapper {
  margin-top: 4rem;
}

.comparison-table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  color: #ffffff;
  font-weight: 600;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.check-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.cross-icon {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* ==========================================================================
   WORKOUT SCHEDULE & BMI CALCULATOR
   ========================================================================== */
.schedule-section {
  background: var(--bg-elevated);
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
  font-weight: 600;
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.schedule-table th, .schedule-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.schedule-table th {
  background: rgba(255, 200, 0, 0.08);
  font-family: var(--font-heading);
  color: var(--gold-primary);
  font-size: 1.05rem;
}

.time-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.class-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.tag-strength { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.tag-cardio { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.tag-female { background: rgba(236, 72, 153, 0.2); color: #f472b6; }
.tag-hiit { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }

/* BMI Calculator Box */
.bmi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 5rem;
  background: linear-gradient(135deg, rgba(24, 24, 32, 0.9) 0%, rgba(12, 12, 16, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.bmi-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.form-control {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(255, 200, 0, 0.2);
}

.bmi-result-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.bmi-val {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold-primary);
  line-height: 1;
  margin: 0.5rem 0;
}

.bmi-category {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.bmi-advice {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

/* ==========================================================================
   TRAINERS SECTION
   ========================================================================== */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.trainer-card {
  padding: 0;
  overflow: hidden;
}

.trainer-img-wrap {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.trainer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-normal);
}

.trainer-card:hover .trainer-img-wrap img {
  transform: scale(1.06);
}

.trainer-exp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(8, 8, 10, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.trainer-details {
  padding: 1.5rem;
}

.trainer-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.trainer-spec {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.trainer-bio {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.trainer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.trainer-socials {
  display: flex;
  gap: 0.6rem;
}

.trainer-socials a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trainer-socials a:hover {
  background: var(--gold-primary);
  color: #000;
}

/* ==========================================================================
   GALLERY SECTION WITH LIGHTBOX
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.gallery-item.tall {
  grid-row: span 2;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
}

.gallery-tag {
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-slider {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  text-align: center;
  padding: 3rem 2.5rem;
}

.testi-stars {
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.testi-text {
  font-size: 1.2rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  color: #ffffff;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   FAQS ACCORDION
   ========================================================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;

}

.faq-question i {
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   CONTACT SECTION & MAP
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
}

.info-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.info-details p, .info-details a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-details a:hover {
  color: var(--gold-primary);
}

.map-container {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-top: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(1.2);
}

.contact-form-card {
  padding: 2.5rem;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

/* Opening Hours Card */
.hours-box {
  background: rgba(255, 250, 230, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.day-label {
  color: #ffffff;
  font-weight: 600;
}

.time-label {
  color: var(--gold-primary);
}

/* ==========================================================================
   FLOATING ELEMENTS & MODALS
   ========================================================================== */
/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  color: #ffffff;
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #000000;
  transform: translateY(-4px);
}

/* Generic Modal System */
.app-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.app-modal.open {
  opacity: 1;
  visibility: visible;
}

.app-modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   DARK LUXURY FOOTER
   ========================================================================== */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 1.25rem 0;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--gold-primary);
  color: #000000;
  border-color: var(--gold-primary);
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.52s cubic-bezier(0.215, 0.61, 0.355, 1),
              transform 0.52s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(255, 200, 0, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 200, 0, 0.5); }
  100% { box-shadow: 0 0 15px rgba(255, 200, 0, 0.2); }
}

/* ==========================================================================
   INTERACTIVE 120Hz CURSOR BACKGLOW & CARD SPOTLIGHT EFFECTS
   ========================================================================== */
.cursor-backglow {
  position: fixed;
  top: 0;
  left: 0;
  width: 650px;
  height: 650px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 200, 0, 0.18) 0%,
    rgba(255, 170, 0, 0.08) 35%,
    rgba(255, 140, 0, 0.02) 60%,
    transparent 75%
  );
  transform: translate3d(0, 0, 0) translate3d(-50%, -50%, 0);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease;
  will-change: transform, opacity;
  filter: blur(25px);
  contain: layout style paint;
}

.cursor-backglow.active {
  opacity: 1;
}

.cursor-backglow.hovering {
  width: 850px;
  height: 850px;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.26) 0%,
    rgba(255, 180, 0, 0.12) 35%,
    rgba(255, 150, 0, 0.03) 65%,
    transparent 80%
  );
  filter: blur(20px);
}

/* Card Mouse Spotlight Overlay */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    500px circle at var(--card-mouse-x, -500px) var(--card-mouse-y, -500px),
    rgba(255, 200, 0, 0.14),
    rgba(255, 200, 0, 0.03) 40%,
    transparent 70%
  );
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: 0;
}

.glass-card:hover::before {
  opacity: 1;
}

/* Ensure glass card content stays above spotlight overlay */
.glass-card > * {
  position: relative;
  z-index: 1;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-bg {
    width: 100%;
    opacity: 0.35;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-badge-float {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bmi-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-info {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .input-row {
    grid-template-columns: 1fr;
  }
}

/* Subtle floating and elevation dynamics for feature cards */
.service-card, .pricing-card, .pillar-card, .trainer-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-card:hover, .pricing-card:hover, .pillar-card:hover, .trainer-card:hover {
  transform: translate3d(0, -8px, 0) scale(1.015);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 200, 0, 0.18);
  border-color: var(--gold-primary);
}

/* 120Hz High Refresh Rate Hardware Acceleration & Rendering Optimizations */
.hero-bg img,
.hero-content,
.marquee-content,
.shimmer-text,
.btn-primary,
.gallery-item,
.faq-item,
.app-modal-content,
.back-to-top,
.testimonial-track {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .shimmer-text, .btn-primary, .hero-highlight-box, .marquee-content {
    animation: none !important;
  }
}
