@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap');

:root {
  /* Colors - Light Mode (Default) */
  --color-primary: #1A5C2A; /* Deep Green */
  --color-secondary: #0D0D0D; /* Bold Black */
  --color-accent: #F5C518; /* Gold/Yellow */
  --color-white: #FFFFFF;
  --color-light-gray: #F4F4F4;
  --color-dark-gray: #222222;
  --color-text: #0D0D0D;
  --color-text-light: #555555;
  --color-background: #FFFFFF;
  --nav-bg: rgba(255, 255, 255, 0.8);
  --nav-text: #0D0D0D;
  --card-bg: #FFFFFF;
  
  /* Fonts */
  --font-heading: 'Bebas Neue', cursive;
  --font-subheading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --header-height-shrink: 60px;
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --color-background: #0D0D0D;
  --color-text: #FFFFFF;
  --color-text-light: #BBBBBB;
  --nav-bg: rgba(13, 13, 13, 0.8);
  --nav-text: #FFFFFF;
  --card-bg: #1A1A1A;
  --color-light-gray: #1A1A1A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subheading {
  font-family: var(--font-subheading);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 1px;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   SECTION 1: ANNOUNCEMENT BAR
   ============================================= */
.marquee-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: var(--color-accent);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: tickerScroll 30s linear infinite;
  gap: 0;
}

.marquee-text {
  white-space: nowrap;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #000;
  padding: 0 60px;
  flex-shrink: 0;
}

.marquee-text a {
  color: var(--color-secondary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.close-marquee {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.12);
  border: none;
  color: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.close-marquee:hover { background: rgba(0,0,0,0.25); }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION 2: NAVBAR
   ============================================= */
/* Navbar & Logo */
.navbar {
  position: fixed;
  top: 38px; /* Default: directly below announcement bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  color: var(--color-white);
  padding: 0 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.navbar.sticky {
  height: var(--header-height-shrink);
  background: var(--nav-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: var(--nav-text);
  top: 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px; /* Increased from 1200px to move logo further left */
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-ball-wrapper {
  width: 45px;
  height: 45px;
  background: var(--color-secondary);
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

#logoBall {
  width: 100%;
  height: 100%;
  fill: var(--color-accent);
  animation: logoRotate 20s linear infinite;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes logoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-logo:hover #logoBall {
  animation-play-state: paused;
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px var(--color-accent));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--color-accent);
}

.navbar-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding: 8px 0;
  color: inherit;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-link.active {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.3);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mega Dropdown Detail */
.nav-link-wrapper {
  position: relative;
  padding: 20px 0;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 800px;
  background: var(--card-bg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}

.nav-item.has-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mega-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.mega-item:hover {
  background: rgba(245, 197, 24, 0.05);
  transform: translateX(10px);
}

.mega-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 92, 42, 0.1);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mega-content h4 {
  margin: 0 0 5px;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.mega-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.action-btn {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}

.navbar.sticky .action-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

.navbar.sticky .nav-divider {
  background: rgba(0, 0, 0, 0.1);
}

.user-profile {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: var(--transition);
}

.user-profile:hover .avatar-circle {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(245, 197, 24, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #0a1f0f; /* Fallback dark green if nothing loads */
}

.hero-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Ken Burns Slideshow Fallback */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: kenBurns 20s linear infinite alternate;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.15) translate(-2%, -2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 15, 8, 0.92) 0%, rgba(15, 55, 25, 0.75) 60%, rgba(5, 15, 8, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
  padding-top: 80px; /* Account for navbar height */
}

.overflow-hidden {
  overflow: hidden;
}

.hero-text-forging {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 5px;
  margin-bottom: -10px;
  color: white;
  opacity: 1;
}

.hero-text-champions {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.85;
  color: var(--color-accent);
  text-shadow: 0 0 40px rgba(245, 197, 24, 0.4);
  margin-bottom: 10px;
  transform-origin: center;
}

.hero-text-onetouch-wrapper {
  font-family: var(--font-subheading);
  font-size: 1.4rem;
  letter-spacing: 6px;
  margin-bottom: 40px;
  min-height: 1.5em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.typewriter-cursor {
  animation: blink 0.8s infinite;
  color: var(--color-accent);
  font-weight: bold;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-tagline {
  font-size: 1.25rem;
  opacity: 0; /* Animated by GSAP */
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
}

.hero-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  opacity: 0; /* Animated by GSAP */
}

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

.ticker-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
}

.plus-sign {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-left: 2px;
}

.ticker-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-top: 5px;
}

.stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0; /* Animated by GSAP */
}

/* Corner Decorations */
.corner-item {
  position: absolute;
  width: 15vw;
  height: 15vw;
  z-index: 5;
  pointer-events: none;
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }

.corner-svg {
  width: 100%;
  height: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 10;
  text-decoration: none;
}

.jersey-icon {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  animation: bounce 2s infinite;
}

.jersey-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-accent);
}

.jersey-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  color: var(--color-secondary);
}

/* =============================================
   GLOBAL SECTION SHARED STYLES
   ============================================= */
.section-header {
  margin-bottom: 60px;
}

.subheading-accent {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 15px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 2px;
  margin-bottom: 20px;
}

.title-underline.left { margin-left: 0; }

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   SECTION 5: PROGRAMS OVERVIEW
   ============================================= */
.programs-section {
  background: var(--color-light-gray);
  padding: 100px 0;
  position: relative;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .programs-grid { grid-template-columns: 1fr; } }

/* --- Glassmorphism Utilities --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.glass-card {
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Card Base --- */
.program-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* Featured Card */
.program-card.featured {
  box-shadow: 0 8px 30px rgba(245,197,24,0.15), 0 0 0 2px var(--color-accent);
}
.program-card.featured:hover {
  box-shadow: 0 20px 50px rgba(245,197,24,0.3), 0 0 0 2px var(--color-accent);
}

.pg-featured-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* --- Category Color Band --- */
.pg-category-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.pg-category-band.foundation  { background: linear-gradient(90deg, #388E3C, #4CAF50); }
.pg-category-band.junior       { background: linear-gradient(90deg, #1976D2, #2196F3); }
.pg-category-band.intermediate { background: linear-gradient(90deg, #7B1FA2, #9C27B0); }
.pg-category-band.advanced     { background: linear-gradient(90deg, #F57C00, #FF9800); }
.pg-category-band.elite        { background: linear-gradient(90deg, #C62828, #F44336); }
.pg-category-band.senior       { background: linear-gradient(90deg, #37474F, #607D8B); }
.pg-category-band.goalkeeper   { background: linear-gradient(90deg, #00838F, #00BCD4); }
.pg-category-band.fitness      { background: linear-gradient(90deg, #6D4C41, #795548); }

.pg-cat-label { letter-spacing: 2px; }
.pg-age-badge {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

/* --- Card Image --- */
.pg-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.pg-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .pg-hover-overlay { opacity: 1; }

.pg-quick-link {
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  transition: transform 0.2s;
}

.pg-quick-link:hover { transform: scale(1.08); }

/* --- Card Content --- */
.pg-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pg-price-tag {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pg-price-tag strong {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.pg-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.pg-meta-row {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pg-meta-row i {
  color: var(--color-primary);
  margin-right: 4px;
}

.pg-features {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.pg-features li {
  font-size: 0.82rem;
  color: var(--color-text);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

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

.pg-features li i {
  color: var(--color-primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* --- Footer (capacity + CTA) --- */
.pg-footer {
  margin-top: auto;
}

.pg-capacity { margin-bottom: 14px; }

.cap-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.cap-text {
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
}

.cap-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-subheading);
}

.cap-pct.urgent { color: #e53935; }

.cap-bar {
  height: 5px;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.cap-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #4CAF50);
  border-radius: 10px;
  transition: width 1.5s ease;
}

.cap-fill.urgent {
  background: linear-gradient(90deg, #e53935, #ff5722);
}

/* CTA buttons */
.pg-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-enroll {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
  flex: 1;
  text-align: center;
}

.btn-enroll:hover {
  background: var(--color-accent);
  color: #000;
  transform: translateY(-2px);
}

.pg-learn {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-family: var(--font-subheading);
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pg-learn:hover { color: var(--color-accent); gap: 8px; }

.section-actions { text-align: center; margin-top: 50px; }



/* =============================================
   SECTION 6: WHY CHOOSE FOUNDATION FOOTBALL
   ============================================= */
.why-section {
  padding: 120px 0;
  background: #0f1a12; /* Darker green theme */
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Football Field SVG Background */
.why-field-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.why-field-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* --- Left Column: Image & Badges --- */
.why-image-col {
  position: relative;
}

.why-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.why-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  transform: scale(1);
  transition: 0.6s ease;
}

.why-img-frame:hover .why-img {
  transform: scale(1.03);
}

.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,18,0.8), transparent);
  border-radius: 20px;
}

/* Floating Badges */
.why-badge {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  animation: badgeFloat 4s ease-in-out infinite;
}

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

.why-badge.top-right {
  top: -30px;
  right: -30px;
  background: var(--color-accent);
  color: #000;
  border: none;
}

.why-badge.bottom-left {
  bottom: 40px;
  left: -30px;
}

.why-badge-num {
  font-family: var(--font-heading);
  font-size: 2.22rem;
  line-height: 1;
}

.why-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.why-badge-pill {
  position: absolute;
  bottom: -20px;
  right: 40px;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-subheading);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
}

.why-badge-pill i { color: var(--color-accent); }

/* --- Right Column: Content --- */
.why-header {
  margin-bottom: 40px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin: 15px 0;
}

.accent-text {
  color: var(--color-accent);
}

.why-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Feature List */
.why-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .why-feature-list { grid-template-columns: 1fr; }
}

.why-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.why-feature-item:hover .why-icon-box {
  transform: scale(1.1) rotate(5deg);
}

/* Icon Colors */
.why-icon-box.gold { color: #FFD700; }
.why-icon-box.green { color: #4CAF50; }
.why-icon-box.blue { color: #2196F3; }
.why-icon-box.orange { color: #FF9800; }
.why-icon-box.red { color: #F44336; }
.why-icon-box.teal { color: #00BCD4; }
.why-icon-box.purple { color: #9C27B0; }

.why-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.why-feature-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* CTAs */
.why-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(245, 197, 24, 0.5);
}

.btn-outline-dark {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn-outline-dark:hover {
  background: #fff;
  color: #000;
}


/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 20px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .modal-container {
  transform: scale(1);
}

.video-modal .close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #12401d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--color-secondary);
  transform: translateY(-3px);
}

/* ...rest of styles (marquee, mobile, ticker, etc.) will be added as needed */

/* --- Section 4: Quick Stats Ticker --- */
.stats-ticker-band {
  background: var(--color-secondary);
  color: #fff;
  padding: 60px 0;
  border-bottom: 2px solid var(--color-accent);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.ticker-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 200px;
}

.ticker-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.8;
}

.ticker-text {
  display: flex;
  flex-direction: column;
}

.ticker-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.ticker-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
}

.ticker-suffix {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-left: 2px;
}

.ticker-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-top: 5px;
}

.ticker-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 197, 24, 0.1);
}

@media (max-width: 768px) {
  .ticker-divider { display: none; }
  .ticker-item { text-align: center; justify-content: center; }
}

/* --- Section 5: Programs Overview --- */
.programs-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.subheading-accent {
  color: var(--color-primary);
  font-family: var(--font-subheading);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 0 auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.program-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.pg-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-secondary);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.8rem;
  z-index: 5;
}

.pg-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.pg-price {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.pg-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pg-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.pg-meta {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.pg-features {
  list-style: none;
  margin-bottom: 30px;
}

.pg-features li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pg-features i {
  color: var(--color-primary);
  font-size: 0.8rem;
}

.pg-footer {
  margin-top: auto;
}

.pg-capacity {
  margin-bottom: 20px;
}

.cap-text {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 5px;
  text-align: right;
}

.cap-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.cap-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
}

.cap-fill.warning {
  background: #e74c3c;
}

.pg-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-enroll {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-enroll:hover {
  background: var(--color-secondary);
}

.link-more {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.section-actions {
  text-align: center;
  margin-top: 40px;
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 92, 42, 0.98), rgba(13, 13, 13, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 20px 40px;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  letter-spacing: 2px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-overlay.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link.active {
  color: var(--color-accent);
}

.mobile-footer {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-motto {
  font-family: var(--font-subheading);
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.social-circles {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  transform: translateY(-5px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 2100;
  position: relative;
  background: transparent;
  border: none;
  padding: 5px;
  color: inherit;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.section-actions {
  text-align: center;
  margin-top: 40px;
}

/* --- Section 6: Why Choose Us --- */
.why-choose-us {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.field-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.action-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.action-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

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

.image-stats-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-icon-box.gold { background: rgba(245, 197, 24, 0.1); color: var(--color-accent); }
.feature-icon-box.green { background: rgba(26, 92, 42, 0.1); color: var(--color-primary); }
.feature-icon-box.blue { background: rgba(52, 152, 219, 0.1); color: #3498db; }

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-secondary);
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 700;
}

.feature-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .split-layout { flex-direction: column; text-align: center; }
  .feature-item { text-align: left; }
  .title-underline.left { margin: 0 auto 30px; }
}

/* --- Section 7: Featured Coaches --- */
.coaches-section {
  padding: 100px 0;
  background: var(--color-secondary);
  color: #fff;
}

.coaches-swiper {
  padding: 20px 20px 60px !important;
}

.coach-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.coach-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--color-accent);
  transform: translateY(-10px);
}

.coach-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.coach-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.coach-card:hover .coach-img {
  transform: scale(1.1);
}

.coach-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.coach-card:hover .coach-socials {
  transform: translateY(0);
}

.coach-socials a {
  width: 35px;
  height: 35px;
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: 0.3s;
}

.coach-socials a:hover {
  background: #fff;
  transform: scale(1.1);
}

.coach-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coach-name {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.coach-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 15px;
  display: block;
}

.coach-bio {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.coach-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.coach-badges .badge {
  background: rgba(245, 197, 24, 0.1);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.btn-coach-profile {
  margin-top: auto;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-coach-profile:hover {
  color: #fff;
  padding-left: 5px;
}

.coach-experience {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #aaa;
}

.exp-item i {
  color: var(--color-accent);
  width: 15px;
  text-align: center;
}

.section-actions {
  text-align: center;
  margin-top: 60px;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--color-secondary);
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Swiper Custom Styles */
.coaches-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.3);
  opacity: 1;
}

.coaches-swiper .swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 25px;
  border-radius: 5px;
}

.coaches-swiper .swiper-button-next,
.coaches-swiper .swiper-button-prev {
  color: var(--color-accent);
  background: rgba(255,255,255,0.05);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.coaches-swiper .swiper-button-next:after,
.coaches-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
}

/* --- Section 8: Upcoming Fixtures & Results --- */
.fixtures-results-section {
  padding: 120px 0;
  background: #fdfdfd;
}

.fixtures-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

@media (max-width: 1100px) {
  .fixtures-layout { grid-template-columns: 1fr; gap: 60px; }
}

/* --- Next Match Big Card (Left) --- */
.next-match-big-card {
  background: #0d0d0d;
  border-radius: 30px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  margin-top: 30px;
}

.next-match-big-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
  z-index: 1;
}

.match-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.comp-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
}

.match-time-badge {
  font-size: 0.8rem;
  color: #888;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Countdown Big */
.countdown-big-wrapper {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.countdown-big {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}

.count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unit-val {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
}

.unit-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-top: 5px;
  font-weight: 800;
}

.count-sep {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
  margin-bottom: 15px;
}

/* Teams Row Big */
.match-teams-big {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.team-big { flex: 1; }

.team-logo-xl {
  width: 90px;
  height: 90px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.05);
}

.team-logo-xl.opponent { background: #e74c3c; }

.team-name-xl {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.team-loc {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 2px;
  font-weight: 800;
}

.match-vs-xl {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
  padding: 0 20px;
}

/* Info Footer */
.match-info-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.m-info-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.m-info-group i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.m-info-text { display: flex; flex-direction: column; }

.m-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 1px;
  font-weight: 700;
}

.m-val { font-size: 0.95rem; font-weight: 700; color: #fff; }
.venue-link { text-decoration: none; transition: 0.3s; }
.venue-link:hover { color: var(--color-accent); }

.match-card-actions {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  position: relative;
  z-index: 2;
}

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

/* --- Recent Results (Right) --- */
.results-list-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.result-row {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.4s ease;
}

.result-row:hover {
  transform: translateX(5px);
  border-color: #e0e0e0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.res-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.res-comp { color: #888; }
.res-date { color: #aaa; }

.res-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.res-team {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.res-team:first-child { justify-content: flex-end; }

.res-team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.res-team-logo-sm {
  width: 35px;
  height: 35px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.res-team-logo-sm.opponent { background: #e74c3c; }
.res-team-logo-sm.opponent-2 { background: #3498db; }
.res-team-logo-sm.opponent-3 { background: #f39c12; }

.res-score-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  padding: 8px 15px;
  border-radius: 10px;
}

.res-score {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-secondary);
  line-height: 1;
}

.res-score.win { color: var(--color-primary); }
.res-score-sep { color: #ddd; font-weight: 300; }

.res-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.res-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.draw .res-status { color: #95a5a6; }

.res-report {
  font-size: 0.8rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.res-report:hover { gap: 10px; color: var(--color-accent); }

.results-action { margin-top: 40px; text-align: center; }

.link-all {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

.link-all:hover { color: var(--color-primary); gap: 20px; }

@media (max-width: 600px) {
  .next-match-big-card { padding: 30px 20px; }
  .unit-val { font-size: 3rem; }
  .team-logo-xl { width: 60px; height: 60px; font-size: 1.2rem; }
  .team-name-xl { font-size: 1.3rem; }
  .match-info-footer { grid-template-columns: 1fr; gap: 20px; }
  .match-card-actions { grid-template-columns: 1fr; }
  .res-team-name { display: none; }
}

/* --- Section 9: Player Spotlight --- */
.spotlight-section {
  padding: 120px 0;
  background: var(--color-secondary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight-hero {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 30px;
  padding: 60px;
  margin-top: 40px;
}

.spotlight-jersey-num {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 20rem;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  z-index: 1;
}

.spotlight-image-side {
  width: 45%;
  position: relative;
  z-index: 2;
}

.spotlight-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.spotlight-content-side {
  width: 55%;
  position: relative;
  z-index: 2;
}

.potm-badge {
  background: var(--color-accent);
  color: var(--color-secondary);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 25px;
}

.player-name {
  font-size: 4.5rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.player-position {
  font-family: var(--font-subheading);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 40px;
}

.player-stats-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.p-stat {
  display: flex;
  flex-direction: column;
}

.p-stat-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
}

.p-stat-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coach-quote {
  border-left: 3px solid var(--color-accent);
  padding-left: 30px;
  margin-bottom: 50px;
}

.coach-quote i {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.5;
}

.coach-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.coach-quote cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .spotlight-hero { flex-direction: column; padding: 40px; text-align: center; }
  .spotlight-image-side, .spotlight-content-side { width: 100%; }
  .player-name { font-size: 3rem; }
  .player-stats-grid { justify-content: center; }
  .coach-quote { border: none; padding: 0; }
  .spotlight-jersey-num { display: none; }
}

/* --- Section 10: Join the Trials (CTA) --- */
.trials-cta-section {
  padding: 120px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.trials-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1510566337590-2fc1f21d0faa?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
  opacity: 0.1;
  filter: grayscale(100%);
}

.trials-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.trials-content { width: 60%; }
.trials-visual { width: 40%; display: flex; justify-content: center; }

.trials-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.trials-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
}

.trials-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 50px;
}

.t-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.trials-actions {
  display: flex;
  gap: 20px;
}

.floating-jersey {
  position: relative;
  width: 100%;
  max-width: 350px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.jersey-img {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.jersey-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
  z-index: -1;
}

@media (max-width: 1024px) {
  .trials-wrapper { flex-direction: column; text-align: center; }
  .trials-content, .trials-visual { width: 100%; }
  .trials-title { font-size: 3rem; }
  .trials-features, .trials-actions { justify-content: center; }
}

/* --- Section 11: Photo Gallery --- */
.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 20, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  color: var(--color-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.gallery-title {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}

.gallery-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.6;
  transition: 0.3s;
}

.gallery-zoom:hover { opacity: 1; transform: scale(1.2); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}

/* --- Section 12: Trophy Cabinet --- */
.trophy-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trophy-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.trophy-card:hover {
  transform: translateY(-15px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.trophy-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(245, 197, 24, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  transition: 0.3s;
}

.trophy-icon-wrapper.silver { color: #bdc3c7; background: rgba(189, 195, 199, 0.1); }
.trophy-icon-wrapper.star { color: #f39c12; background: rgba(243, 156, 18, 0.1); }

.trophy-card:hover .trophy-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: var(--color-accent);
  color: var(--color-secondary);
}

.trophy-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.trophy-year {
  display: block;
  font-family: var(--font-subheading);
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.trophy-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Gallery Lightbox Modal */
.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(15px);
}

.gallery-lightbox-modal .modal-container {
  position: relative;
  z-index: 2;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-lightbox-modal.active .modal-container {
  transform: scale(1);
}

.gallery-lightbox-modal img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
  margin-top: 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
}

.gallery-lightbox-modal .close-modal {
  position: absolute;
  top: -50px;
  right: -20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-lightbox-modal .close-modal:hover {
  color: var(--color-accent);
  transform: rotate(90deg);
}

/* --- Section 13: Latest News & Blog --- */
.blog-section {
  padding: 100px 0;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-preview-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.blog-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.blog-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-preview-card:hover .blog-img-box img { transform: scale(1.1); }

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  font-family: var(--font-heading);
  text-align: center;
  line-height: 1;
  font-size: 0.9rem;
}

.blog-info {
  padding: 30px;
}

.blog-tag {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-secondary);
  line-height: 1.4;
  transition: 0.3s;
}

.blog-preview-card:hover .blog-title { color: var(--color-primary); }

.blog-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.read-more:hover { gap: 15px; color: var(--color-primary); }

/* --- Section 14: Sponsors Marquee --- */
.sponsors-section {
  padding: 60px 0;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.sponsors-track {
  display: inline-flex;
  gap: 100px;
  animation: sponsorScroll 30s linear infinite;
}

.sponsor-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #ccc;
  font-weight: 900;
  letter-spacing: 5px;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.sponsor-logo:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

@keyframes sponsorScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .sponsors-track { gap: 50px; }
  .sponsor-logo { font-size: 1.8rem; }
}

/* =============================================
   SECTION 4: QUICK STATS TICKER BAND
   ============================================= */
.stats-ticker-band {
  background: linear-gradient(90deg, #0a1a0d 0%, #0d2010 50%, #0a1a0d 100%);
  padding: 35px 0;
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid rgba(245, 197, 24, 0.2);
  position: relative;
  overflow: hidden;
}

.stats-ticker-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ticker-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 40px;
}

.ticker-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  flex-shrink: 0;
  animation: tickerPulse 3s ease-in-out infinite;
}

.ticker-item:nth-child(3) .ticker-icon { animation-delay: 0.5s; }
.ticker-item:nth-child(5) .ticker-icon { animation-delay: 1s; }
.ticker-item:nth-child(7) .ticker-icon { animation-delay: 1.5s; }

@keyframes tickerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.ticker-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.ticker-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 1px;
}

.ticker-suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  vertical-align: top;
}

.ticker-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-family: var(--font-subheading);
}

.ticker-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(245,197,24,0.5), transparent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ticker-container { gap: 20px; }
  .ticker-item { padding: 10px 20px; }
  .ticker-value { font-size: 1.8rem; }
  .ticker-divider { display: none; }
}

/* --- Section 15: Newsletter (STAY IN THE FORMATION) --- */
.newsletter-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.newsletter-glass {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.newsletter-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,197,24,0.03) 0%, transparent 70%);
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-title-main {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 40px;
}

.glass-form {
  max-width: 600px;
  margin: 0 auto 30px;
}

.glass-input-group {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.glass-input-group:focus-within {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 20px rgba(245,197,24,0.1);
}

.glass-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 30px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.glass-input-group input::placeholder { color: #555; }

.spam-text {
  font-size: 0.75rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .newsletter-title-main { font-size: 2.5rem; }
  .glass-input-group { flex-direction: column; border-radius: 20px; gap: 10px; background: transparent; border: none; padding: 0; }
  .glass-input-group input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 15px 25px; border-radius: 30px; margin-bottom: 10px; }
  .glass-input-group .btn { width: 100%; }
}

/* --- Main Footer (Premium) --- */
.main-footer {
  background: #07150d; /* Very dark green */
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.01) 1px, transparent 0); /* Subtle texture */
  background-size: 40px 40px;
  color: #fff;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.main-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/grass.png'); /* Grass texture overlay */
  opacity: 0.03;
  pointer-events: none;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo-svg {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.footer-logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-heading); font-size: 2rem; line-height: 1; }
.logo-sub { font-family: var(--font-subheading); font-size: 0.75rem; color: var(--color-accent); letter-spacing: 2px; }

.footer-vision {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 350px;
}

.footer-socials { display: flex; gap: 15px; }

.f-social-link {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.f-social-link:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(245,197,24,0.2);
}

.f-col-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-link-col ul { list-style: none; }
.footer-link-col li { margin-bottom: 15px; }

.footer-link-col a {
  color: #777;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-link-col a:hover { color: var(--color-accent); padding-left: 5px; }

.f-contact-items { display: flex; flex-direction: column; gap: 25px; }
.f-contact-item { display: flex; gap: 20px; }

.f-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 153, 51, 0.1);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.f-text { font-size: 0.9rem; color: #888; line-height: 1.6; }

/* Bottom Bar */
.footer-bottom-bar {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555;
  position: relative;
  z-index: 2;
}

.f-extra-links { display: flex; gap: 30px; }
.f-extra-links a { color: #555; text-decoration: none; transition: 0.3s; }
.f-extra-links a:hover { color: #888; }
.f-made-by i { color: #e74c3c; margin: 0 5px; }

@media (max-width: 1024px) {
  .footer-layout { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .footer-logo, .footer-socials, .f-contact-item { justify-content: center; }
  .footer-vision { margin-left: auto; margin-right: auto; }
  .footer-bottom-bar { flex-direction: column; gap: 20px; text-align: center; }
  .f-extra-links { justify-content: center; }
}

/* =============================================
   PAGE MODAL & OVERLAY STYLES
   ============================================= */

.page-modal {
  position: fixed;
  inset: 0;
  display: none; /* JS toggles this to flex */
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.modal-content-container {
  position: relative;
  z-index: 3010;
  background: #111;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.btn-close-modal:hover {
  background: var(--color-accent);
  color: #000;
  transform: rotate(90deg);
}

.modal-p-40 { padding: 40px; }
.modal-p-60 { padding: 60px; }

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.schedule-container { width: 500px; padding: 10px; }
.coach-profile-modal { width: 1000px; padding: 0; overflow: hidden; }

/* Map Section */
.map-section {
    background: var(--color-bg-dark);
    position: relative;
    z-index: 1;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(90%); /* Premium Dark Map Mode */
    border-radius: 23px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section Styling */
.faq-section {
    background: var(--color-bg-dark);
    position: relative;
}

.faq-section .section-title h2 {
    color: #fff;
    margin-bottom: 15px;
}

.faq-section .section-title p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.faq-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.faq-header i {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-body {
    padding: 0 30px 25px;
    display: none;
    color: var(--color-text-muted);
    line-height: 1.6;
}
