/* ==========================================================================
   BIRDIEINS MASTER STYLESHEET — SPORTS AI PLATFORM
   Covers: Home, Schools, Academies, Badminton, About Us, FAQ, Contact,
           Privacy Policy, Guidance, and Subscription Pages.
   ========================================================================== */

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

:root {
  /* Dynamic Energy & Sport Palette */
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --primary-bg: #eef5fb;
  --primary-glow: rgba(2, 132, 199, 0.22);
  
  --lime-sport: #84cc16;
  --lime-sport-dark: #365314;
  --lime-sport-bg: rgba(132, 204, 22, 0.16);
  
  --energy-orange: #ea580c;
  --energy-orange-dark: #c2410c;
  --energy-orange-light: #fff7ed;
  --energy-orange-glow: rgba(234, 88, 12, 0.25);
  
  --teal-accent: #0d9488;
  --teal-accent-light: #f0fdfa;
  --court-emerald: #10b981;
  --cyan-speed: #06b6d4;

  /* Surfaces & Canvas */
  --bg-canvas: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card-alt: #edf1f2;
  --bg-glass: rgba(255, 255, 255, 0.96);
  
  --border-glass: rgba(226, 232, 240, 0.9);
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-focus: #38bdf8;

  /* Typography Colors */
  --text-headline: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;

  /* Elevation Shadows */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(2, 132, 199, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 25px var(--primary-glow);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--bg-canvas);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul, ol {
  list-style: none;
}

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

/* Ambient Background Glow */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  animation: floatAmbient 16s ease-in-out infinite alternate;
}

.ambient-glow-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 70%);
  top: -80px;
  left: -80px;
}

.ambient-glow-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.15), transparent 70%);
  top: 40%;
  right: -100px;
  animation-delay: -5s;
}

.ambient-glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12), transparent 70%);
  bottom: 5%;
  left: 10%;
  animation-delay: -10s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, 50px) scale(1.06); }
  100% { transform: translate(-25px, 25px) scale(0.96); }
}

/* ==========================================================================
   NAVIGATION BAR & APP HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1000;
  margin: 0 auto 20px auto;
  width: 94%;
  max-width: 1280px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  top: 8px;
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.25);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: scale(1.04);
}

.brand-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-headline);
  position: relative;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--lime-sport));
  border-radius: var(--r-pill);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1100;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-headline);
  border-radius: var(--r-sm);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(4px);
}

/* App Store Badges */
.store-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-badge {
  display: inline-flex;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.store-badge img {
  height: 28px;
  width: auto;
  border-radius: 6px;
  display: block;
}

/* Contact Nav Action Button */
.btn-nav-action {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px var(--primary-glow);
  white-space: nowrap;
}

.btn-nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--primary-glow);
}

.btn-contact-nav {
  background-color: #e2e8f0;
  color: #0f172a;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
}

.btn-contact-nav:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-headline);
  cursor: pointer;
}

/* Mobile Drawer (Guaranteed Hidden on Desktop) */
.mobile-drawer {
  display: none !important;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  padding: 30px 24px;
  transition: right 0.35s ease;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0 !important;
}

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

.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-link {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-headline);
}

.drawer-link:hover {
  color: var(--primary);
  transform: translateX(6px);
}

/* ==========================================================================
   LAYOUT CONTAINERS & PAGE HEADERS
   ========================================================================== */

main.container, .container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

main.container {
  padding-top: 25px;
}

.section-spacer {
  padding: 65px 0;
}

.section-spacer-sm {
  padding: 40px 0;
}

.bg-light {
  background-color: var(--bg-card-alt);
}

.bg-grey {
  background-color: #eeeeee;
}

.page-header-banner {
  text-align: center;
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.08) 0%, rgba(248, 250, 252, 0.6) 100%);
  border: 1px solid rgba(2, 132, 199, 0.15);
  padding: 55px 30px 45px;
  border-radius: var(--r-lg);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.page-tag {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-block;
}

.page-tag-orange {
  color: var(--energy-orange);
}

.page-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--text-headline);
  line-height: 1.22;
  margin: 14px auto;
  max-width: 900px;
}

.page-title-dark {
  color: var(--text-headline);
}

.page-subtitle {
  font-size: 17.5px;
  color: var(--text-body);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.65;
}

.highlight-pill {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.5;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  border: 1px solid rgba(2, 132, 199, 0.2);
  margin-bottom: 12px;
}

.tag-badge-orange {
  background: rgba(234, 88, 12, 0.08);
  color: var(--energy-orange);
  border-color: rgba(234, 88, 12, 0.2);
}

/* ==========================================================================
   HERO BLOCKS & TWO-COLUMN SECTIONS
   ========================================================================== */

.hero-block, .feature-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
  padding: 40px 0;
}

.hero-block.reverse, .feature-card.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.hero-block.reverse .hero-content,
.feature-card.reverse > div:first-child {
  order: 2;
}

.hero-block.reverse .hero-image-wrap,
.feature-card.reverse > div:last-child {
  order: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-headline);
  margin-bottom: 18px;
}

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

.hero-description, .feature-card-desc {
  font-size: 17.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Action Buttons */
.btn-action-glow, .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--primary-glow);
  transition: all 0.25s ease;
}

.btn-action-glow:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px var(--primary-glow);
}

/* 3D Mockup Container */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.mockup-card-3d {
  background: var(--bg-surface);
  border-radius: var(--r-lg);
  padding: 10px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
}

.mockup-card-3d img,
.hero-image-wrap img {
  border-radius: var(--r-md);
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

/* Floating Telemetry Badges */
.telemetry-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-headline);
  z-index: 5;
}

.telemetry-badge-1 { top: 15px; right: -10px; }
.telemetry-badge-2 { bottom: 15px; left: -10px; }

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-sport);
}

.pulse-dot-cyan {
  background: var(--cyan-speed);
}

/* ==========================================================================
   FEATURE COMPONENTS (SUBSECTIONS, METRICS, HIGHLIGHTS, GRIDS)
   ========================================================================== */

.feature-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 35px;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-card-header i {
  font-size: 28px;
  color: var(--primary);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.sub-feature-card, .sub-feature-box, .sub-section-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.sub-feature-card:hover, .sub-feature-box:hover, .sub-section-box:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon-wrap, .sub-section-box i, .sub-feature-box i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.sub-feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 4px;
}

.sub-feature-desc {
  font-size: 14.5px;
  color: var(--text-body);
}

/* Metric Items */
.metric-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.metric-item i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.metric-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-headline);
}

.metric-desc {
  font-size: 14.5px;
  color: var(--text-body);
}

/* Highlight Box (Lime Green Style) */
.highlight-box-lime {
  display: inline-block;
  background-color: var(--lime-sport-bg);
  color: var(--lime-sport-dark);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  margin-top: 15px;
  border: 1px solid rgba(132, 204, 22, 0.3);
}

/* Section Centered Headers */
.section-header-centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 35px;
}

.section-header-centered h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-divider {
  width: 70px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--primary), var(--lime-sport));
  border-radius: var(--r-pill);
  margin: 0 auto 18px;
}

.section-divider-orange {
  background: linear-gradient(90deg, var(--energy-orange), #f59e0b);
}

.section-divider-teal {
  background: linear-gradient(90deg, var(--teal-accent), var(--cyan-speed));
}

/* Assessment Grid */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.assessment-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.assessment-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.assessment-category {
  font-weight: 800;
  font-size: 15.5px;
  color: var(--primary);
  margin-bottom: 3px;
}

.assessment-tests {
  font-size: 13.5px;
  color: var(--text-body);
}

/* Benefit Pills */
.benefit-pills-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-headline);
  margin-bottom: 12px;
}

.benefit-pills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-pill {
  background: rgba(2, 132, 199, 0.08);
  color: var(--primary);
  padding: 7px 15px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.benefit-pill-orange {
  background: rgba(234, 88, 12, 0.08);
  color: var(--energy-orange);
  border-color: rgba(234, 88, 12, 0.2);
}

.benefit-pill-teal {
  background: rgba(13, 148, 136, 0.08);
  color: var(--teal-accent);
  border-color: rgba(13, 148, 136, 0.2);
}

/* ==========================================================================
   MANAGEMENT, WHY CHOOSE US & PRIVACY CARDS
   ========================================================================== */

.grid-2, .card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

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

.management-card, .management-card-pro {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.management-card:hover, .management-card-pro:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.management-card img, .management-card-pro img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.management-card-body {
  padding: 22px;
}

.management-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-headline);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.management-card-title i {
  color: var(--energy-orange);
}

.why-choose-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: #ffffff;
  border-radius: var(--r-md);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.why-choose-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.why-choose-icon {
  background: var(--primary-light);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-choose-text {
  font-size: 15px;
  color: var(--text-body);
}

.why-choose-text strong {
  display: block;
  font-size: 16px;
  color: var(--text-headline);
  margin-bottom: 2px;
}

/* Privacy Security Cards */
.privacy-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.privacy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.privacy-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.privacy-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-headline);
}

.privacy-card p {
  font-size: 14.5px;
  color: var(--text-body);
}

/* ==========================================================================
   CALL TO ACTION BANNERS
   ========================================================================== */

.cta-banner, .cta-sport-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: var(--r-lg);
  padding: 55px 35px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 20px 40px var(--primary-glow);
  margin: 50px 0;
}

.cta-banner h2, .cta-sport-banner h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-banner p, .cta-sport-banner p {
  font-size: 17.5px;
  opacity: 0.92;
  max-width: 650px;
  margin: 0 auto 28px;
}

.btn-cta, .btn-cta-white {
  background: #ffffff;
  color: var(--primary);
  font-size: 15.5px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.btn-cta:hover, .btn-cta-white:hover {
  transform: translateY(-2px);
  background: #f8fafc;
}

/* ==========================================================================
   CLIENT STATS, MARQUEE LOGOS & SCIENTIFIC COLLABORATORS
   ========================================================================== */

.client-stats-banner, .stats-banner {
  background-color: var(--primary);
  border-radius: var(--r-lg);
  padding: 30px;
  color: #ffffff;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
  margin-bottom: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-item img {
  height: 48px;
  width: auto;
}

.stat-number, .stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.92;
}

/* Logo Marquee & Grids (STRICT CONSTRAINTS) */
.logos-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-marquee, .logos-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scrollMarquee 28s linear infinite;
}

.logos-marquee:hover {
  animation-play-state: paused;
}

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

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 60px;
}

.logo-item img {
  max-height: 48px !important;
  max-width: 130px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: grayscale(80%) opacity(0.85);
  transition: all 0.25s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* Collaborator Cards */
.collaborator-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.collaborator-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.collaborator-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.collaborator-title {
  font-size: 14px;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 12px;
}

.collaborator-org {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-headline);
}

.collaborator-org i {
  color: var(--teal-accent);
}

/* ==========================================================================
   TESTIMONIALS SLIDER & FIXED AVATARS
   ========================================================================== */

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  padding: 10px 0;
}

.testimonial-card, .testimonial-card-pro {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 360px;
  max-width: 380px;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 22px;
}

.testimonial-author, .testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* STRICT CIRCULAR AVATARS */
.testimonial-avatar, .testimonial-avatar-wrap {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.testimonial-avatar img, .testimonial-avatar-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.author-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-headline);
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT FORM & PRO FORM UI
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: start;
}

.contact-card-glass, .contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.form-row, .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 16px;
}

.form-group, .form-floating-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  width: 100%;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label, .form-group label, .form-floating-group label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-headline);
}

.form-control, .input-pro, .input-glow {
  width: 100%;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text-headline);
  transition: all 0.2s ease;
}

.form-control:focus, .input-pro:focus, .input-glow:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px var(--primary-glow);
}

textarea.form-control, textarea.input-pro, textarea.input-glow {
  min-height: 100px;
  resize: vertical;
}

.btn-submit, .btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 18px var(--primary-glow);
  transition: all 0.2s ease;
}

.btn-submit:hover, .btn-form-submit:hover {
  transform: translateY(-2px);
}

.otp-box-group {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 15px;
}

.btn-verify {
  background: var(--court-emerald);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: var(--r-sm);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* ==========================================================================
   FAQ ACCORDION COMPONENT
   ========================================================================== */

.faq-group-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-headline);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.accordion-item:hover {
  border-color: var(--primary);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-headline);
}

.accordion-content {
  display: none;
  padding-top: 14px;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
  white-space: pre-line;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-icon {
  transition: transform 0.25s ease;
}

/* ==========================================================================
   GUIDANCE & SUBSCRIPTION UTILITY CARDS
   ========================================================================== */

.guidance-media-box {
  background: #ffffff;
  border-radius: var(--r-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  margin: 20px 0;
}

.guidance-media-box img {
  border-radius: var(--r-sm);
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-columns, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-body);
  max-width: 320px;
  margin-bottom: 18px;
}

.footer-heading, .footer-nav h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-headline);
  margin-bottom: 16px;
}

.footer-links, .footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-nav a {
  color: var(--text-body);
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-links a:hover, .footer-nav a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-sports-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-sports-pills span {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.footer-bottom, .footer-bottom-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   SQUARE IMAGE SHOWCASE CARDS (COACHING & TRAINING TOOLS)
   ========================================================================== */

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

.coaching-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.coaching-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.35);
}

/* Dedicated Square Image Frame (No Crop) */
.coaching-card-img-wrap {
  width: 100%;
  height: 340px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.coaching-card-img-wrap img {
  width: 100%;
  height: 100%;
  max-width: 290px;
  max-height: 290px;
  object-fit: contain !important; /* Preserves full square image without cropping */
  border-radius: var(--r-md);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
  transition: transform 0.35s ease;
}

.coaching-card:hover .coaching-card-img-wrap img {
  transform: scale(1.04);
}

.coaching-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.coaching-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--text-headline);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coaching-card-title i {
  color: var(--energy-orange);
  font-size: 19px;
}

.coaching-card-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 950px) {
  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .coaching-card-img-wrap {
    height: 300px;
    padding: 18px;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-block, .hero-block.reverse, .feature-card, .feature-card.reverse {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .grid-2, .grid-3, .card-grid-2, .card-grid-3 {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-columns, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  .nav-links-desktop { 
    display: none !important; 
  }
  
  .menu-toggle-btn { 
    display: block !important; 
  }
  
  .mobile-drawer { 
    display: flex !important; 
  }

  .site-header { 
    width: 94%; 
    top: 8px; 
  }
  
  .page-title, .hero-headline { 
    font-size: 30px; 
  }
  
  .form-row, .form-grid-2 { 
    grid-template-columns: 1fr; 
  }
  
  .footer-columns, .footer-grid { 
    grid-template-columns: 1fr; 
  }
  
  .footer-bottom, .footer-bottom-bar { 
    flex-direction: column; 
    gap: 12px; 
    text-align: center; 
  }
}

