/* ============================================
   CROWN FITNESS — Premium Dark Gold Design System
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Gold Palette */
  --gold-50: #fefce8;
  --gold-100: #fef9c3;
  --gold-200: #fef08a;
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #d4a012;
  --gold-600: #b8860b;
  --gold-700: #996515;
  --gold-800: #7c4f0e;
  --gold-900: #5c3a0a;

  /* Dark Palette */
  --dark-50: #1a1a1a;
  --dark-100: #141414;
  --dark-200: #111111;
  --dark-300: #0d0d0d;
  --dark-400: #0a0a0a;
  --dark-500: #070707;
  --dark-600: #050505;
  --dark-900: #000000;

  /* Neutral */
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;

  /* Accent */
  --accent-champagne: #f7e7ce;
  --accent-bronze: #cd7f32;
  --accent-rose-gold: #b76e79;
  --accent-ivory: #fffff0;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #b8860b, #d4a012, #f0c040, #d4a012, #b8860b);
  --gradient-gold-subtle: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(212, 160, 18, 0.05));
  --gradient-dark: linear-gradient(180deg, #0a0a0a, #111111, #0d0d0d);
  --gradient-hero: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(184, 134, 11, 0.1), rgba(0,0,0,0.9));
  --gradient-card: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(20, 20, 20, 0.95));
  --gradient-gold-text: linear-gradient(90deg, #b8860b, #f0c040, #d4a012);
  --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(240, 192, 64, 0.08) 50%, transparent 100%);

  /* Shadows */
  --shadow-gold: 0 4px 30px rgba(184, 134, 11, 0.15);
  --shadow-gold-lg: 0 8px 60px rgba(184, 134, 11, 0.25);
  --shadow-gold-glow: 0 0 40px rgba(184, 134, 11, 0.3);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 64px rgba(0, 0, 0, 0.6);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 200ms var(--ease-smooth);
  --transition-normal: 400ms var(--ease-smooth);
  --transition-slow: 600ms var(--ease-smooth);
  --transition-ultra: 800ms var(--ease-elegant);

  /* Z-Index Scale */
  --z-splash: 10000;
  --z-nav: 1000;
  --z-modal: 900;
  --z-overlay: 800;
  --z-floating: 100;
  --z-base: 1;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-600) var(--dark-200);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--dark-200);
}

html::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: var(--radius-full);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}

body {
  font-family: var(--font-body);
  background: var(--dark-400);
  color: var(--neutral-200);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--space-md);
  background: var(--gold-600);
  color: var(--dark-900);
  z-index: calc(var(--z-splash) + 1);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* --- Container --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-900);
  z-index: var(--z-splash);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.splash-screen::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: splashPulse 2s ease-in-out infinite;
}

.splash-logo-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.splash-logo {
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.5);
  animation: splashLogoIn 1s var(--ease-bounce) 0.3s forwards;
  filter: drop-shadow(0 0 40px rgba(184, 134, 11, 0.5));
}

.splash-brand {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: splashTextIn 0.8s var(--ease-smooth) 0.8s forwards;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.splash-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--neutral-400);
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0;
  animation: splashTextIn 0.8s var(--ease-smooth) 1.2s forwards;
}

.splash-loader {
  margin-top: var(--space-2xl);
  width: 200px;
  height: 2px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  opacity: 0;
  animation: splashTextIn 0.6s var(--ease-smooth) 1.5s forwards;
}

.splash-loader-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  animation: splashLoad 1.8s var(--ease-smooth) 1.8s forwards;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

.splash-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.splash-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 4s ease-in-out infinite;
}

.splash-screen.fade-out {
  animation: splashFadeOut 0.8s var(--ease-smooth) forwards;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes splashLogoIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes splashTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splashLoad {
  to { width: 100%; }
}

@keyframes splashFadeOut {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); pointer-events: none; }
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 1; }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ============================================
   NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
  background: transparent;
}

header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-badge img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-600);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  transition: all var(--transition-normal);
}

.logo:hover .logo-badge img {
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.5);
  border-color: var(--gold-400);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-links li a {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-300);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  position: relative;
  border-radius: var(--radius-sm);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.nav-links li a:hover {
  color: var(--gold-400);
}

.nav-links li a:hover::after {
  width: 60%;
}

.nav-links li a.active {
  color: var(--gold-400);
}

.nav-links li a.active::after {
  width: 60%;
}

/* CTA Button in Nav */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient-gold);
  color: var(--dark-900) !important;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  -webkit-text-fill-color: var(--dark-900) !important;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s var(--ease-smooth);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn:hover::before {
  left: 100%;
}

.btn::after {
  display: none !important;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-600);
  color: var(--gold-400) !important;
  -webkit-text-fill-color: var(--gold-400) !important;
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(184, 134, 11, 0.1);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}

/* Large Button */
.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--gold-400);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(184, 134, 11, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-900);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--dark-400), transparent);
}

/* Gold Particle Overlay */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: heroParticle 8s linear infinite;
}

@keyframes heroParticle {
  0% { opacity: 0; transform: translateY(100vh) translateX(0); }
  10% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) translateX(50px); }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: var(--space-xl);
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 24px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 3.8s forwards;
}

.hero-badge i {
  font-size: 0.7rem;
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s var(--ease-smooth) 4s forwards;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-line:first-child {
  color: var(--neutral-100);
}

.hero-title .title-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.3));
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-400);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 4.3s forwards;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 4.6s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-smooth) 4.9s forwards;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--space-xs);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-smooth) 5.2s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-600), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 20px;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--neutral-100);
}

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

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--neutral-500);
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  margin: var(--space-lg) auto 0;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

/* Gold line decorators */
.gold-line-left {
  position: absolute;
  left: 0;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-600), transparent);
  opacity: 0.3;
}

.gold-line-right {
  position: absolute;
  right: 0;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(to left, var(--gold-600), transparent);
  opacity: 0.3;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s var(--ease-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s var(--ease-smooth);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s var(--ease-smooth);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.9s var(--ease-smooth);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--dark-400);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient-gold);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold-lg);
  z-index: 2;
}

.about-experience-badge .years {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-900);
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark-200);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content {
  padding-left: var(--space-xl);
}

.about-content .section-badge {
  margin-bottom: var(--space-lg);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.about-text {
  color: var(--neutral-400);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(184, 134, 11, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.about-feature:hover {
  background: rgba(184, 134, 11, 0.1);
  border-color: rgba(184, 134, 11, 0.25);
  transform: translateX(5px);
}

.about-feature i {
  color: var(--gold-500);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-200);
}

/* ============================================
   AMENITIES / SERVICES SECTION
   ============================================ */
#services {
  background: var(--dark-300);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 134, 11, 0.2);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 134, 11, 0.15);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: rgba(184, 134, 11, 0.15);
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.15);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--gold-500);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
  background: var(--dark-400);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-caption p {
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: var(--space-xs);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(184, 134, 11, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(184, 134, 11, 0.2);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ============================================
   TRAINERS SECTION
   ============================================ */
#trainers {
  background: var(--dark-300);
  position: relative;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.trainer-card {
  background: var(--gradient-card);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}

.trainer-card:hover {
  transform: translateY(-10px);
  border-color: rgba(184, 134, 11, 0.2);
  box-shadow: var(--shadow-gold);
}

.trainer-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.trainer-card:hover .trainer-image img {
  transform: scale(1.08);
}

.trainer-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--dark-100), transparent);
}

.trainer-socials {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: var(--space-sm);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.trainer-card:hover .trainer-socials {
  transform: translateY(0);
  opacity: 1;
}

.trainer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.trainer-socials a:hover {
  background: var(--gold-600);
  color: var(--dark-900);
}

.trainer-info {
  padding: var(--space-xl);
}

.trainer-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neutral-100);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.trainer-info .trainer-role {
  font-size: 0.8rem;
  color: var(--gold-500);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.trainer-info p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
#pricing {
  background: var(--dark-400);
  position: relative;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(184, 134, 11, 0.3);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 134, 11, 0.25);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 16px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark-900);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pricing-plan {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.pricing-price {
  margin-bottom: var(--space-xl);
}

.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-400);
  vertical-align: top;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--neutral-100);
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-left: var(--space-xs);
}

.pricing-features {
  margin-bottom: var(--space-2xl);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--neutral-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--gold-500);
  font-size: 0.8rem;
  width: 20px;
  text-align: center;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
#founder {
  background: var(--dark-300);
  position: relative;
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

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

.founder-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-elevated);
}

.founder-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.founder-image:hover img {
  transform: scale(1.03);
}

.founder-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 40%);
  z-index: 1;
}

.founder-image::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-xl);
  z-index: 2;
  pointer-events: none;
}

.founder-content h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: var(--space-sm);
}

.founder-content .founder-title {
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.founder-content .founder-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--neutral-300);
  border-left: 3px solid var(--gold-600);
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.founder-content p {
  color: var(--neutral-400);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.founder-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.founder-stat {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(184, 134, 11, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-lg);
  min-width: 120px;
}

.founder-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.founder-stat .label {
  font-size: 0.7rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
#testimonials {
  background: var(--dark-400);
  position: relative;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(184, 134, 11, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.testimonial-quote-icon {
  font-size: 2rem;
  color: var(--gold-600);
  opacity: 0.3;
  margin-bottom: var(--space-lg);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--neutral-300);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-900);
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-100);
  letter-spacing: 0.5px;
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 1px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
}

.testimonial-stars i {
  color: var(--gold-500);
  font-size: 0.8rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--dark-300);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: rgba(184, 134, 11, 0.03);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  background: rgba(184, 134, 11, 0.06);
  border-color: rgba(184, 134, 11, 0.15);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--gold-500);
  font-size: 1.2rem;
}

.contact-info-details h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-100);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.contact-info-details p,
.contact-info-details a {
  font-size: 0.9rem;
  color: var(--neutral-400);
  line-height: 1.6;
  transition: color var(--transition-fast);
}

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

.contact-social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 50%;
  color: var(--gold-500);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.contact-social-links a:hover {
  background: var(--gold-600);
  color: var(--dark-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Contact Form */
.contact-form {
  background: var(--gradient-card);
  border: 1px solid rgba(184, 134, 11, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neutral-100);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neutral-400);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 134, 11, 0.1);
  border-radius: var(--radius-md);
  color: var(--neutral-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-600);
  background: rgba(184, 134, 11, 0.03);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-600);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8860b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-200);
  color: var(--neutral-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  margin-top: var(--space-md);
}

/* Map Container */
.map-container {
  margin-top: var(--space-4xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.1);
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(60%) brightness(0.8) contrast(1.1);
  transition: filter var(--transition-normal);
}

.map-container:hover iframe {
  filter: grayscale(20%) brightness(0.9);
}

/* ============================================
   CTA / TRIAL SECTION
   ============================================ */
#cta {
  background: var(--dark-400);
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  background: var(--gradient-card);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(184, 134, 11, 0.04) 25%, transparent 50%);
  animation: ctaRotate 20s linear infinite;
}

@keyframes ctaRotate {
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

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

.cta-content p {
  font-size: 1.05rem;
  color: var(--neutral-400);
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark-200);
  border-top: 1px solid rgba(184, 134, 11, 0.1);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-md);
}

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

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--neutral-500);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-col ul li a:hover {
  color: var(--gold-400);
  transform: translateX(5px);
}

.footer-col ul li a i {
  font-size: 0.7rem;
  color: var(--gold-600);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--neutral-500);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.footer-hours li span:last-child {
  color: var(--gold-500);
  font-weight: 500;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--neutral-600);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--neutral-600);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 1rem;
  cursor: pointer;
  z-index: var(--z-floating);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold-600);
  color: var(--dark-900);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

/* ============================================
   FLOATING GOLD PARTICLES (AMBIENT)
   ============================================ */
.ambient-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0;
  animation: ambientFloat 15s ease-in-out infinite;
}

@keyframes ambientFloat {
  0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
  20% { opacity: 0.3; }
  50% { opacity: 0.1; }
  80% { opacity: 0.2; }
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.count-up {
  transition: all 0.3s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 1024px) {
  .about-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-content {
    padding-left: 0;
  }

  .services-grid,
  .gallery-grid,
  .trainers-grid,
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .hero-stats {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    padding: 100px var(--space-2xl) var(--space-2xl);
    gap: var(--space-sm);
    transition: right 0.5s var(--ease-smooth);
    border-left: 1px solid rgba(184, 134, 11, 0.1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li a {
    font-size: 1rem;
    padding: var(--space-md);
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
  }

  .nav-links li a:hover {
    background: rgba(184, 134, 11, 0.05);
  }

  .nav-links li a::after {
    display: none;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .services-grid,
  .trainers-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .hero-stat {
    min-width: 100px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .founder-stats {
    flex-wrap: wrap;
  }

  .cta-wrapper {
    padding: var(--space-2xl);
  }

  .about-experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin-top: var(--space-lg);
  }

  .about-image-accent {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .splash-brand {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .splash-logo {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
  color: var(--gold-500);
}

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

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

/* Glass card utility */
.glass {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(184, 134, 11, 0.1);
}

/* Shimmer Animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Magnetic effect base */
.magnetic {
  transition: transform var(--transition-fast);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .splash-screen,
  .back-to-top,
  .ambient-particles,
  header,
  .hero-particles,
  .lightbox {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    page-break-inside: avoid;
  }
}
