:root {
  --bg: #ffffff;
  --bg2: #f4f4f4;
  --charcoal: #111111;
  --gray: #e9ecef;
  --border: #eaedf1;
  --text: #222222;
  --muted: #666666;
  --neon: #ff1a1a;
  --neon2: #e60000;
  --green: #10b981;
  --red: #ff1a1a;
  --purple: #111111;
  --gold: #f59e0b;
  --glow: rgba(255, 26, 26, 0.3);
  --glow-sm: rgba(255, 26, 26, 0.15);
  --radius: 0px;
  --radius-sm: 0px;
  --radius-xl: 0px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
.heading { font-family: 'Bebas Neue', 'Montserrat', sans-serif; line-height: 1.05; }
.section-title {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}
.text-neon {
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-neon-solid { color: var(--neon) !important; }
.text-green { color: var(--green) !important; }
.text-muted-custom { color: var(--muted) !important; }
.fw-black { font-weight: 900; }
.tracking-wide { letter-spacing: 2px; }
.tracking-widest { letter-spacing: 4px; }

/* ── SPACING ── */
.py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-7 { padding-top: 4.5rem; padding-bottom: 4.5rem; }

/* ── COLORS ── */
.bg-void { background: #ffffff !important; } /* Pure White */
.bg-surface { background: #f9fafb !important; } /* Ultra Light Gray */
.bg-card { background: #ffffff !important; }
.border-subtle { border-color: rgba(0,0,0,0.05) !important; }
.text-void { color: #111111 !important; }
.text-dark-custom { color: #111111 !important; }
.text-muted-custom { color: #666666 !important; }
.bg-charcoal { background: var(--charcoal) !important; }
.bg-neon { background: var(--neon) !important; }
.bg-bg2 { background: var(--bg2) !important; }

/* ── KICKER / BADGE ── */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,242,254,0.25);
  background: rgba(0,242,254,0.06);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon);
  font-weight: 600;
}
.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn-neon {
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  color: #fff;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--glow);
  position: relative;
  overflow: hidden;
}
.btn-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--glow); color: #fff; }
.btn-neon:hover::after { background: rgba(255,255,255,0.15); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 15px var(--glow-sm);
  background: rgba(0,242,254,0.04);
}
.btn-outline-light { border-color: rgba(255,255,255,0.3) !important; color: #ffffff !important; transition: var(--transition); }
.btn-outline-light:hover { border-color: var(--neon) !important; color: var(--neon) !important; background: rgba(37,99,235,0.04) !important; }

/* ── SOLID CARD ── */
.glass, .glass-card {
  background: #ffffff;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.glass:hover, .glass-card:hover {
  border-color: var(--neon);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.widget-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.widget-header {
    background: rgba(37,99,235,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.25rem;
}

/* Legacy aliases */
.feature-card, .program-card, .trainer-card, .price-card, .product-card, .blog-card, .testimonial, .contact-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.feature-card:hover, .program-card:hover, .trainer-card:hover, .price-card:hover,
.product-card:hover, .blog-card:hover, .testimonial:hover {
  border-color: rgba(0,242,254,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.border-neon { border: 1.5px solid var(--neon) !important; box-shadow: 0 0 20px var(--glow-sm); }

/* ── NAVBAR ── */
.nav-container { pointer-events: none; transition: var(--transition); }
.nav-container .navbar { pointer-events: auto; }
.navbar-glass {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.05) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.scrolled .nav-container { padding-top: 1rem !important; }
.scrolled .navbar-glass { background: #ffffff !important; border-color: rgba(0,0,0,0.1) !important; box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.navbar-brand.brand { font-family: 'Montserrat', sans-serif; letter-spacing: 1px; font-weight: 800; color: var(--text) !important; }
.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
  color: var(--muted) !important;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--neon) !important; background: rgba(37,99,235,0.04); }
.shadow-neon { box-shadow: 0 4px 15px rgba(37,99,235,0.2); }
.cart-badge { font-size: 0.6rem; min-width: 16px; padding: 2px 5px; background: var(--neon); color: #fff; }

/* ── HERO ELITE ── */
.hero-elite {
  background-color: var(--bg);
  z-index: 1;
}
.mesh-glow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(37,99,235,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,242,254,0.05) 0%, transparent 40%);
  z-index: 0;
}
.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(0,0,0,0.02);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: -2px;
}
.hero-badge-elite {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.pulse-blue {
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.hero-title-elite {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text);
}
.text-gradient {
  background: linear-gradient(135deg, var(--neon), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.btn-primary-elite {
  background: var(--text);
  color: #fff;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.btn-primary-elite:hover {
  background: var(--neon);
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline-elite {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text);
}
.btn-outline-elite:hover {
  background: rgba(0,0,0,0.02);
  border-color: var(--text);
}
.hero-data-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.hero-data-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 110px; /* Moved up to clear the stats bar overlap */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.6;
  z-index: 50; /* Above everything in hero and stats bar */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero-scroll-hint:hover { opacity: 1; transform: translate(-50%, -10px); }
.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text);
  text-transform: uppercase;
}
.mouse {
  width: 22px; height: 38px;
  border: 2px solid var(--neon);
  border-radius: 20px;
  position: relative;
}
.mouse::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  background: var(--neon);
  transform: translateX(-50%);
  border-radius: 50%;
  animation: mouse-scroll 2s infinite;
}
@keyframes mouse-scroll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* ── STATS FLOAT ── */
.stats-float-container {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stats-float-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
}
.stat-box { transition: var(--transition); }
.stat-box:hover { background: rgba(0,0,0,0.01); }
.stat-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.04);
  color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .stats-float-container { margin-top: -25px; }
  .stat-box.border-end { border-end: none !important; border-bottom: 1px solid rgba(0,0,0,0.05); }
}
.hero-stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.hero-stat-pill strong { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.hero-stat-pill span { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease both 0.4s;
}
.hero-img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(0,242,254,0.12), transparent 60%);
  pointer-events: none;
}
.hero-float-card {
  position: absolute;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(12,12,16,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero-float-card.card-a { bottom: 8%; left: -5%; animation-delay: 0s; }
.hero-float-card.card-b { top: 20%; right: -8%; animation-delay: 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(90deg, rgba(0,242,254,0.04), rgba(79,172,254,0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item .label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }

/* ── PROGRAM CARDS ── */
.program-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,242,254,0.08);
  border: 1px solid rgba(0,242,254,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--neon);
  flex-shrink: 0;
}

/* ── TRAINER CARDS ── */
.trainer-img-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0,242,254,0.2);
  flex-shrink: 0;
}
.trainer-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── PRICING ── */
.price-toggle-wrap {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg2);
}
.price-toggle-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-toggle-btn.active {
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  color: #000;
}

/* ── PRODUCT CARDS ── */
.product-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--gray);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: linear-gradient(90deg, var(--neon), var(--neon2));
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── TESTIMONIALS ── */
.review-stars i { color: var(--gold); font-size: 0.85rem; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar-fallback {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

/* ── BLOG ── */
.blog-img {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }

/* ── CART ── */
.cart-items .list-group-item { background: transparent; color: var(--text); border-color: var(--border); }
.cart-count { display: inline-block; text-align: center; min-width: 18px; }

/* ── CONTACT FORM ── */
.form-control, .form-select {
  color: var(--text) !important;
  background-color: rgba(0,0,0,0.4) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--neon) !important;
  box-shadow: 0 0 0 3px rgba(0,242,254,0.1) !important;
  background-color: rgba(0,0,0,0.6) !important;
}
.form-control::placeholder { color: var(--muted) !important; opacity: 1 !important; }

/* ── FOOTER ── */
.footer-elite {
  background: #f8f9fa;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}
.footer-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37,99,235, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black, transparent);
  pointer-events: none;
}
.footer-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235, 0.05), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.footer-title {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--text) !important;
}
.footer-link {
  color: var(--muted) !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  display: block;
}
.footer-link:hover {
  color: var(--neon) !important;
  transform: translateX(5px);
}
.social-icon {
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover {
  background: var(--neon);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--glow);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.pulse-neon {
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.footer-sublink:hover { color: var(--text) !important; }

/* ── WHATSAPP BUBBLE ── */
.wa-bubble {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 1055;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  animation: pulse-wa 3s ease infinite;
}
@keyframes pulse-wa { 0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 40px rgba(37,211,102,0.7)} }

/* ── MODALS ── */
.modal-content {
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1) !important;
}
.modal-header { border-color: var(--border) !important; color: var(--text); }
.modal-footer { border-color: var(--border) !important; }
.btn-close-white { filter: none; }

/* ── FUTURISTIC: BMI TOOL ── */
.bmi-meter {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00f2fe 0%, #19ff72 40%, #f59e0b 70%, #ff2b2b 100%);
  position: relative;
  overflow: visible;
}
.bmi-needle {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 3px;
  height: 20px;
  background: var(--text);
  border-radius: 999px;
  transition: left 1s ease;
  z-index: 2;
}

/* ── ABOUT PAGE SPECIFIC ── */
.about-hero {
    background-attachment: fixed;
}
.hero-bg-overlay {
    transition: transform 0.8s ease-out;
}
.about-hero:hover .hero-bg-overlay {
    transform: scale(1.05);
}
.py-10 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.bg-black { background-color: #ffffff !important; }
.bg-void { background-color: #ffffff !important; }
.text-light-50 { color: rgba(0,0,0,0.5) !important; }
.white-10 { color: rgba(0,0,0,0.1) !important; }

.hover-lift { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.hover-lift:hover { transform: translateY(-10px); }

.bg-white-5 { background: rgba(255,255,255,0.05); }
.bg-neon-10 { background: rgba(37, 99, 235, 0.1); }
.bg-neon-20 { background: rgba(37, 99, 235, 0.2); }

/* Animation for the scroll wheel */
.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}
.mouse-icon::after {
    content: "";
    width: 4px;
    height: 8px;
    background: currentColor;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@media (max-width: 991px) {
    .py-10 { padding-top: 4rem; padding-bottom: 4rem; }
    .about-hero { min-height: 60vh !important; }
}

/* ── FUTURISTIC: COUNTDOWN TIMER ── */
.countdown-segment { text-align: center; }
.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--neon);
  display: block;
}
.countdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }

/* ── SCAN LINES (OPTIONAL EFFECT) ── */
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 1;
}

/* ── ADMIN ── */
.admin-topbar { z-index: 1040; height: 64px; backdrop-filter: blur(10px); background: rgba(0,0,0,0.85) !important; }
.admin-layout { display: flex; padding-top: 64px; height: 100vh; overflow: hidden; }
.sidebar { width: 280px; background: linear-gradient(180deg, #0b0b0e, #060608); border-right: 1px solid var(--border); height: 100%; padding: 1.5rem 1rem; overflow-y: auto; }
.content { flex: 1; background: var(--bg); padding: 2rem; height: 100%; overflow-y: auto; }
.sidebar-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; margin-bottom: 2rem; padding-left: 0.5rem; letter-spacing: 1px; }
.sidebar-brand span { color: var(--neon); }
.sidebar-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1rem; border-radius: 0.6rem; color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition); border: 1px solid transparent; }
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
.sidebar-link.active { color: #000; background: linear-gradient(90deg, var(--neon), var(--neon2)); font-weight: 700; }
.stat-card { background: linear-gradient(145deg, #121216, #0e0e11); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); }
.stat-card:hover { transform: translateY(-2px); border-color: rgba(0,242,254,0.2); }
.stat-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; margin: 0; line-height: 1; }
@media (max-width: 992px) {
  .sidebar { position: fixed; left: 0; top: 64px; transform: translateX(-100%); z-index: 1039; }
  body.sidebar-open .sidebar { transform: none; }
  .content { padding: 1rem; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes neonPulse { 0%,100%{box-shadow:0 0 20px var(--glow)} 50%{box-shadow:0 0 40px var(--glow)} }

/* ── LOGIN ── */
.login-page { background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1600&auto=format&fit=crop'); background-size: cover; background-position: center; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.login-card { background: rgba(12,12,16,0.9); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 3rem; width: 100%; max-width: 440px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.login-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 2px; }
.login-logo span { color: var(--neon); }

/* ── OBJECT FIT ── */
.object-fit-cover { object-fit: cover; width: 100%; height: 100%; }

/* ── RESPONSIVENESS FIXES ── */
@media (max-width: 991px) {
  .hero-section { padding-top: 100px; text-align: center; }
  .hero-title { font-size: 3.5rem; }
  .nav-container { padding-top: 0.5rem !important; }
  .navbar-glass { width: 100%; border-radius: 0 !important; margin: 0; }
  .section-title { font-size: 2rem; }
  .py-7 { padding-top: 4rem; padding-bottom: 4rem; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stat-pill { padding: 0.5rem 1rem; }
  .hero-stat-pill strong { font-size: 1.2rem; }
  .glass-card { padding: 1.5rem !important; }
}

/* ── ADDITIONAL CSS FIXES ── */
.btn { transition: all 0.3s ease; }
.btn:active { transform: scale(0.95); }
img { max-width: 100%; height: auto; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); }
.rounded-xl { border-radius: 1.25rem; }
.tracking-widest { letter-spacing: 0.25em; }

/* ── GALLERY & TRANSFORMATIONS ── */
.gallery-tile { transition: var(--transition); cursor: pointer; }
.gallery-tile:hover { transform: scale(1.02); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-tile:hover .gallery-overlay { opacity: 1; }

/* ── ARENA GALLERY ── */
.arena-card { cursor: pointer; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.arena-card:hover { border-color: var(--neon); box-shadow: 0 0 20px var(--glow); }
.arena-zoom { transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.arena-card:hover .arena-zoom { transform: scale(1.1); }
.arena-caption {
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.glass-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}

/* ── ELITE STORE ── */
.product-elite-card {
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.product-elite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--neon);
}
.product-elite-img {
    background: #f8fafc;
    transition: var(--transition);
}
.product-elite-card:hover .product-elite-img {
    background: #ffffff;
}

/* ── HOME CARDS ── */
.testimonial-card-elite {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 1.5rem;
    transition: var(--transition);
}
.testimonial-card-elite:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.review-card-elite {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.review-card-elite:hover { background: rgba(255, 255, 255, 0.05); }

.blog-card-elite {
    transition: var(--transition);
    overflow: hidden;
    border-radius: 1.5rem;
}
.blog-card-elite:hover { transform: translateY(-5px); }
.blog-img-wrap { transition: var(--transition); }
.blog-card-elite:hover .blog-img-wrap { filter: brightness(1.1); }

.transform-comparison { 
  border: 1px solid var(--border);
  background: #f8f9fa;
}

.tiny-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-top-right-radius: 8px;
}
.italic { font-style: italic; }

@media (max-width: 767px) {
  .transform-comparison { height: 200px !important; }
}

/* Fix for overlapping header on mobile */
body { padding-top: 0; }
.hero-section, section:first-of-type { margin-top: 0; }

/* ── TESTIMONIAL MODAL ── */
.modal-testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--neon);
    padding: 3px;
}

/* ── COMPACT STORE ── */
.product-card-compact {
    border: 1px solid #edf2f7;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    transition: var(--transition);
}
.product-card-compact:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.product-img-compact {
    height: 140px;
    object-fit: contain;
    width: 100%;
    margin-bottom: 0.75rem;
}
/* ── FUTURISTIC UTILITIES ── */
.timeline-elite {
    position: relative;
    padding-left: 1rem;
}
.timeline-item-elite {
    position: relative;
}
.timeline-dot {
    z-index: 2;
    box-shadow: 0 0 10px var(--glow-sm);
}
.text-glow {
    text-shadow: 0 0 10px var(--glow-sm);
}
.border-neon {
    border-color: var(--neon) !important;
}
.bg-neon-glass {
    background: rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(10px);
}
.extra-small {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-normal  { letter-spacing: 0em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }
