/* ================================================================
   TARA FITNESS STUDIO — MASTER STYLESHEET
   style.css
   Author: Legal Brand India (https://legalbrandindia.com)
   ================================================================ */

/* ================================================================
   01. GOOGLE FONTS IMPORT
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700;1,800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ================================================================
   02. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ================================================================ */
:root {
  --orange:        #ff7a00;
  --orange-dark:   #cc6200;
  --orange-light:  #ff9533;
  --orange-pale:   #fff4ec;
  --orange-glow:   rgba(255,122,0,0.25);
  --orange-glass:  rgba(255,122,0,0.10);
  --black:         #000000;
  --dark:          #0d0d0d;
  --dark-2:        #1a1a1a;
  --dark-3:        #242424;
  --dark-4:        #2e2e2e;
  --white:         #ffffff;
  --gray-50:       #fafafa;
  --gray-100:      #f4f4f4;
  --gray-200:      #e8e8e8;
  --gray-300:      #d4d4d4;
  --gray-400:      #a0a0a0;
  --gray-500:      #888888;
  --gray-600:      #555555;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --nav-h:         72px;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-full:   9999px;
  --max-w:         1200px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.15);
  --shadow-xl:     0 24px 72px rgba(0,0,0,0.22);
  --shadow-orange: 0 12px 40px rgba(255,122,0,0.30);
  --ease:          0.30s cubic-bezier(0.4,0,0.2,1);
  --ease-spring:   0.40s cubic-bezier(0.34,1.56,0.64,1);
  --ease-slow:     0.55s cubic-bezier(0.4,0,0.2,1);
}

/* ================================================================
   03. CSS RESET & BASE
   ================================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,picture,video,svg { display: block; max-width: 100%; }
input,button,textarea,select { font: inherit; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul,ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ================================================================
   04. TYPOGRAPHY SYSTEM
   ================================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(38px,5vw,64px); }
h2 { font-size: clamp(32px,4vw,52px); }
h3 { font-size: clamp(22px,2.5vw,32px); }
h4 { font-size: 26px; font-weight: 800; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-full);
}
.section-label.centered { padding-left: 0; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px,4.5vw,56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ================================================================
   05. LAYOUT & CONTAINERS
   ================================================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* Section backgrounds */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--gray-100); }
.bg-dark    { background: var(--dark);   color: var(--white); }
.bg-darker  { background: var(--dark-2); color: var(--white); }
.bg-orange  { background: var(--orange); color: var(--white); }

/* ================================================================
   06. UTILITY CLASSES
   ================================================================ */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.text-center  { text-align: center; }
.text-orange  { color: var(--orange) !important; }
.text-white   { color: var(--white) !important; }
.mx-auto      { margin: 0 auto; }
.hidden       { display: none !important; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--orange-glass);
  color: var(--orange);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}
.badge-primary { background: var(--orange); color: var(--white); }
.badge-glass   { background: var(--orange-glass); color: var(--orange); border: 1px solid rgba(255,122,0,0.25); }
.badge-dark    { background: var(--dark-3); color: var(--white); border: 1px solid rgba(255,255,255,0.08); }

.divider { width: 56px; height: 3px; background: var(--orange); border: none; border-radius: var(--radius-full); margin: 16px 0; }
.divider.centered { margin: 16px auto; }

/* ================================================================
   07. KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.2; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}
@keyframes borderPulse {
  0%,100% { border-color: rgba(255,122,0,0.3); }
  50%      { border-color: rgba(255,122,0,0.8); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   08. SCROLL REVEAL SYSTEM
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-scale { opacity: 0; transform: scale(0.93);        transition: opacity 0.60s ease, transform 0.60s ease; }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }

/* ================================================================
   09. CUSTOM SCROLLBAR
   ================================================================ */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--orange-light); }
* { scrollbar-width: thin; scrollbar-color: var(--orange) var(--dark); }

/* ================================================================
   10. NAVIGATION
   ================================================================ */
#navbar,
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
#navbar.scrolled,
.navbar.scrolled {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease-spring);
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-6deg) scale(1.08); }
.nav-logo-icon i { color: var(--white); font-size: 22px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900; font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white); line-height: 1.1;
}
.nav-logo-text span {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; color: var(--orange); margin-top: 1px;
}

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative; padding-bottom: 4px;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--ease);
  border-radius: var(--radius-full);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: var(--radius-full);
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.98);
  padding: 32px 24px 48px;
  flex-direction: column;
  border-top: 2px solid var(--orange);
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; animation: fadeIn 0.2s ease forwards; }
.nav-mobile > a {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 1px;
  transition: color var(--ease), padding-left var(--ease);
}
.nav-mobile > a:hover { color: var(--orange); padding-left: 8px; }
.nav-mobile .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.nav-mobile .mobile-cta .btn { justify-content: center; width: 100%; }

/* ================================================================
   11. BUTTON SYSTEM
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease-spring), box-shadow var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: var(--shadow-orange); }

.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover  { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); box-shadow: 0 6px 20px var(--orange-glow); }

.btn-dark   { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-3); border-color: var(--dark-3); }

.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1fb955; border-color: #1fb955; box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

.btn-sm  { padding: 9px 20px; font-size: 11px; letter-spacing: 1px; }
.btn-lg  { padding: 17px 40px; font-size: 17px; }
.btn-xl  { padding: 20px 52px; font-size: 18px; letter-spacing: 1.5px; }
.btn-block { width: 100%; }

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

/* Background grid texture */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Diagonal accent top-right */
.hero-bg-accent {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: linear-gradient(135deg, transparent 35%, rgba(255,122,0,0.06) 100%);
  pointer-events: none;
}

/* Large watermark */
.hero-watermark {
  position: absolute; bottom: -30px; left: -15px;
  font-family: var(--font-display);
  font-size: clamp(130px,20vw,260px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.022);
  pointer-events: none;
  letter-spacing: -6px;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* Content grid */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}

/* Badge pill */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glass);
  border: 1px solid rgba(255,122,0,0.3);
  border-radius: var(--radius-full);
  padding: 6px 18px; margin-bottom: 24px;
}
.hero-badge i { color: var(--orange); font-size: 14px; }
.hero-badge span {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange);
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px,7vw,92px);
  font-weight: 900; line-height: 0.93;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--orange); }

/* Sub copy */
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.58);
  line-height: 1.78; max-width: 440px;
  margin-bottom: 40px;
}

/* CTA group */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

/* Stats row */
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 900; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px;
}

/* Visual side */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-img-frame { position: relative; width: 100%; max-width: 480px; }
.hero-img-main {
  width: 100%; height: 580px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--dark-3), var(--dark-2));
  overflow: hidden; position: relative;
  border: 1px solid rgba(255,122,0,0.18);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.hero-img-badge {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--orange); border-radius: var(--radius);
  padding: 18px 26px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-orange); z-index: 2;
}
.hero-img-badge strong { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-img-badge span   { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 4px; }
.hero-float-tag {
  position: absolute; top: 28px; right: -18px;
  background: var(--dark-3);
  border: 1px solid rgba(255,122,0,0.3);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: borderPulse 3s ease-in-out infinite; z-index: 2;
}
.hero-float-tag i { color: var(--orange); font-size: 24px; }
.hero-float-tag p { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.4; }
.hero-float-tag p span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 400; }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; z-index: 3; opacity: 0.7; transition: opacity var(--ease);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll span { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hero-scroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, rgba(255,122,0,0.9), transparent); animation: scrollPulse 1.6s ease-in-out infinite; }

/* Hero staggered fade-ups */
.hero-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards; }
.hero-fade-up:nth-child(1){animation-delay:0.10s}
.hero-fade-up:nth-child(2){animation-delay:0.23s}
.hero-fade-up:nth-child(3){animation-delay:0.36s}
.hero-fade-up:nth-child(4){animation-delay:0.49s}
.hero-fade-up:nth-child(5){animation-delay:0.62s}

/* ================================================================
   13. TICKER / MARQUEE BAR
   ================================================================ */
.ticker-bar {
  background: var(--orange);
  overflow: hidden; height: 46px;
  display: flex; align-items: center;
  position: relative;
}
.ticker-bar::before,.ticker-bar::after {
  content: ''; position: absolute; top: 0; width: 80px; height: 100%; z-index: 1; pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(to right, var(--orange), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(to left, var(--orange), transparent); }
.ticker-track {
  display: flex; align-items: center;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); padding: 0 28px; }
.ticker-track span.dot { padding: 0; color: rgba(255,255,255,0.45); font-size: 10px; }

/* ================================================================
   14. ABOUT SECTION
   ================================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-stack { position: relative; width: 100%; height: 500px; }
.about-img-main {
  position: absolute; bottom: 0; left: 0; width: 72%; height: 390px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(255,122,0,0.18);
  overflow: hidden; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; justify-content: center;
}
.about-img-accent {
  position: absolute; top: 0; right: 0; width: 52%; height: 250px;
  background: var(--orange); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  box-shadow: var(--shadow-orange);
}
.about-img-accent strong { font-family: var(--font-display); font-size: 60px; font-weight: 900; color: var(--white); line-height: 1; }
.about-img-accent span   { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.about-icon-panel {
  position: absolute; bottom: 24px; right: 0;
  background: var(--dark); border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
}
.about-icon-item { display: flex; align-items: center; gap: 10px; }
.about-icon-item i { color: var(--orange); font-size: 18px; }
.about-icon-item span { font-size: 13px; font-weight: 600; color: var(--white); white-space: nowrap; }
.about-feature-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
.about-feature-item { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
  width: 44px; height: 44px; background: var(--orange-glass);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--ease), transform var(--ease);
}
.about-feature-item:hover .about-feature-icon { background: var(--orange); transform: scale(1.05); }
.about-feature-item:hover .about-feature-icon i { color: var(--white); }
.about-feature-icon i { color: var(--orange); font-size: 20px; transition: color var(--ease); }
.about-feature-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.about-feature-text span   { font-size: 13px; color: var(--gray-500); line-height: 1.65; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   15. PROGRAMS SECTION
   ================================================================ */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.program-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); padding: 32px 28px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left center;
  transition: transform var(--ease);
}
.program-card::after {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,122,0,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--ease);
}
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover::after  { opacity: 1; }
.program-card:hover { border-color: rgba(255,122,0,0.28); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.program-icon {
  width: 58px; height: 58px; background: var(--orange-glass);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background var(--ease), transform var(--ease);
}
.program-card:hover .program-icon { background: rgba(255,122,0,0.22); transform: rotate(-5deg) scale(1.05); }
.program-icon i { color: var(--orange); font-size: 26px; }
.program-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 0.5px; }
.program-desc { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.72; margin-bottom: 20px; }
.program-meta { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.program-meta-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.program-meta-item i { color: var(--orange); font-size: 14px; }
.program-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); opacity: 0; transform: translateX(-8px); transition: opacity var(--ease), transform var(--ease); }
.program-card:hover .program-link { opacity: 1; transform: translateX(0); }
.program-link i { font-size: 16px; transition: transform var(--ease); }
.program-link:hover i { transform: translateX(4px); }

/* ================================================================
   16. MEMBERSHIP / PRICING PLANS
   ================================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: center; }
.plan-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 40px 28px;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  box-shadow: var(--shadow-sm);
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.plan-card.featured {
  background: var(--dark); border-color: var(--orange);
  transform: translateY(-16px);
  box-shadow: var(--shadow-orange), var(--shadow-xl); z-index: 2;
}
.plan-card.featured:hover { transform: translateY(-24px); }
.plan-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 20px; border-radius: var(--radius-full);
  white-space: nowrap; box-shadow: 0 6px 20px var(--orange-glow);
}
.plan-name { font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.plan-price { font-family: var(--font-display); font-size: 58px; font-weight: 900; line-height: 1; color: var(--dark); margin-bottom: 4px; }
.plan-card.featured .plan-price { color: var(--white); }
.plan-price sup { font-size: 26px; font-weight: 700; vertical-align: super; line-height: 0; }
.plan-period { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.45); }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feature { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--dark); }
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.8); }
.plan-feature i { font-size: 17px; color: var(--orange); flex-shrink: 0; }
.plan-feature.crossed { opacity: 0.35; }
.plan-feature.crossed i { color: var(--gray-400); }
.plan-cta { display: block; width: 100%; text-align: center; }

/* ================================================================
   17. TRAINERS SECTION
   ================================================================ */
.trainers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trainer-card {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--dark); position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.trainer-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.trainer-img {
  height: 300px;
  background: linear-gradient(165deg, var(--dark-2), var(--dark-3));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.trainer-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.trainer-card:hover .trainer-img img { transform: scale(1.06); }
.trainer-img .placeholder-icon { font-size: 90px; color: rgba(255,122,0,0.12); }
.trainer-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.2) 55%, transparent 100%);
}
.trainer-social {
  position: absolute; top: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(12px);
  transition: opacity var(--ease), transform var(--ease); z-index: 2;
}
.trainer-card:hover .trainer-social { opacity: 1; transform: translateX(0); }
.trainer-social a {
  width: 36px; height: 36px; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease-spring);
}
.trainer-social a:hover { background: var(--orange); transform: scale(1.1); }
.trainer-social a i { color: var(--white); font-size: 16px; }
.trainer-info { padding: 20px; }
.trainer-name { font-family: var(--font-display); font-size: 21px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.trainer-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 5px; }

/* ================================================================
   18. GALLERY GRID
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--dark-3); cursor: pointer;
}
.gallery-item-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), #1c1c1c);
  transition: transform 0.55s ease;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.07); }
.gallery-item-inner img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item-inner .placeholder-icon { font-size: 44px; color: rgba(255,122,0,0.18); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,122,0,0.75) 0%, rgba(255,122,0,0.1) 55%, transparent 100%);
  opacity: 0; transition: opacity var(--ease);
  display: flex; align-items: flex-end; padding: 20px; z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-family: var(--font-display); font-size: 17px; font-weight: 800; text-transform: uppercase; color: var(--white); letter-spacing: 1px; transform: translateY(8px); transition: transform var(--ease); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: rgba(0,0,0,0.7);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7); transition: opacity var(--ease), transform var(--ease-spring); z-index: 3;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-zoom i { color: var(--white); font-size: 16px; }

/* ================================================================
   19. TESTIMONIALS
   ================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  background: var(--gray-100); border-radius: var(--radius-md);
  padding: 32px 28px; position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 2px solid transparent;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(255,122,0,0.12); border-color: rgba(255,122,0,0.2); }
.testimonial-quote-mark { font-family: Georgia,serif; font-size: 72px; line-height: 0.8; color: var(--orange); margin-bottom: 16px; opacity: 0.85; user-select: none; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--orange); font-size: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.78; color: var(--gray-600); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.07); }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--white);
  flex-shrink: 0; box-shadow: 0 6px 20px var(--orange-glow);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-author-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.testimonial-author-meta { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

/* Slider dots */
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: background var(--ease), width var(--ease), border-radius var(--ease); }
.slider-dot.active { background: var(--orange); width: 28px; border-radius: var(--radius-full); }

/* ================================================================
   20. INSTAGRAM FEED GRID
   ================================================================ */
.instagram-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.instagram-handle { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--white); transition: color var(--ease); }
.instagram-handle i { font-size: 26px; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.instagram-handle:hover { color: var(--orange); }
.instagram-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 10px; }
.insta-item { aspect-ratio: 1/1; border-radius: var(--radius); background: var(--dark-3); overflow: hidden; position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-item i { font-size: 30px; color: rgba(255,122,0,0.18); transition: color var(--ease), transform var(--ease); }
.insta-item:hover i { color: rgba(255,122,0,0.35); transform: scale(1.1); }
.insta-hover-overlay { position: absolute; inset: 0; background: rgba(255,122,0,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--ease); }
.insta-item:hover .insta-hover-overlay { opacity: 1; }
.insta-hover-overlay i { color: var(--white); font-size: 32px; transform: scale(1); }

/* ================================================================
   21. CONTACT SECTION
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 50px; height: 50px; background: var(--orange); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--ease-spring); }
.contact-info-item:hover .contact-info-icon { transform: scale(1.08) rotate(-5deg); }
.contact-info-icon i { color: var(--white); font-size: 22px; }
.contact-info-label { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 5px; font-family: var(--font-display); }
.contact-info-value, .contact-info-value a { font-size: 15px; color: var(--gray-600); line-height: 1.65; transition: color var(--ease); }
.contact-info-value a:hover { color: var(--orange); }
.contact-socials { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius); font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); transition: transform var(--ease), box-shadow var(--ease); }
.social-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.social-btn i { font-size: 18px; }
.social-btn.instagram { background: linear-gradient(135deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn.facebook  { background: #1877f2; }
.social-btn.whatsapp  { background: #25d366; }

/* Contact Form Card */
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.contact-form-title { font-family: var(--font-display); font-size: 30px; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 28px; line-height: 1; }
.contact-form-title span { color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; font-family: var(--font-display); }
.form-input,.form-select,.form-textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; color: var(--dark); background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-input::placeholder,.form-textarea::placeholder { color: var(--gray-400); }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glass); }
.form-input.error,.form-textarea.error { border-color: #e53e3e; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; appearance: none; -webkit-appearance: none; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; margin-top: 4px; }

/* Map */
.map-embed { margin-top: 48px; border-radius: var(--radius-md); overflow: hidden; height: 320px; border: 2px solid rgba(255,122,0,0.18); box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(15%); }

/* ================================================================
   22. FOOTER
   ================================================================ */
#footer,.footer { background: var(--dark); color: var(--white); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--orange); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-logo-icon i { color: var(--white); font-size: 20px; }
.footer-logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.footer-logo-text span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--orange); margin-top: 2px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.8; max-width: 310px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: background var(--ease), border-color var(--ease), transform var(--ease-spring); }
.footer-social-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-social-btn i { color: var(--white); font-size: 17px; }
.footer-col-title { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--orange); border-radius: var(--radius-full); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.42); display: flex; align-items: center; gap: 6px; transition: color var(--ease), padding-left var(--ease); }
.footer-links a i { font-size: 12px; color: var(--orange); opacity: 0; transition: opacity var(--ease), transform var(--ease); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a:hover i { opacity: 1; transform: translateX(2px); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-row i { color: var(--orange); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-row span,.footer-contact-row a { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-contact-row a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 20px; flex-wrap: wrap; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer-copyright a { color: var(--orange); font-weight: 700; transition: color var(--ease); }
.footer-copyright a:hover { color: var(--orange-light); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.22); letter-spacing: 0.5px; text-transform: uppercase; transition: color var(--ease); }
.footer-legal-links a:hover { color: var(--orange); }

/* ================================================================
   23. FLOATING BUTTONS — WhatsApp + Back to Top
   ================================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  animation: waBounce 2.5s ease-in-out 4s infinite;
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.55); animation: none; }
.whatsapp-float i { color: var(--white); font-size: 30px; }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; animation: pulseGlow 2.5s ease-out 4s infinite; }
.whatsapp-float::after {
  content: 'Chat with us!';
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--dark); color: var(--white);
  font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius);
  white-space: nowrap; opacity: 0;
  transition: opacity var(--ease), transform var(--ease); pointer-events: none;
}
.whatsapp-float:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.back-to-top {
  position: fixed; bottom: 100px; right: 30px;
  width: 44px; height: 44px; background: var(--orange); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  z-index: 998; opacity: 0; pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 6px 20px var(--orange-glow); cursor: pointer; border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.back-to-top i { color: var(--white); font-size: 20px; }

/* ================================================================
   24. AUTH PAGES (Member Login / Register)
   ================================================================ */
.auth-page {
  min-height: 100vh; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative; overflow: hidden;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.auth-card {
  width: 100%; max-width: 480px;
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 40px; position: relative; z-index: 1;
  box-shadow: var(--shadow-xl);
}
.auth-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.auth-logo .logo-icon { width: 42px; height: 42px; background: var(--orange); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.auth-logo .logo-icon i { color: var(--white); font-size: 22px; }
.auth-logo .logo-text { font-family: var(--font-display); font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.auth-logo .logo-text span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--orange); }
.auth-title { font-family: var(--font-display); font-size: 32px; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.auth-subtitle { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 32px; }
.auth-card .form-input,.auth-card .form-select { background: var(--dark-3); border-color: rgba(255,255,255,0.08); color: var(--white); }
.auth-card .form-input::placeholder { color: rgba(255,255,255,0.3); }
.auth-card .form-input:focus,.auth-card .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,0,0.12); }
.auth-card .form-label { color: rgba(255,255,255,0.7); }
.auth-link { text-align: center; font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 20px; }
.auth-link a { color: var(--orange); font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }

/* ================================================================
   25. ADMIN PANEL BASE
   ================================================================ */
.admin-layout { display: flex; min-height: 100vh; background: var(--gray-100); }
.admin-sidebar { width: 260px; min-height: 100vh; background: var(--dark); display: flex; flex-direction: column; position: fixed; top: 0; left: 0; z-index: 200; transition: transform var(--ease); overflow-y: auto; }
.sidebar-logo { display: flex; align-items: center; gap: 12px; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar-logo .icon { width: 36px; height: 36px; background: var(--orange); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.sidebar-logo .icon i { color: var(--white); font-size: 18px; }
.sidebar-logo .text { font-family: var(--font-display); font-size: 16px; font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.sidebar-logo .text span { display: block; font-size: 9px; font-weight: 600; letter-spacing: 2px; color: var(--orange); }
.sidebar-nav { padding: 16px 0; flex: 1; }
.sidebar-section-label { font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); padding: 20px 20px 8px; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 12px 20px; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); transition: color var(--ease), background var(--ease), padding-left var(--ease); cursor: pointer; border-left: 3px solid transparent; }
.sidebar-link i { font-size: 18px; width: 22px; flex-shrink: 0; }
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.04); padding-left: 24px; }
.sidebar-link.active { color: var(--orange); background: rgba(255,122,0,0.08); border-left-color: var(--orange); }
.admin-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar { height: 64px; background: var(--white); border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow-sm); }
.admin-topbar-title { font-family: var(--font-display); font-size: 20px; font-weight: 900; text-transform: uppercase; color: var(--dark); }
.admin-content { padding: 24px; flex: 1; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: transform var(--ease), box-shadow var(--ease); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--orange-glass); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-card-icon i { color: var(--orange); font-size: 24px; }
.stat-card-value { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--dark); line-height: 1; }
.stat-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-top: 4px; }
.admin-table-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-table-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.admin-table-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--dark); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 12px 20px; font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-500); background: var(--gray-100); border-bottom: 1px solid var(--gray-200); text-align: left; }
.admin-table td { padding: 16px 20px; font-size: 14px; color: var(--dark); border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.status-active  { background: rgba(34,197,94,0.12);  color: #16a34a; }
.status-expired { background: rgba(239,68,68,0.12);   color: #dc2626; }
.status-pending { background: rgba(234,179,8,0.12);   color: #ca8a04; }
.status-paid    { background: rgba(34,197,94,0.12);  color: #16a34a; }
.status-unpaid  { background: rgba(239,68,68,0.12);   color: #dc2626; }

/* ================================================================
   26. PAGE HEROES (Inner Pages)
   ================================================================ */
.page-hero { background: var(--dark); padding: calc(var(--nav-h) + 60px) 0 80px; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,122,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,122,0,0.04) 1px, transparent 1px); background-size: 64px 64px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(48px,7vw,88px); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 12px; line-height: 1; position: relative; z-index: 1; }
.page-hero-title em { font-style: italic; color: var(--orange); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.75; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; position: relative; z-index: 1; }
.breadcrumb a { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb > span { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }
.breadcrumb i { font-size: 14px; color: rgba(255,255,255,0.25); }

/* ================================================================
   27. TOAST NOTIFICATIONS
   ================================================================ */
.toast-container { position: fixed; top: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.toast { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 16px 20px; min-width: 300px; max-width: 380px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-xl); animation: fadeUp 0.35s ease forwards; pointer-events: all; }
.toast.success { border-left-color: #22c55e; }
.toast.error   { border-left-color: #ef4444; }
.toast i { font-size: 22px; color: var(--orange); flex-shrink: 0; }
.toast.success i { color: #22c55e; }
.toast.error i   { color: #ef4444; }
.toast p { font-size: 14px; color: var(--white); line-height: 1.5; }

/* ================================================================
   28. RESPONSIVE BREAKPOINTS (Mobile-First)
   ================================================================ */

/* ── max 480px (mobile) ── */
@media screen and (max-width:480px) {
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(28px,8vw,36px); }
  .nav-links,.nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-headline { font-size: clamp(40px,12vw,52px); }
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--nav-h) + 24px); }
  .hero-cta { justify-content: center; flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-sub { margin: 0 auto 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-card.featured { transform: none; margin-top: 24px; }
  .trainers-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-socials { flex-direction: column; }
  .contact-form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .admin-main { margin-left: 0; }
}

/* ── max 768px (tablet portrait) ── */
@media screen and (max-width:768px) {
  .nav-links,.nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--nav-h) + 32px); padding-bottom: 64px; }
  .hero-visual { display: none; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .trainers-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3,1fr); }
  .instagram-header { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
}

/* ── 769px – 1024px (tablet landscape) ── */
@media screen and (min-width:769px) and (max-width:1024px) {
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .trainers-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
  .instagram-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .ticker-track,.whatsapp-float,.hero-scroll-line { animation: none; }
}

/* ── Print ── */
@media print {
  #navbar,.whatsapp-float,.back-to-top,.ticker-bar,.nav-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .section { padding: 24pt 0; }
  .container { max-width: 100%; padding: 0 12pt; }
}
