@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  /* Colors */
  --bg-main: #06090e;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-hover: rgba(15, 23, 42, 0.7);
  --bg-nav: rgba(6, 9, 14, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 214, 0, 0.2);
  
  --primary: #FFD600;       /* Electric yellow-gold from logo */
  --primary-glow: rgba(255, 214, 0, 0.4);
  --secondary: #00B0FF;     /* Electric blue */
  --secondary-glow: rgba(0, 176, 255, 0.4);
  --accent: #FF5252;        /* Vibrant red/coral */
  --accent-orange: #FF9100; /* Warm orange */
  
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 120px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GENERAL RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- UTILITY CLASSES --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.text-gradient-yellow {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  background: rgba(255, 214, 0, 0.08);
  border: 1px solid rgba(255, 214, 0, 0.2);
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- GLASSMOPRHISM CARD --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8F00 100%);
  color: #000;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 214, 0, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff6d00;
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 109, 0, 0.6);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(6, 9, 14, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 0.5px solid;
  border-image: linear-gradient(90deg, rgba(255, 61, 0, 0.55), rgba(255, 145, 0, 0.55), rgba(255, 214, 0, 0.55), rgba(255, 145, 0, 0.55), rgba(255, 61, 0, 0.55)) 1;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 1px 5px rgba(255, 109, 0, 0.15);
}

header.scrolled {
  background: rgba(6, 9, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid;
  border-image: linear-gradient(90deg, rgba(255, 61, 0, 0.55), rgba(255, 145, 0, 0.55), rgba(255, 214, 0, 0.55), rgba(255, 145, 0, 0.55), rgba(255, 61, 0, 0.55)) 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(255, 109, 0, 0.25);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #FFD600 0%, #FF8F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.85);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--primary);
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

.menu-toggle, .mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  padding: 5px;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  background: transparent;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero/hero-banner.jpg?v=3');
  background-size: cover;
  background-position: center 100px;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-main), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-content {
  max-width: 700px;
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-tag span {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.95);
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Floating Dome roof notice */
.hero-notice {
  position: absolute;
  right: 5%;
  bottom: 15%;
  max-width: 320px;
  z-index: 5;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 214, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 214, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  border-radius: var(--border-radius-sm);
  padding: 20px;
}

.hero-notice h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-notice p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- INTERACTIVE QUESTIONNAIRE / MATCHER --- */
.matcher {
  background: linear-gradient(180deg, var(--bg-main) 0%, #0b0f19 100%);
  position: relative;
}

.matcher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.matcher-visual {
  position: relative;
}

.matcher-visual img {
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  width: 100%;
}

.matcher-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--secondary) 0%, #008be5 100%);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-title);
  box-shadow: 0 10px 20px rgba(0, 176, 255, 0.3);
}

.matcher-badge span:first-child {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
}

.matcher-badge span:last-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
}

.matcher-form {
  padding: 40px;
}

.matcher-form h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.matcher-form p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.radio-group {
  display: flex;
  gap: 16px;
}

.radio-btn {
  flex: 1;
  position: relative;
}

.radio-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 0;
  text-align: center;
}

.radio-btn input:checked + label {
  background: rgba(255, 214, 0, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 214, 0, 0.15);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.checkbox-btn {
  position: relative;
}

.checkbox-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 0;
  text-align: center;
}

.checkbox-btn input:checked + label {
  background: rgba(0, 176, 255, 0.1);
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 15px rgba(0, 176, 255, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-field {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.input-field:focus {
  outline: none;
  background: rgba(255,255,255,0.05);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 214, 0, 0.1);
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Modal Popup Success Style */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #0f172a;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius-md);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.8);
  transition: var(--transition-normal);
  box-shadow: 0 0 40px rgba(255, 214, 0, 0.2);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 214, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  font-size: 2.5rem;
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1rem;
}

/* --- SPORTS ACADEMIES SECTIONS --- */
.sport-section {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.sport-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.sport-section.reverse .sport-grid {
  grid-template-columns: 1.2fr 1fr;
}

.sport-visual {
  position: relative;
}

.sport-visual img {
  border-radius: var(--border-radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
}

.sport-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(to right, rgba(6, 9, 14, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.sport-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sport-tag {
  align-self: flex-start;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 4px;
}

.tag-football {
  background: rgba(255, 214, 0, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 214, 0, 0.3);
}

.tag-badminton {
  background: rgba(0, 176, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(0, 176, 255, 0.3);
}

.tag-basketball {
  background: rgba(255, 145, 0, 0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 145, 0, 0.3);
}

.sport-info h2 {
  font-size: 2.5rem;
}

.sport-coach {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  margin-top: 10px;
}

.coach-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.coach-details h5 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.coach-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sport-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 0;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bullet-item i {
  color: var(--primary);
  font-size: 1rem;
}

.sport-ctas {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

/* --- INTRODUCING PICK-UP GAMES & WHATSAPP COMMUNITY --- */
.pickup {
  background: linear-gradient(180deg, #0b0f19 0%, var(--bg-main) 100%);
}

.pickup-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-box i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-box h4 {
  font-size: 1.15rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Active Ticker / Dashboard Widget */
.pickup-widget {
  background: #0f172a;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-family: var(--font-title);
  color: var(--text-primary);
}

.widget-title span {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.widget-pill {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 176, 255, 0.1);
  color: var(--secondary);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 176, 255, 0.2);
}

.chat-simulator {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.chat-bubble {
  display: flex;
  gap: 12px;
  max-width: 90%;
  animation: fadeInUp 0.4s ease forwards;
}

.chat-bubble.right {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.chat-text {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: 12px;
  border-top-left-radius: 0;
  font-size: 0.85rem;
}

.chat-bubble.right .chat-text {
  background: rgba(255, 214, 0, 0.08);
  border-color: rgba(255, 214, 0, 0.2);
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
}

.chat-user {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.chat-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

.widget-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 24px;
}

.w-stat h5 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.w-stat p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- FACILITIES SECTION --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.facility-card {
  height: 420px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.facility-card:hover .facility-img {
  transform: scale(1.05);
}

.facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(6, 9, 14, 0.95) 0%, rgba(6, 9, 14, 0.6) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 60%;
  transition: var(--transition-normal);
}

.facility-card:hover .facility-overlay {
  height: 75%;
}

.facility-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.facility-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.facility-card:hover .facility-desc {
  opacity: 1;
  transform: translateY(0);
}

.facility-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.spec-tag {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* --- LIVE TIMELINE SCHEDULER WIDGET --- */
.schedule-widget {
  margin-top: 80px;
}

.scheduler-card {
  padding: 40px;
}

.scheduler-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.scheduler-title h3 {
  font-size: 1.8rem;
}

.sport-tabs {
  display: flex;
  gap: 10px;
}

.tab-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  box-shadow: 0 0 15px var(--primary-glow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 20px;
}

.time-slot {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.booking-status-bar {
  height: 35px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.booking-status-bar.booked {
  background: rgba(255, 82, 82, 0.08);
  border-color: rgba(255, 82, 82, 0.2);
  color: var(--accent);
}

.booking-status-bar.booked::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
}

.booking-status-bar.available {
  background: rgba(255, 214, 0, 0.05);
  border-color: rgba(255, 214, 0, 0.2);
  color: var(--primary);
}

.booking-status-bar.available::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.booking-status-bar.available:hover {
  background: rgba(255, 214, 0, 0.1);
  cursor: pointer;
}

.booking-status-bar .status-text {
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- SCHEDULER LAYOUT GRID --- */
.scheduler-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.timings-directory-card {
  height: 100%;
}

.timings-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timing-category h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timing-chip {
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.timing-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.timing-chip.highlight {
  border-color: rgba(255, 109, 0, 0.3);
  color: #ff9100;
  background: rgba(255, 109, 0, 0.05);
}

.timing-chip.highlight:hover {
  border-color: #ff9100;
  box-shadow: 0 0 10px rgba(255, 109, 0, 0.2);
}

.special-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.special-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-list li i {
  font-size: 0.75rem;
  color: var(--primary);
}

@media (max-width: 992px) {
  .scheduler-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- HOST EVENTS --- */
.events {
  background: linear-gradient(180deg, var(--bg-main) 0%, #0b0f19 100%);
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 176, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.events-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.events-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.event-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.event-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
}

.event-type-card i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.event-type-card span {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
}

.events-testimonial {
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  font-style: italic;
  color: var(--text-secondary);
}

.events-testimonial span {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 10px;
  font-size: 0.9rem;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent-orange);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 0.95rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- MOTIVATIONAL / TRIAL CLASS CALLOUT --- */
.callout {
  background: radial-gradient(circle at center, rgba(255, 214, 0, 0.08) 0%, transparent 60%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.callout-content {
  max-width: 700px;
  margin: 0 auto;
}

.callout-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.callout-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* --- FAQ ACCORDION SECTION --- */
.faq {
  background: #090f19;
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
}

.faq-answer-content {
  padding: 0 30px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(255, 214, 0, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* high enough value for content */
  transition: max-height var(--transition-normal) cubic-bezier(1, 0, 1, 0);
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- FOOTER --- */
footer {
  background: #03060a;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 214, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
  }
}

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

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

/* --- COACHING SUB-GRID --- */
.coaching-programs-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.coaching-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coaching-card .badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coaching-card.standard .badge {
  background: var(--primary);
  color: #000000;
}

.coaching-card.women .badge {
  background: linear-gradient(90deg, #ff3d00, #ff9100);
  color: #ffffff;
}

.coaching-card h3 {
  font-size: 1.75rem;
  margin-top: 20px;
  margin-bottom: 12px;
}

.coaching-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.coaching-card ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.coaching-card ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.coaching-card ul li i {
  font-size: 1rem;
}

.coaching-card.standard ul li i {
  color: var(--primary);
}

.coaching-card.women ul li i {
  color: #ff9100;
}

.coaching-card-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coaching-price-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coaching-price {
  font-size: 1.6rem;
  font-weight: 800;
}

.coaching-card.standard .coaching-price {
  color: var(--text-primary);
}

.coaching-card.women .coaching-price {
  color: #ff9100;
}

.women-card-icon {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(255, 109, 0, 0.5));
  margin-top: -20px;
  margin-right: -10px;
  transition: transform 0.3s ease;
}

@media (max-width: 480px) {
  .women-card-icon {
    height: 80px;
    margin-top: -10px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .coaching-programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 1024px) {
  .logo img {
    height: 70px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  nav {
    gap: 16px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-notice {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    max-width: 100%;
  }
  .matcher-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pickup-dashboard {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 100px;
  }
  
  .hero::before {
    background-position: center 70px;
  }
  
  .logo img {
    height: 70px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #06090e;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    z-index: 999;
  }
  
  .nav-links .nav-link {
    color: var(--text-primary);
    font-size: 1.15rem;
    padding: 12px 0;
  }
  
  .nav-links .nav-link:hover {
    color: var(--primary);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle, .mobile-menu-btn {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sport-grid, .sport-section.reverse .sport-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sport-section.reverse .sport-grid .sport-visual {
    order: -1;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .scheduler-title {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-row {
    grid-template-columns: 80px 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .event-types {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* --- LEGAL PAGES LAYOUT --- */
.legal-page {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  min-height: 80vh;
  background: radial-gradient(circle at 50% 0%, rgba(255, 214, 0, 0.05) 0%, transparent 40%);
}

.legal-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.legal-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary);
}

.legal-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-list {
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 24px;
    margin: 0 15px;
  }
  .legal-title {
    font-size: 2rem;
  }
}
