/* ============================================================
   CHAMPION'S ARENA - Multi-Sports Club Website
   Complete Styles - Matching JS-Generated HTML
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --color-primary: #1B4332;
  --color-primary-light: #2D6A4F;
  --color-primary-dark: #081C15;
  --color-secondary: #FF6B35;
  --color-secondary-light: #FF8C42;
  --color-accent: #FFD166;
  --color-accent-dark: #F4A261;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-bg-dark: #0D1B2A;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F1F3F5;
  --color-text: #1A1A2E;
  --color-text-secondary: #4A4A68;
  --color-text-light: #FFFFFF;
  --color-text-muted: #8B8BA7;
  --color-border: #E1E4E8;
  --color-border-light: #F0F0F5;
  --color-success: #2DC653;
  --color-warning: #FFB627;
  --color-error: #E63946;
  --gradient-primary: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
  --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FFD166 100%);
  --gradient-dark: linear-gradient(135deg, #0D1B2A 0%, #1B4332 100%);
  --gradient-hero: linear-gradient(135deg, #081C15 0%, #1B4332 50%, #2D6A4F 100%);
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --navbar-height: 72px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.12);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --space-xs: 0.375rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --space-4xl: 4rem;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--navbar-height); }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open, body.no-scroll { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--color-text); }

/* ── Utility Classes ────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.text-center { text-align: center; }
.text-gradient { background: var(--gradient-secondary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Keyframes ──────────────────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes particleFloat { 0%, 100% { opacity: 0; transform: translateY(0) scale(0); } 10% { opacity: 1; transform: scale(1); } 90% { opacity: 0.5; } 100% { opacity: 0; transform: translateY(-100px) scale(0.5); } }
@keyframes pulseRing { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes bounceIn { 0% { transform: scale(0.3); opacity: 0; } 50% { transform: scale(1.05); } 70% { transform: scale(0.95); } 100% { transform: scale(1); opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── Scroll Animation System ────────────────────────────── */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ── Preloader ──────────────────────────────────────────── */
#preloader { position: fixed; inset: 0; z-index: 10000; background: var(--color-primary-dark); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s, visibility 0.5s; }
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; position: relative; }
.preloader-ring { position: absolute; top: 50%; left: 50%; border: 3px solid transparent; border-radius: 50%; animation: spin 1.2s linear infinite; }
.preloader-ring:nth-child(1) { width: 60px; height: 60px; margin: -30px 0 0 -30px; border-top-color: var(--color-secondary); }
.preloader-ring:nth-child(2) { width: 80px; height: 80px; margin: -40px 0 0 -40px; border-top-color: var(--color-accent); animation-duration: 1.6s; animation-direction: reverse; }
.preloader-ring:nth-child(3) { width: 100px; height: 100px; margin: -50px 0 0 -50px; border-top-color: rgba(255,255,255,0.3); animation-duration: 2s; }
.preloader-text { display: inline-block; margin-top: 80px; color: #fff; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; letter-spacing: 2px; animation: pulse 2s ease infinite; }

/* ── Buttons ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius-full); font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; border: 2px solid transparent; cursor: pointer; transition: all var(--transition-base); white-space: nowrap; text-decoration: none; }
.btn-primary { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.btn-primary:hover { background: var(--color-secondary-light); border-color: var(--color-secondary-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,53,0.4); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* ── Badges ─────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.badge-sm { padding: 2px 8px; font-size: 0.6875rem; }
.badge-lg { padding: 6px 16px; font-size: 0.875rem; }
.badge-primary { background: var(--color-primary); color: #fff; }
.badge-secondary { background: var(--color-secondary); color: #fff; }
.badge-success { background: var(--color-success); color: #fff; }
.badge-muted { background: var(--color-text-muted); color: #fff; }
.badge-accent { background: var(--color-accent); color: var(--color-primary-dark); }

/* ── Section Header ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--color-text); margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1.0625rem; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.section-divider { display: flex; align-items: center; justify-content: center; margin-top: 1.25rem; gap: 0.5rem; }
.section-divider::before, .section-divider::after { content: ''; width: 30px; height: 2px; background: var(--color-border); }
.section-divider span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--navbar-height); z-index: 1000; transition: all var(--transition-base); background: transparent; }
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.navbar.scrolled .nav-link { color: var(--color-text); }
.navbar.scrolled .logo-text { color: var(--color-primary); }
.navbar.scrolled .logo-icon { color: var(--color-secondary); }
.navbar.scrolled .nav-toggle .hamburger-line { background: var(--color-text); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; z-index: 1001; }
.logo-icon { font-size: 1.5rem; color: var(--color-accent); font-weight: 900; transition: color 0.3s; }
.logo-text { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; transition: color 0.3s; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { padding: 0.5rem 0.875rem; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; border-radius: var(--radius-md); transition: all 0.2s; display: block; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--color-primary); background: rgba(27,67,50,0.06); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta-desktop { display: none; }
.nav-cta-mobile { display: none; padding: 1.5rem; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; width: 28px; z-index: 1001; padding: 4px 0; }
.hamburger-line { width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: var(--navbar-height); }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,107,53,0.08) 0%, transparent 60%); z-index: 1; }
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-particle { position: absolute; background: rgba(255,255,255,0.15); border-radius: 50%; animation: particleFloat 5s ease-in-out infinite; }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 4rem 0; }
.hero-headline { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.hero-subtext { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-features { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.hero-feature-pill { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-full); color: rgba(255,255,255,0.9); font-size: 0.8125rem; font-weight: 500; backdrop-filter: blur(4px); transition: all 0.3s; }
.hero-feature-pill .material-icons-round { font-size: 1rem; color: var(--color-accent); }
.hero-feature-pill:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 600px; margin: 0 auto; }
.hero-stat { text-align: center; padding: 1rem; background: rgba(255,255,255,0.06); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.1); }
.hero-stat-value { display: block; font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--color-accent); }
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.5); animation: float 2s ease infinite; }

/* ═══════════════════════════════════════════════════════════
   SPORTS SECTION
   ═══════════════════════════════════════════════════════════ */
.sports-section { background: var(--color-bg); }
.sports-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.sport-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; min-height: 220px; cursor: pointer; text-decoration: none; transition: all var(--transition-base); }
.sport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sport-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--color-primary); transition: transform 0.5s; }
.sport-card:hover .sport-card-bg { transform: scale(1.08); }
.sport-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,28,21,0.9) 0%, rgba(27,67,50,0.4) 60%, rgba(27,67,50,0.2) 100%); transition: background 0.3s; }
.sport-card:hover .sport-card-overlay { background: linear-gradient(to top, rgba(8,28,21,0.95) 0%, rgba(27,67,50,0.5) 60%, rgba(27,67,50,0.3) 100%); }
.sport-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 2; }
.sport-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.sport-card-icon .material-icons-round { font-size: 1.25rem; color: var(--color-accent); }
.sport-card:hover .sport-card-icon { background: var(--color-secondary); border-color: var(--color-secondary); }
.sport-card-name { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.375rem; }
.sport-card-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.75); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sport-card-arrow { position: absolute; top: 1.25rem; right: 1.25rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; opacity: 0; transform: translateX(-8px); }
.sport-card-arrow .material-icons-round { font-size: 1rem; color: #fff; }
.sport-card:hover .sport-card-arrow { opacity: 1; transform: translateX(0); background: var(--color-secondary); }

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-section { background: var(--color-bg); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.about-text p { color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.0625rem; }
.about-mission-vision { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
.about-mv-card { padding: 1.5rem; background: var(--color-bg-alt); border-radius: var(--radius-lg); border-left: 4px solid var(--color-secondary); transition: all 0.3s; }
.about-mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-mv-card h4 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.0625rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
.about-mv-card h4 .material-icons-round { color: var(--color-secondary); font-size: 1.25rem; }
.about-mv-card p { color: var(--color-text-secondary); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0; }
.about-image { position: relative; }
.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--gradient-primary); min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-image-placeholder { font-size: 4rem; color: rgba(255,255,255,0.2); margin-bottom: 1rem; }
.about-image-placeholder .material-icons-round { font-size: inherit; }
.about-image-text { color: rgba(255,255,255,0.7); font-size: 1rem; font-weight: 600; letter-spacing: 1px; }
.about-stats-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.25rem; }
.about-stat-mini { text-align: center; padding: 1rem; background: var(--color-bg-alt); border-radius: var(--radius-md); }
.about-stat-mini strong { display: block; font-size: 1.375rem; color: var(--color-primary); font-weight: 800; }
.about-stat-mini span { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.why-section { background: var(--color-bg-alt); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.why-card { padding: 2rem; background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border-light); transition: all var(--transition-base); text-align: center; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.why-card-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(27,67,50,0.1), rgba(45,106,79,0.1)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; transition: all 0.3s; }
.why-card-icon .material-icons-round { font-size: 1.5rem; color: var(--color-primary); }
.why-card:hover .why-card-icon { background: var(--color-primary); }
.why-card:hover .why-card-icon .material-icons-round { color: #fff; }
.why-card-title { font-size: 1.125rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
.why-card-desc { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   COACHES SECTION
   ═══════════════════════════════════════════════════════════ */
.coaches-section { background: var(--color-bg); }
.coaches-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.coaches-grid-full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.coach-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-light); transition: all var(--transition-base); }
.coach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.coach-image { position: relative; height: 220px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.coach-image-placeholder { color: rgba(255,255,255,0.15); }
.coach-image-placeholder .material-icons-round { font-size: 4rem; }
.coach-sport-badge { position: absolute; top: 0.75rem; right: 0.75rem; padding: 4px 12px; background: var(--color-secondary); color: #fff; border-radius: var(--radius-full); font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.coach-info { padding: 1.25rem; }
.coach-name { font-size: 1.0625rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.25rem; }
.coach-role { font-size: 0.8125rem; color: var(--color-secondary); font-weight: 600; margin-bottom: 0.375rem; }
.coach-experience { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 4px; }
.coach-bio { font-size: 0.8125rem; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.coach-certs { display: flex; flex-wrap: wrap; gap: 0.375rem; }

/* ═══════════════════════════════════════════════════════════
   FACILITIES SECTION
   ═══════════════════════════════════════════════════════════ */
.facilities-section { background: var(--color-bg-alt); }
.facilities-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.facilities-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.facility-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-light); transition: all var(--transition-base); }
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.facility-image { position: relative; height: 180px; background: var(--gradient-dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.facility-image-placeholder { color: rgba(255,255,255,0.12); }
.facility-image-placeholder .material-icons-round { font-size: 3rem; }
.facility-overlay { position: absolute; inset: 0; background: rgba(255,107,53,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.facility-overlay .material-icons-round { font-size: 2.5rem; color: #fff; }
.facility-card:hover .facility-overlay { opacity: 1; }
.facility-info { padding: 1.25rem; }
.facility-info h3 { font-size: 1.0625rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.5rem; }
.facility-info p { font-size: 0.875rem; color: var(--color-text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   MEMBERSHIP SECTION
   ═══════════════════════════════════════════════════════════ */
.membership-section { background: var(--color-bg); }
.membership-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.membership-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; border: 2px solid var(--color-border-light); transition: all var(--transition-base); position: relative; overflow: hidden; }
.membership-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--color-primary); }
.membership-card.popular { border-color: var(--color-secondary); box-shadow: 0 4px 20px rgba(255,107,53,0.15); }
.membership-popular-badge { position: absolute; top: 0; right: 0; background: var(--color-secondary); color: #fff; padding: 0.375rem 1rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 0 0 0 var(--radius-md); }
.membership-header { text-align: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--color-border-light); }
.membership-name { font-size: 1.25rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
.membership-price { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.membership-amount { font-size: 2.5rem; font-weight: 900; color: var(--color-primary); font-family: var(--font-heading); }
.membership-card.popular .membership-amount { color: var(--color-secondary); }
.membership-period { font-size: 0.875rem; color: var(--color-text-muted); }
.membership-features { margin-bottom: 1.75rem; }
.membership-features li { display: flex; align-items: flex-start; gap: 0.625rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--color-text-secondary); }
.membership-features li .material-icons-round { font-size: 1.125rem; color: var(--color-success); flex-shrink: 0; margin-top: 1px; }
.membership-cta { margin-top: auto; }

/* ═══════════════════════════════════════════════════════════
   EVENTS SECTION
   ═══════════════════════════════════════════════════════════ */
.events-section { background: var(--color-bg-alt); }
.events-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.events-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.event-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-light); transition: all var(--transition-base); }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.event-image { position: relative; height: 180px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; }
.event-image-placeholder { color: rgba(255,255,255,0.12); }
.event-image-placeholder .material-icons-round { font-size: 3rem; }
.event-date-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: #fff; color: var(--color-primary); padding: 0.375rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.event-reg-badge { position: absolute; top: 0.75rem; right: 0.75rem; }
.event-info { padding: 1.25rem; }
.event-info .badge { margin-bottom: 0.75rem; }
.event-title { font-size: 1.0625rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.5rem; }
.event-desc { font-size: 0.875rem; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.75rem; }
.event-meta span { display: flex; align-items: center; gap: 4px; font-size: 0.8125rem; color: var(--color-text-muted); }
.event-meta .material-icons-round { font-size: 1rem; color: var(--color-primary); }

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.gallery-section { background: var(--color-bg); }
.gallery-filters, .video-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn { padding: 8px 20px; border: 1px solid var(--color-border); background: var(--color-surface); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--color-text-secondary); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.gallery-masonry { column-count: 1; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; min-height: 200px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item-placeholder { color: rgba(255,255,255,0.1); }
.gallery-item-placeholder .material-icons-round { font-size: 2.5rem; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(8,28,21,0.8); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; gap: 0.5rem; }
.gallery-item-overlay .material-icons-round { font-size: 2rem; color: #fff; }
.gallery-item-overlay p { color: rgba(255,255,255,0.9); font-size: 0.875rem; text-align: center; padding: 0 1rem; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   VIDEO GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.videos-section { background: var(--color-bg-alt); }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.videos-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.video-card { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border-light); transition: all var(--transition-base); cursor: pointer; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.video-thumbnail { position: relative; height: 180px; background: var(--gradient-dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-thumbnail-placeholder { color: rgba(255,255,255,0.1); }
.video-thumbnail-placeholder .material-icons-round { font-size: 3rem; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.video-play-btn .material-icons-round { font-size: 3rem; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); }
.video-card:hover .video-play-btn { opacity: 1; }
.video-duration { position: absolute; bottom: 0.5rem; right: 0.5rem; background: rgba(0,0,0,0.75); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 0.6875rem; font-weight: 600; }
.video-info { padding: 1rem 1.25rem; }
.video-info h3 { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.375rem; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--color-bg); }
.testimonials-slider { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border-light); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; }
.testimonial-avatar .material-icons-round { font-size: 1.5rem; }
.testimonial-meta h4 { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); margin-bottom: 0; }
.testimonial-meta span { font-size: 0.8125rem; color: var(--color-text-muted); }
.testimonial-rating { margin-bottom: 1rem; }
.testimonial-rating .star { color: var(--color-border); font-size: 1rem; }
.testimonial-rating .star.filled { color: var(--color-accent); }
.testimonial-text { font-size: 0.9375rem; color: var(--color-text-secondary); line-height: 1.7; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.stats-section { background: var(--gradient-primary); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.stat-icon .material-icons-round { font-size: 1.5rem; color: var(--color-accent); }
.stat-number { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.375rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section { background: var(--gradient-primary); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,107,53,0.15) 0%, transparent 50%); }
.cta-title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-section { background: var(--color-bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--color-surface); border-radius: var(--radius-md); margin-bottom: 0.75rem; border: 1px solid var(--color-border-light); overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: var(--color-primary); }
.faq-item.open { border-color: var(--color-primary); box-shadow: 0 2px 12px rgba(27,67,50,0.1); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; font-size: 0.9375rem; font-weight: 600; color: var(--color-text); text-align: left; cursor: pointer; transition: color 0.2s; }
.faq-question:hover { color: var(--color-primary); }
.faq-icon { transition: transform 0.3s; font-size: 1.25rem; color: var(--color-text-muted); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--color-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   BRANCHES SECTION
   ═══════════════════════════════════════════════════════════ */
.branches-section { background: var(--color-bg); }
.branches-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.branch-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border-light); transition: all 0.3s; }
.branch-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.branch-card.main-branch { border-color: var(--color-primary); border-width: 2px; }
.branch-card .badge-primary { margin-bottom: 1rem; }
.branch-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--color-text); margin-bottom: 1rem; }
.branch-address, .branch-phone, .branch-timings { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--color-text-secondary); margin-bottom: 0.5rem; }
.branch-address .material-icons-round, .branch-phone .material-icons-round, .branch-timings .material-icons-round { font-size: 1.125rem; color: var(--color-primary); flex-shrink: 0; margin-top: 1px; }
.branch-sports { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border-light); }

/* ═══════════════════════════════════════════════════════════
   TIMETABLE SECTION
   ═══════════════════════════════════════════════════════════ */
.timetable-section { background: var(--color-bg-alt); }
.timetable-wrapper { background: var(--color-surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.timetable-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.timetable-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 700px; }
.timetable-table th, .timetable-table td { padding: 12px 16px; text-align: center; border: 1px solid var(--color-border-light); }
.timetable-table th { background: var(--color-primary); color: #fff; font-weight: 600; position: sticky; top: 0; z-index: 1; }
.timetable-table td { transition: background 0.2s; }
.timetable-table td:hover { background: var(--color-bg-alt); }
.timetable-table .timetable-time { background: var(--color-bg-alt); font-weight: 600; color: var(--color-primary); white-space: nowrap; text-align: left; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (Generic - used by all sub-pages)
   ═══════════════════════════════════════════════════════════ */
[class^="page-"] { padding-top: var(--navbar-height); }
.page-hero { background: var(--gradient-hero); padding: clamp(80px, 15vw, 160px) 0 clamp(40px, 8vw, 80px); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(to top, var(--color-bg), transparent); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   SPORT DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.sport-hero { position: relative; padding: clamp(100px, 18vw, 200px) 0 clamp(60px, 10vw, 100px); text-align: center; overflow: hidden; background: var(--gradient-hero); }
.sport-hero-icon { font-size: 3rem; color: var(--color-accent); margin-bottom: 1rem; display: inline-block; }
.sport-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.sport-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.125rem; }
.sport-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.sport-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.sport-detail-main h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.sport-detail-main h3 { font-size: 1.25rem; margin: 2rem 0 1rem; }
.sport-detail-main p { color: var(--color-text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.sport-programs { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
.sport-program-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-md); padding: 1.5rem; transition: all 0.3s; }
.sport-program-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.sport-program-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.sport-program-header h4 { font-size: 1.0625rem; font-weight: 600; }
.sport-program-details { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.sport-program-details p { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--color-text-secondary); margin-bottom: 0; }
.sport-program-details .material-icons-round { font-size: 1.1rem; color: var(--color-primary); }
.sport-program-fee { font-weight: 600; color: var(--color-secondary) !important; }
.sport-age-groups { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.sport-facilities-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.5rem; margin-top: 0.5rem; }
.sport-facility-tag { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--color-text-secondary); padding: 0.5rem 0.75rem; background: var(--color-bg-alt); border-radius: var(--radius-sm); }
.sport-facility-tag .material-icons-round { font-size: 1rem; color: var(--color-success); }
.sport-detail-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sport-cta-card { background: var(--gradient-primary); border-radius: var(--radius-lg); padding: 2rem; color: #fff; text-align: center; }
.sport-cta-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #fff !important; }
.sport-cta-card p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; font-size: 0.9rem; }
.sport-coaches-sidebar h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.coach-mini-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--color-surface); border-radius: var(--radius-md); margin-bottom: 0.5rem; border: 1px solid var(--color-border-light); }
.coach-mini-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; color: var(--color-primary); flex-shrink: 0; }
.coach-mini-info h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 2px; }
.coach-mini-info p { font-size: 0.8rem; color: var(--color-text-secondary); margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-form-wrapper { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-card); }
.contact-form-wrapper h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-info-wrapper { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-card); }
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-info-item .material-icons-round { color: var(--color-primary); font-size: 1.25rem; margin-top: 2px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.75rem; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { font-size: 0.9375rem; color: var(--color-text); }
.contact-info-item a { transition: color 0.2s; }
.contact-info-item a:hover { color: var(--color-primary); }
.contact-socials { display: flex; gap: 0.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border-light); }
.contact-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; color: var(--color-text-secondary); transition: all 0.2s; }
.contact-socials a:hover { background: var(--color-primary); color: #fff; }
.contact-branch-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--color-border-light); }
.contact-branch-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.contact-branch-card p { font-size: 0.875rem; color: var(--color-text-secondary); margin-bottom: 4px; }
.contact-branch-card .material-icons-round { font-size: 0.9rem; color: var(--color-primary); vertical-align: middle; }

/* ═══════════════════════════════════════════════════════════
   CAMP PAGE
   ═══════════════════════════════════════════════════════════ */
.camp-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.camp-description { font-size: 1.0625rem; line-height: 1.7; color: var(--color-text-secondary); margin-bottom: 2rem; }
.camp-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.camp-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--color-bg-alt); border-radius: var(--radius-md); }
.camp-info-item .material-icons-round { font-size: 1.5rem; color: var(--color-primary); margin-top: 2px; }
.camp-info-item h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 4px; }
.camp-info-item p { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); margin-bottom: 0; }
.camp-sports { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.camp-includes { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.5rem; }
.camp-include-item { display: flex; align-items: center; gap: 8px; font-size: 0.9375rem; color: var(--color-text-secondary); padding: 0.5rem 0; }
.camp-include-item .material-icons-round { font-size: 1.1rem; color: var(--color-success); }
.camp-cta-card { background: var(--gradient-primary); border-radius: var(--radius-lg); padding: 2rem; color: #fff; text-align: center; position: sticky; top: calc(var(--navbar-height) + 1.5rem); }
.camp-cta-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #fff !important; }
.camp-cta-card p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   FORMS & LEAD FORMS
   ═══════════════════════════════════════════════════════════ */
.lead-form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); font-size: 0.9375rem; background: var(--color-surface); transition: all 0.2s; outline: none; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(27,67,50,0.1); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--color-text-muted); }
.lead-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B8BA7' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.lead-form textarea { resize: vertical; min-height: 80px; }

/* ═══════════════════════════════════════════════════════════
   MODAL (Trial Booking)
   ═══════════════════════════════════════════════════════════ */
.modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-container { position: relative; background: var(--color-surface); border-radius: var(--radius-xl); padding: 2.5rem; max-width: 560px; width: 90%; max-height: 90vh; overflow-y: auto; z-index: 1; transform: scale(0.9); transition: transform 0.3s; }
.modal.active .modal-container { transform: scale(1); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--color-text-muted); transition: all 0.2s; }
.modal-close:hover { background: var(--color-error); color: #fff; }
.modal-header { margin-bottom: 1.5rem; }
.modal-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.375rem; }
.modal-header p { font-size: 0.9375rem; color: var(--color-text-secondary); }

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 9500; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; flex-direction: column; opacity: 0; visibility: hidden; transition: all 0.3s; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; transition: background 0.2s; z-index: 2; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-content { max-width: 85vw; max-height: 70vh; display: flex; align-items: center; justify-content: center; }
.lightbox-placeholder { width: 80vw; max-width: 800px; height: 60vh; background: var(--color-bg-alt); border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--color-text-muted); gap: 1rem; }
.lightbox-placeholder .material-icons-round { font-size: 3rem; }
.lightbox-caption { color: rgba(255,255,255,0.85); font-size: 0.9375rem; margin-top: 1rem; text-align: center; }
.lightbox-counter { color: rgba(255,255,255,0.5); font-size: 0.8125rem; margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.toast { position: fixed; bottom: 2rem; right: 2rem; padding: 1rem 1.5rem; border-radius: var(--radius-md); font-size: 0.9375rem; font-weight: 500; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.3s; pointer-events: none; }
.toast-visible { transform: translateY(0); opacity: 1; }
.toast-success { background: var(--color-success); color: #fff; }
.toast-error { background: var(--color-error); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════ */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 800; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; box-shadow: var(--shadow-md); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary-light); transform: translateY(-3px); }
.back-to-top .material-icons-round { font-size: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */
.whatsapp-float { position: fixed; bottom: 2rem; left: 2rem; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; z-index: 800; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-float::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.3); animation: pulseRing 2s ease infinite; }

/* ═══════════════════════════════════════════════════════════
   STICKY LEAD FORM
   ═══════════════════════════════════════════════════════════ */
.sticky-lead-form { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 700; }
.sticky-lead-toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: var(--color-primary); color: #fff; border-radius: var(--radius-md) 0 0 var(--radius-md); font-size: 0.8125rem; font-weight: 600; transition: all 0.3s; box-shadow: var(--shadow-md); }
.sticky-lead-toggle .material-icons-round { font-size: 1.25rem; }
.sticky-lead-toggle:hover { padding-right: 1.25rem; }
.sticky-lead-label { writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: 1px; }
.sticky-lead-panel { position: absolute; right: 0; top: 50%; transform: translateY(-50%) translateX(100%); width: 300px; background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.5rem; transition: transform 0.3s; }
.sticky-lead-panel.open { transform: translateY(-50%) translateX(0); }
.sticky-lead-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.sticky-lead-header h3 { font-size: 1.0625rem; font-weight: 700; }
.sticky-lead-close { font-size: 1.5rem; color: var(--color-text-muted); transition: color 0.2s; }
.sticky-lead-close:hover { color: var(--color-text); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.8); }
.footer-main { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { color: var(--color-accent); }
.footer-logo .logo-text { color: #fff; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.footer-socials a:hover { background: var(--color-secondary); color: #fff; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col li a:hover { color: var(--color-accent); }
.footer-col .material-icons-round { font-size: 1rem; color: var(--color-accent); vertical-align: middle; margin-right: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* 480px+ */
@media (min-width: 480px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* 768px+ */
@media (min-width: 768px) {
  .nav-menu { position: static; flex-direction: row; width: auto; background: none; height: auto; }
  .nav-cta-desktop { display: inline-flex; }
  .nav-cta-mobile { display: none; }
  .nav-toggle { display: none; }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { column-count: 2; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-mission-vision { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-detail-grid { grid-template-columns: 2fr 1fr; }
  .camp-detail-grid { grid-template-columns: 2fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .sport-programs { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .coaches-grid { grid-template-columns: repeat(3, 1fr); }
  .membership-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { column-count: 3; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(6, 1fr); }
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1280px+ */
@media (min-width: 1280px) {
  .coaches-grid { grid-template-columns: repeat(4, 1fr); }
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-slider { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile nav overlay */
@media (max-width: 767px) {
  .nav-menu { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--color-surface); flex-direction: column; padding-top: calc(var(--navbar-height) + 1rem); transform: translateX(100%); transition: transform 0.3s ease; box-shadow: var(--shadow-lg); z-index: 999; }
  .nav-menu.active { transform: translateX(0); }
  .nav-menu .nav-link { color: var(--color-text); padding: 0.75rem 1.5rem; }
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active { color: var(--color-primary); background: var(--color-bg-alt); }
  .nav-cta-mobile { display: block; }
  .nav-cta-desktop { display: none; }
  .sticky-lead-form { display: none; }
  .sticky-lead-label { display: none; }
  .back-to-top { bottom: 1.5rem; right: 1.5rem; }
  .whatsapp-float { bottom: 1.5rem; left: 1.5rem; width: 44px; height: 44px; }
  .toast { bottom: 1rem; right: 1rem; left: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION & ACCESSIBILITY
   ═══════════════════════════════════════════════════════════ */
@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; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .navbar, .footer, .whatsapp-float, .sticky-lead-form, .back-to-top, .modal, .lightbox, .toast, #preloader { display: none !important; }
  .hero-section { min-height: auto; padding: 2rem 0; }
  body { color: #000; background: #fff; }
}

/* Page wrappers - minimal, just padding-top handled by [class^="page-"] */
.page-about, .page-sport, .page-sports, .page-coaches, .page-facilities,
.page-membership, .page-events, .page-gallery, .page-videos,
.page-testimonials, .page-contact, .page-timetable, .page-camp,
.page-faq, .page-branches {}

.main-content { min-height: 100vh; }

.nav-menu-inner { display: flex; flex-direction: column; gap: 0.25rem; }
@media (min-width: 768px) { .nav-menu-inner { flex-direction: row; align-items: center; gap: 0; } }

.camp-section { background: var(--color-bg); }
.camp-detail-main { /* inherits from camp-detail-grid */ }
.camp-detail-sidebar { /* inherits from camp-detail-grid */ }

.main-branch { border-color: var(--color-primary); border-width: 2px; }
.popular { border-color: var(--color-secondary); box-shadow: 0 4px 20px rgba(255,107,53,0.15); }

.sport-hero-content { position: relative; z-index: 3; }

/* Star filled state */
.star.filled { color: var(--color-accent); }
