/* ============================================================
   Fitzone Gym & Fitness Center – PREMIUM GYM HERO  |  style.css
   ============================================================ */

/* ╔══════════════════════════════════════════════════════════╗
   ║   SPLASH SCREEN STYLES                                   ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── Splash Overlay ── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* removed by JS after exit animation */
}

.splash.splash-hidden {
  pointer-events: none;
}

/* Animated diagonal scan line bg */
.splash-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(245,196,0,0.015) 2px,
      rgba(245,196,0,0.015) 4px
    );
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
  0%   { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* ── Spark burst ── */
.spark-burst {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  pointer-events: none;
  z-index: 10;
}
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #f5c400;
  box-shadow: 0 0 6px #f5c400, 0 0 12px rgba(245,196,0,0.6);
  animation: sparkFly var(--dur, 0.7s) var(--delay, 0s) ease-out forwards;
  transform-origin: 0 0;
}
@keyframes sparkFly {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--sx, 80px), var(--sy, -80px)) scale(0); opacity: 0; }
}

/* ── Shockwave ── */
.shockwave {
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(245,196,0,0.8);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}
.shockwave.active {
  animation: shockwaveExpand 0.8s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}
@keyframes shockwaveExpand {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(40);  opacity: 0; }
}

/* ── Splash branding ── */
.splash-brand {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: splashBrandIn 0.8s 0.3s ease forwards;
  z-index: 20;
}
@keyframes splashBrandIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.splash-brand-icon {
  font-size: 26px;
  color: #f5c400;
  filter: drop-shadow(0 0 10px rgba(245,196,0,0.8));
  animation: rotateSlow 12s linear infinite;
}
.splash-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 0 20px rgba(245,196,0,0.4);
}

/* ── Splash Stage  ── */
.splash-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  height: 200px;
  z-index: 5;
}

/* ── BAR ── (always centered) */
.splash-bar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 40vw, 400px);
  opacity: 0;
  animation: barAppear 0.8s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 0 20px rgba(245,196,0,0.3));
  z-index: 5;
}
@keyframes barAppear {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.sp-bar-svg { width: 100%; height: auto; display: block; }

/* ── LEFT PLATES GROUP ── */
.splash-plates-left {
  position: absolute;
  top: 50%; 
  right: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  /* start position: far off-screen left */
  margin-right: clamp(130px, 20vw, 200px);
  /* initial off-screen state set by JS class */
  opacity: 0;
}

/* RIGHT plates group */
.splash-plates-right {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-left: clamp(130px, 20vw, 200px);
  opacity: 0;
}

/* Plate SVG sizing */
.sp-plate-l3, .sp-plate-r3 { width: clamp(28px,4.5vw,56px); height: auto; }
.sp-plate-l2, .sp-plate-r2 { width: clamp(22px,3.5vw,44px); height: auto; }
.sp-plate-l1, .sp-plate-r1 { width: clamp(18px,2.8vw,36px); height: auto; }
.sp-collar-l, .sp-collar-r  { width: clamp(12px,1.8vw,24px); height: auto; }

/* plate fly-in: left */
.splash-plates-left.fly-in {
  opacity: 1;
  animation: platesFlyin_L 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes platesFlyin_L {
  from { transform: translateY(-50%) translateX(-70vw); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);    opacity: 1; }
}

/* plate fly-in: right */
.splash-plates-right.fly-in {
  opacity: 1;
  animation: platesFlyin_R 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes platesFlyin_R {
  from { transform: translateY(-50%) translateX(70vw);  opacity: 0; }
  to   { transform: translateY(-50%) translateX(0);     opacity: 1; }
}

/* ── Impact flash ── */
.impact-flash {
  position: fixed;
  inset: 0;
  background: rgba(245, 196, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
}
.impact-flash.flash {
  animation: flashBurst 0.4s ease-out forwards;
}
@keyframes flashBurst {
  0%   { opacity: 0.9; }
  100% { opacity: 0; }
}

/* ── Tagline ── */
.splash-tagline {
  position: absolute;
  bottom: clamp(80px, 12vh, 130px);
  left: 50%; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: 10px;
  color: #f5c400;
  text-shadow:
    0 0 30px rgba(245,196,0,0.8),
    0 0 60px rgba(245,196,0,0.4);
  opacity: 0;
  white-space: nowrap;
  z-index: 20;
}
.splash-tagline.visible {
  animation: taglineReveal 0.7s ease forwards;
}
@keyframes taglineReveal {
  from { opacity: 0; transform: translateX(-50%) scaleX(0.8) skewX(-8deg); }
  to   { opacity: 1; transform: translateX(-50%) scaleX(1) skewX(0deg); }
}

/* ── Skip button ── */
.splash-skip {
  position: absolute;
  bottom: 30px; right: 40px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.3s, border-color 0.3s;
  z-index: 30;
  animation: splashBrandIn 1s 1s ease both;
}
.splash-skip:hover { color: #f5c400; border-color: rgba(245,196,0,0.5); }

/* ── Barbell DROP exit animation ── */
.splash-stage.drop-exit {
  animation: barbellDrop 0.9s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
@keyframes barbellDrop {
  0%   { transform: translateY(0);    opacity: 1; }
  15%  { transform: translateY(-18px); opacity: 1; } /* slight lift */
  100% { transform: translateY(130vh); opacity: 0.4; }
}

/* Splash fade out */
.splash.exit {
  animation: splashFadeOut 0.8s 0.45s ease forwards;
}
@keyframes splashFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; pointer-events: none; }
}

/* ── Body locked during splash ── */
body.splash-active {
  overflow: hidden;
}

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

:root {
  --gold:        #f5c400;
  --gold-bright: #ffe033;
  --gold-glow:   rgba(245,196,0,0.55);
  --gold-dim:    rgba(245,196,0,0.18);
  --black:       #000000;
  --near-black:  #080808;
  --dark:        #0e0e0f;
  --dark-2:      #141416;
  --mid:         #1c1c20;
  --text-light:  rgba(255,255,255,0.85);
  --text-muted:  rgba(255,255,255,0.42);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(0.25,0.8,0.25,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--near-black);
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Particle Canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Smoke / Mist ── */
.smoke-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: smokeDrift linear infinite;
  opacity: 0;
}

.smoke-1 {
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,196,0,0.04) 0%, transparent 70%);
  bottom: -120px; left: -180px;
  animation-duration: 22s;
  animation-delay: 0s;
}
.smoke-2 {
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.025) 0%, transparent 70%);
  bottom: -100px; right: -150px;
  animation-duration: 28s;
  animation-delay: -8s;
}
.smoke-3 {
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,196,0,0.03) 0%, transparent 70%);
  bottom: 0; left: 20%;
  animation-duration: 35s;
  animation-delay: -15s;
}
.smoke-4 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.015) 0%, transparent 70%);
  top: 200px; right: 10%;
  animation-duration: 40s;
  animation-delay: -20s;
}

@keyframes smokeDrift {
  0%   { opacity: 0;    transform: translateY(0) scaleX(1); }
  20%  { opacity: 1; }
  80%  { opacity: 0.7; }
  100% { opacity: 0;    transform: translateY(-180px) scaleX(1.4); }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 76px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245,196,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.logo-icon {
  font-size: 22px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold-glow));
  animation: rotateSlow 12s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 20px rgba(245,196,0,0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }

.nav-cta {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 11px 28px;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:hover {
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 64px 80px;
  perspective: 1200px;
}

/* Dark vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, transparent 0%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(0,0,0,0.9) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* Gold floor accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
  opacity: 0.5;
}

/* Light beams */
.light-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.beam {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(245,196,0,0.06) 30%, rgba(245,196,0,0.1) 60%, transparent);
  filter: blur(2px);
  transform-origin: top center;
  animation: beamSway ease-in-out infinite;
}
.beam-1 { left: 25%; transform: rotate(-8deg); animation-duration: 18s; animation-delay: 0s; }
.beam-2 { left: 50%; transform: rotate(3deg);  animation-duration: 22s; animation-delay: -5s; }
.beam-3 { left: 75%; transform: rotate(-5deg); animation-duration: 26s; animation-delay: -12s; }

@keyframes beamSway {
  0%, 100% { opacity: 0.4; transform: rotate(var(--rot, -8deg)) scaleX(1); }
  50%       { opacity: 1;   transform: rotate(calc(var(--rot, -8deg) + 4deg)) scaleX(1.5); }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,196,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,196,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Floating Debris */
.floating-debris {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.debris-item {
  position: absolute;
  background: linear-gradient(135deg, #888, #ccc);
  border-radius: 2px;
  opacity: 0;
  animation: floatDebris linear infinite;
  box-shadow: 0 0 6px rgba(245,196,0,0.2);
}
@keyframes floatDebris {
  0%   { opacity: 0; transform: translate(0, 40px) rotate(0deg); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { opacity: 0; transform: translate(var(--dx, 30px), -80px) rotate(720deg); }
}

/* ── Hero Content Layout ── */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ── Text Side ── */
.hero-text-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeSlideUp 1s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(245,196,0,0.08);
  border: 1px solid rgba(245,196,0,0.25);
  border-radius: 100px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  width: fit-content;
  animation: fadeSlideUp 1s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,196,0,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(245,196,0,0); }
}

/* Headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  gap: 0;
}
.line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  letter-spacing: 6px;
  color: #fff;
  display: block;
  animation: revealLine 0.8s cubic-bezier(0.22,1,0.36,1) both;
  text-transform: uppercase;
}
.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.35s; }
.line-3 { animation-delay: 0.5s; }

.line.accent {
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(245,196,0,0.8),
    0 0 80px rgba(245,196,0,0.4),
    0 0 120px rgba(245,196,0,0.2);
  animation: revealLine 0.8s 0.5s cubic-bezier(0.22,1,0.36,1) both, textPulse 4s 1.5s ease-in-out infinite;
}
@keyframes textPulse {
  0%, 100% { text-shadow: 0 0 40px rgba(245,196,0,0.8), 0 0 80px rgba(245,196,0,0.4); }
  50%       { text-shadow: 0 0 60px rgba(245,196,0,1),   0 0 120px rgba(245,196,0,0.6), 0 0 200px rgba(245,196,0,0.2); }
}

@keyframes revealLine {
  from { opacity: 0; transform: translateY(50px) skewX(-5deg); clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; transform: translateY(0) skewX(0deg);    clip-path: inset(0 0 0% 0); }
}

/* Sub heading */
.hero-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  letter-spacing: 8px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  animation: fadeSlideUp 0.8s 0.6s both;
  position: relative;
  padding-left: 28px;
}
.hero-sub::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.8;
  animation: fadeSlideUp 0.8s 0.7s both;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: #000;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 0 rgba(245,196,0,0);
  transition: all 0.4s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--gold-glow), 0 8px 30px rgba(245,196,0,0.3);
  transform: translateY(-3px);
}
.btn-primary:hover::before { transform: translateX(150%); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(245,196,0,0.15);
  transform: translateY(-3px);
}
.play-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  transition: var(--transition);
}
.btn-ghost:hover .play-icon {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(245,196,0,0.3);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeSlideUp 0.8s 0.9s both;
  margin-top: 8px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,196,0,0.5);
}
.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(245,196,0,0.2);
}

/* ── Dumbbell Side ── */
.hero-dumbbell-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  animation: fadeSlideUp 1s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

.dumbbell-scene {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow rings */
.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,196,0,0.15);
  animation: ringPulse ease-in-out infinite;
}
.ring-outer {
  width: 480px; height: 480px;
  animation-duration: 6s;
  animation-delay: 0s;
}
.ring-mid {
  width: 360px; height: 360px;
  animation-duration: 4.5s;
  animation-delay: -1.5s;
}
.ring-inner {
  width: 240px; height: 240px;
  animation-duration: 3s;
  animation-delay: -1s;
  border-color: rgba(245,196,0,0.25);
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.04); }
}

/* Dumbbell wrapper – floating + rotating */
.dumbbell-wrapper {
  position: relative;
  z-index: 5;
  animation:
    floatY 3.5s ease-in-out infinite,
    rotateY3D 14s linear infinite;
  filter: drop-shadow(0 20px 60px rgba(245,196,0,0.25)) drop-shadow(0 0 30px rgba(245,196,0,0.15));
  transform-style: preserve-3d;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-24px); }
}

@keyframes rotateY3D {
  0%   { transform: rotateY(0deg) rotateX(-8deg); }
  50%  { transform: rotateY(180deg) rotateX(-4deg); }
  100% { transform: rotateY(360deg) rotateX(-8deg); }
}

.dumbbell-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Chain CSS */
.chain-left, .chain-right {
  position: absolute;
  width: 60px;
  bottom: -30px;
  opacity: 0.6;
  animation: chainSwing 3.5s ease-in-out infinite;
}
.chain-left {
  left: 30px;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 5px, rgba(180,180,180,0.6) 5px, rgba(180,180,180,0.6) 8px);
  height: 50px;
  border-radius: 2px;
  transform-origin: top center;
  animation-delay: 0.5s;
}
.chain-right {
  right: 30px;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 5px, rgba(180,180,180,0.6) 5px, rgba(180,180,180,0.6) 8px);
  height: 40px;
  border-radius: 2px;
  transform-origin: top center;
  animation-delay: -0.5s;
}
@keyframes chainSwing {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

/* Dumbbell shadow on ground */
.dumbbell-shadow {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 22px;
  background: rgba(245,196,0,0.18);
  border-radius: 50%;
  filter: blur(16px);
  animation: shadowPulse 3.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes shadowPulse {
  0%, 100% { width: 320px; opacity: 0.18; }
  50%       { width: 260px; opacity: 0.08; }
}

/* Energy halo */
.energy-halo {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,0.12) 0%, transparent 70%);
  animation: haloBreath 3.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes haloBreath {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.6); opacity: 0.3; }
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeSlideUp 1s 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLineGrow 2s ease-in-out infinite;
}
@keyframes scrollLineGrow {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50%       { transform: scaleY(0.5) translateY(10px); opacity: 0.4; }
}
.scroll-indicator span {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-muted);
}

/* ── Social Sidebar ── */
.social-sidebar {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeSlideUp 1s 1.4s both;
}
.social-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.social-link svg { width: 14px; height: 14px; display: block; }
.social-link:hover {
  color: var(--gold);
  border-color: rgba(245,196,0,0.4);
  box-shadow: 0 0 12px rgba(245,196,0,0.2);
}
.social-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(245,196,0,0.4), transparent);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .hero { padding: 100px 32px 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-dumbbell-side { order: -1; min-height: 340px; }
  .dumbbell-wrapper { animation: floatY 3.5s ease-in-out infinite; }
  .hero-text-side { text-align: center; align-items: center; }
  .hero-sub::before { display: none; }
  .hero-sub { padding-left: 0; }
  .hero-desc { text-align: center; }
  .social-sidebar { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar { padding: 0 24px; }
  .hero { padding: 90px 24px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-divider { display: none; }
  .stat { padding: 0 16px; }
  .glow-ring { display: none; }
  .ring-outer, .ring-mid { display: none; }
}

@media (max-width: 480px) {
  .line { font-size: 64px; }
  .btn { padding: 14px 24px; font-size: 11px; }
  .hero-actions { gap: 14px; }
}

/* ══════════════════════════════════════════════════════════════
   HOME CONTACT SECTION
   ══════════════════════════════════════════════════════════════ */
.home-contact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 2;
}
.hc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(245,196,0,0.05) 0%, transparent 60%),
    var(--near-black);
}
.hc-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,196,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,196,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hc-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 80px);
  letter-spacing: 4px;
  color: #fff;
  line-height: 1;
  margin: 20px 0 16px;
}
.hc-accent { color: var(--gold); text-shadow: 0 0 30px rgba(245,196,0,0.5); }
.hc-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 460px;
}
.hc-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.hc-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.hc-perk-icon { font-size: 18px; width: 24px; text-align: center; }
.hc-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-detail-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.hc-detail-link:hover { color: var(--gold); }

/* Form */
.hc-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.hc-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hc-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hc-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
}
.hc-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
.hc-input::placeholder { color: rgba(255,255,255,0.2); }
.hc-select option { background: #111; color: #fff; }
.hc-input:focus {
  border-color: rgba(245,196,0,0.4);
  background: rgba(245,196,0,0.02);
  box-shadow: 0 0 16px rgba(245,196,0,0.05);
}
.hc-textarea { resize: none; min-height: 90px; }
.hc-submit { border: none; cursor: pointer; width: 100%; justify-content: center; }
.hc-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px;
  background: rgba(245,196,0,0.04);
  border: 1px solid rgba(245,196,0,0.15);
  border-radius: var(--radius-md);
}

/* ══════════════════════════════════════════════════════════════
   HOME FOOTER
   ══════════════════════════════════════════════════════════════ */
.home-footer {
  background: #000;
  border-top: 1px solid rgba(245,196,0,0.08);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}
.hf-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
}
.hf-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hf-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.hf-socials {
  display: flex;
  gap: 10px;
}
.hf-social {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.hf-social svg { width: 16px; height: 16px; display: block; }
.hf-social:hover {
  background: rgba(245,196,0,0.1);
  border-color: rgba(245,196,0,0.3);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(245,196,0,0.15);
}
.hf-col-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.hf-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hf-links li a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.hf-links li a:hover { color: #fff; }
.hf-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
.hf-bottom-links {
  display: flex;
  gap: 20px;
}
.hf-bottom-links a {
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color var(--transition);
}
.hf-bottom-links a:hover { color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hc-container { padding: 0 32px; grid-template-columns: 1fr; gap: 48px; }
  .hf-container { padding: 0 32px; }
  .hf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .home-contact-section { padding: 80px 0; }
  .hc-container { padding: 0 24px; }
  .hc-form { padding: 28px 20px; }
  .hc-form-row { grid-template-columns: 1fr; }
  .hf-container { padding: 0 24px; }
  .hf-grid { grid-template-columns: 1fr; gap: 32px; }
  .hf-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .social-sidebar { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE NAV STYLES (Moved from JS for global availability)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    padding: 24px 32px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(245,196,0,0.1);
    z-index: 99;
    animation: slideDown 0.3s ease forwards;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open .nav-link {
    font-size: 16px;
  }
  
  /* Make sure nav toggle stays above the backdrop */
  .nav-toggle {
    z-index: 100;
  }
}
