/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  font-family: 'Inter', sans-serif; 
  background-color: #050505; 
  color: #e8e8e8; 
  overflow-x: hidden; 
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 14px;
  background: #0b0b0b;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: #39ff14;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  margin: 0;
  color: #cfcfcf;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }


img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --neon: #39FF14;
  --neon-light: #6eff4f;
  --neon-dark: #2bc20f;
  --dark: #050505;
  --dark2: #0a0a0a;
  --dark3: #121212;
  --dark4: #1a1a1a;
  --light: #f5f5f5;
  --muted: #888;
  --border: rgba(255,255,255,0.06);
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== TYPOGRAPHY ===== */
.bebas, h1, h2, .section-title, .hero-title, .stat-num, .step-num-hz, .badge-line2, .badge-line3, .hl-num, .t-stars { 
  font-family: 'Bebas Neue', sans-serif; 
  letter-spacing: 0.04em; 
}
.text-neon { 
  color: var(--neon); 
  text-shadow: 0 0 20px rgba(57,255,20,0.3);
}
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent; transition: all var(--transition);
  position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.1); transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition); z-index: -1;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-neon { 
  background: var(--neon); color: #000; border-color: var(--neon); 
  box-shadow: 0 4px 15px rgba(57,255,20,0.15);
}
.btn-neon:hover { 
  background: var(--neon-light); border-color: var(--neon-light); 
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(57,255,20,0.4); 
}
.btn-outline { 
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); 
  backdrop-filter: blur(5px);
}
.btn-outline:hover { 
  border-color: #fff; color: #fff; transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.btn-neon-hover:hover { 
  border-color: var(--neon); background: rgba(57,255,20,0.05); color: var(--neon); 
}
.btn-xl { padding: 16px 40px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; }
.eyebrow-wrapper { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; justify-content: center; }
.eyebrow-wrapper.left-align { justify-content: flex-start; margin-bottom: 20px; }
.eyebrow-line { height: 1px; width: 40px; background: var(--neon); display: inline-block; opacity: 0.7; }
.section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--neon); margin: 0; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; color: #fff; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.section-sub { color: #aaa; font-size: 1rem; max-width: 700px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 80px;
  background: rgba(5,5,5,0.85); backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.navbar.scrolled { 
  background: rgba(5,5,5,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.8); 
  border-bottom-color: rgba(57,255,20,0.15); height: 70px; 
}
.nav-inner { max-width: 1240px; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; filter: invert(1) brightness(1.5); mix-blend-mode: screen; opacity: 1; }
.nav-brand-text { display: flex; align-items: center; gap: 4px; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.08em; text-shadow: 0 2px 5px rgba(0,0,0,0.5); line-height: 1; margin-top: 4px; }
.logo-gothic { color: #fff; }
.logo-sports { color: var(--neon); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 4px; }
.nav-links a { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #999; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--neon); transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-cta { padding: 10px 24px; font-size: 0.8rem; letter-spacing: 0.05em; border-width: 1px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--transition); }

/* ===== PAGE HEADER ===== */
.page-header { 
  padding: 140px 0 80px; background: var(--dark); 
  border-bottom: 1px solid rgba(57,255,20,0.05); position: relative; overflow: hidden; 
}
.page-header::before { 
  content: ''; position: absolute; inset: 0; 
  background: radial-gradient(circle at center 20%, rgba(57,255,20,0.08) 0%, transparent 70%); 
  pointer-events: none; 
}
.page-header .section-title { margin-bottom: 16px; font-size: clamp(2.8rem, 7vw, 4.5rem); }
.page-header .section-sub { font-size: 1.05rem; }

/* ===== MARQUEE ===== */
.marquee-bar { background: var(--neon); padding: 8px 0; overflow: hidden; margin-top: 80px; border-bottom: 1px solid #000; box-shadow: 0 4px 10px rgba(57,255,20,0.1); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 40s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #000; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== HERO ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: brightness(0.6) contrast(1.1) saturate(0.8); }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, transparent 0%, rgba(5,5,5,0.8) 100%),
              linear-gradient(to bottom, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 40%, rgba(5,5,5,1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 24px; padding-top: 80px; }
.hero-eyebrow-wrapper { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.hero-eyebrow-line { height: 2px; width: 48px; background: var(--neon); box-shadow: 0 0 10px rgba(57,255,20,0.5); }
.hero-eyebrow { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--neon); margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.hero-title { font-size: clamp(3.2rem, 9vw, 7.5rem); line-height: 0.9; color: #fff; margin-bottom: 24px; text-shadow: 0 8px 25px rgba(0,0,0,0.8); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); color: #ccc; max-width: 600px; line-height: 1.7; margin-bottom: 48px; text-shadow: 0 4px 10px rgba(0,0,0,0.8); font-weight: 300; }
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; gap: 0; background: rgba(10,10,10,0.6); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.05); padding: 24px 40px; border-radius: var(--radius); width: max-content; box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.stat-item { text-align: center; padding: 0 32px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-num { display: block; font-size: 3rem; color: var(--neon); line-height: 1; text-shadow: 0 4px 15px rgba(57,255,20,0.2); }
.stat-label { display: block; font-size: 0.7rem; color: #888; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 10px; font-weight: 700; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.hero-scroll-hint { position: absolute; bottom: 32px; right: 32px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-scroll-hint span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #666; writing-mode: vertical-rl; }
.scroll-line { width: 2px; height: 60px; background: linear-gradient(to bottom, var(--neon), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.1; transform: scaleY(0.7); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }

/* ===== SPORTS CATEGORIES ===== */
.sports-section { background: var(--dark); position: relative; border-bottom: 1px solid var(--border); }
.sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sport-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/5; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); border: 1px solid var(--border); background: var(--dark3); }
.sport-card:hover { transform: translateY(-8px); border-color: rgba(57,255,20,0.4); box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 20px rgba(57,255,20,0.15); }
.sport-img-wrap { position: absolute; inset: 0; }
.sport-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); filter: brightness(0.7) grayscale(20%); }
.sport-card:hover .sport-img-wrap img { transform: scale(1.1); filter: brightness(1) grayscale(0%); }
.sport-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.2) 60%, transparent 100%); transition: background var(--transition); }
.sport-card:hover .sport-overlay { background: linear-gradient(to top, rgba(5,5,5,0.98) 0%, rgba(57,255,20,0.15) 50%, transparent 100%); }
.sport-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 24px; z-index: 2; transition: transform var(--transition); transform: translateY(15px); }
.sport-card:hover .sport-info { transform: translateY(0); }
.sport-info h3 { font-size: 2.2rem; color: #fff; letter-spacing: 0.05em; margin-bottom: 8px; text-shadow: 0 4px 15px rgba(0,0,0,0.9); }
.sport-link { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--neon); display: flex; align-items: center; gap: 8px; opacity: 0; transition: opacity var(--transition); }
.sport-card:hover .sport-link { opacity: 1; }
.sport-link .arrow { transition: transform var(--transition); }
.sport-card:hover .sport-link .arrow { transform: translateX(6px); }
.sport-card--cta { background: var(--dark2); border: 1px dashed rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.sport-card--cta:hover { border-style: solid; border-color: var(--neon); background: radial-gradient(circle at center, rgba(57,255,20,0.05) 0%, var(--dark2) 100%); transform: translateY(-4px); box-shadow: none; }
.sport-more-inner { text-align: center; padding: 32px 24px; }
.sport-more-icon { display: block; font-size: 3.5rem; color: var(--neon); margin-bottom: 16px; line-height: 1; text-shadow: 0 0 20px rgba(57,255,20,0.2); }
.sport-more-inner h3 { font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.sport-more-inner p { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.6; }

/* ===== WHY US ===== */
.why-section { background: var(--dark); position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: all var(--transition); position: relative; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.why-card-top-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--neon); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.why-card:hover { transform: translateY(-6px); border-color: rgba(57,255,20,0.2); box-shadow: 0 15px 30px rgba(0,0,0,0.6); background: var(--dark3); }
.why-card:hover .why-card-top-accent { transform: scaleX(1); }
.why-icon { font-size: 2.5rem; margin-bottom: 24px; text-shadow: 0 0 25px rgba(57,255,20,0.2); filter: grayscale(100%); transition: filter var(--transition); }
.why-card:hover .why-icon { filter: grayscale(0%); }
.why-card h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: 0.03em; }
.why-card p { font-size: 0.95rem; color: #999; line-height: 1.7; font-weight: 300; }

/* ===== ABOUT ===== */
.about-section { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(57,255,20,0.02) 0%, transparent 70%); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.about-text .section-title { text-align: left; margin-bottom: 32px; }
.about-body { color: #aaa; font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.about-highlights { display: flex; gap: 40px; margin: 40px 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.about-hl-item { display: flex; flex-direction: column; gap: 8px; }
.hl-num { font-size: 3.2rem; color: var(--neon); line-height: 1; text-shadow: 0 0 15px rgba(57,255,20,0.2); }
.hl-desc { font-size: 0.8rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.15em; }
.about-visual { display: flex; flex-direction: column; gap: 32px; align-items: center; position: relative; }
.about-badge-container { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-badge-ring { position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1px dashed rgba(57,255,20,0.5); animation: spin 25s linear infinite; opacity: 0.8; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.about-badge { background: linear-gradient(135deg, var(--neon) 0%, var(--neon-dark) 100%); border-radius: 50%; width: 170px; height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; flex-shrink: 0; box-shadow: 0 10px 30px rgba(57,255,20,0.2); position: relative; z-index: 2; }
.badge-line1 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.25em; color: rgba(0,0,0,0.6); margin-bottom: 4px; }
.badge-line2 { font-size: 2rem; color: #000; line-height: 0.9; }
.badge-line3 { font-size: 2rem; color: #000; line-height: 0.9; }
.badge-line4 { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.3em; color: rgba(0,0,0,0.8); margin-top: 8px; }
.about-gfx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 360px; }
.gfx-block { border-radius: var(--radius); padding: 24px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform var(--transition); }
.gfx-block:hover { transform: translateY(-4px); }
.gfx-dark { background: var(--dark3); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.gfx-neon { background: rgba(57,255,20,0.05); border: 1px solid rgba(57,255,20,0.2); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.gfx-icon { font-size: 2rem; }
.gfx-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: #999; }
.gfx-neon .gfx-label { color: var(--neon-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark2); border: 1px solid var(--border); border-left: 4px solid var(--neon); border-radius: 4px var(--radius) var(--radius) 4px; padding: 40px 32px; transition: transform var(--transition), box-shadow var(--transition); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); border-color: rgba(57,255,20,0.2); }
.t-stars { color: var(--neon); font-size: 1.1rem; letter-spacing: 5px; margin-bottom: 24px; text-shadow: 0 0 8px rgba(57,255,20,0.3); }
.t-quote { color: #ddd; font-size: 1rem; line-height: 1.7; margin-bottom: 32px; font-style: italic; font-weight: 300; }
.t-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--dark4); border: 1px solid rgba(57,255,20,0.3); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; color: var(--neon); flex-shrink: 0; box-shadow: inset 0 0 8px rgba(0,0,0,0.5); }
.t-info { display: flex; flex-direction: column; gap: 4px; }
.t-name { font-weight: 800; font-size: 0.95rem; color: #fff; letter-spacing: 0.02em; }
.t-role { font-size: 0.8rem; color: #777; font-weight: 500; }

/* ===== HOW IT WORKS (Horizontal) ===== */
.how-section { background: var(--dark2); border-top: 1px solid var(--border); }
.how-steps-horizontal { display: flex; align-items: flex-start; justify-content: center; gap: 32px; max-width: 1000px; margin: 0 auto; }
.how-step-hz { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num-hz { font-size: 4rem; color: rgba(57,255,20,0.15); line-height: 1; margin-bottom: 24px; position: relative; font-weight: 700; }
.step-num-hz::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 32px; height: 3px; background: var(--neon); border-radius: 2px; }
.step-body-hz h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.step-body-hz p { font-size: 0.95rem; color: #999; line-height: 1.7; font-weight: 300; }
.step-arrow-hz { font-size: 2rem; color: rgba(255,255,255,0.1); margin-top: 32px; font-weight: 300; }

/* ===== FAQ ===== */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.active { border-color: rgba(57,255,20,0.3); }
.faq-question { width: 100%; text-align: left; padding: 24px 32px; background: none; border: none; color: #fff; font-size: 1.05rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background var(--transition); }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-icon { font-size: 1.3rem; color: var(--neon); transition: transform 0.4s ease; font-weight: 300; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 32px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: rgba(0,0,0,0.3); }
.faq-item.active .faq-answer { padding: 0 32px 24px; max-height: 500px; }
.faq-answer p { color: #aaa; font-size: 0.95rem; line-height: 1.7; margin-top: 8px; font-weight: 300; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 100px 24px; overflow: hidden; border-top: 1px solid rgba(57,255,20,0.15); border-bottom: 1px solid rgba(57,255,20,0.15); }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0a1c0d 0%, #030804 50%, #0a1c0d 100%); }
.cta-bg::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(57,255,20,0.02) 0, rgba(57,255,20,0.02) 2px, transparent 2px, transparent 12px); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.cta-text p { color: #ccc; font-size: 1.05rem; max-width: 500px; line-height: 1.6; font-weight: 300; }
.cta-btn-glow { box-shadow: 0 0 25px rgba(57,255,20,0.3); border: 2px solid #fff; }
.cta-btn-glow:hover { box-shadow: 0 0 50px rgba(57,255,20,0.5); border-color: #fff; }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark); position: relative; }
.contact-section::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 100% 50%, rgba(57,255,20,0.03) 0%, transparent 80%); pointer-events: none; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact-info .section-title { text-align: left; margin-bottom: 24px; }
.contact-desc { color: #aaa; font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.trust-badge { display: flex; align-items: center; gap: 16px; background: rgba(57,255,20,0.05); border: 1px solid rgba(57,255,20,0.2); border-radius: var(--radius); padding: 20px; margin-bottom: 48px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.trust-icon { font-size: 2rem; filter: drop-shadow(0 0 8px rgba(57,255,20,0.3)); }
.trust-text { display: flex; flex-direction: column; gap: 4px; }
.trust-text strong { font-size: 0.95rem; color: var(--neon-light); font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.trust-text span { font-size: 0.85rem; color: #aaa; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 20px; }
.contact-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-label { display: block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon); margin-bottom: 6px; }
.contact-detail-item a, .contact-detail-item span { font-size: 1rem; color: #ddd; font-weight: 500; }
.contact-detail-item a:hover { color: var(--neon); text-decoration: underline; }

/* ===== FORM ===== */
.form-wrapper { background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; padding: 48px; box-shadow: 0 15px 50px rgba(0,0,0,0.6); position: relative; }
.form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--neon); border-radius: 12px 12px 0 0; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #fff;
  transition: all var(--transition); outline: none; width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; font-weight: 300; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--neon); background: var(--dark4); box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; background: rgba(57,255,20,0.1); border: 1px solid rgba(57,255,20,0.3); border-radius: var(--radius); padding: 16px 20px; text-align: center; color: var(--neon-light); font-size: 0.95rem; font-weight: 600; margin-top: 16px; }
/* ===== FOOTER ===== */
.footer { background: #020202; border-top: 1px solid var(--border); padding-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; display: block; margin-bottom: 16px; letter-spacing: 0.05em; }
.footer-tagline { color: #777; font-size: 0.9rem; line-height: 1.6; margin-bottom: 32px; font-weight: 300; }
.footer-socials { display: flex; gap: 12px; }
.social-link { width: 44px; height: 44px; border-radius: var(--radius); background: var(--dark3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #777; transition: all var(--transition); }
.social-link:hover { border-color: var(--neon); color: var(--neon); background: rgba(57,255,20,0.05); transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.3); }
.footer-links h4 { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 24px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; font-weight: 500; color: #888; transition: all var(--transition); }
.footer-links a:hover { color: var(--neon); padding-left: 4px; }
.footer-contact h4 { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 24px; }
.footer-contact p, .footer-contact a { font-size: 0.9rem; font-weight: 500; color: #888; display: block; margin-bottom: 12px; transition: color var(--transition); }
.footer-contact a:hover { color: var(--neon); }
.footer-quote-btn { margin-top: 24px; padding: 12px 28px; font-size: 0.85rem; }
.footer-bottom { padding: 24px; background: #000; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom span { font-size: 0.8rem; color: #555; }

/* ===== FLOATING CTA (Mobile Only) ===== */
.floating-cta { display: none; position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 999; background: var(--neon); color: #000; font-weight: 800; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; padding: 12px 32px; border-radius: 50px; box-shadow: 0 8px 20px rgba(0,0,0,0.8), 0 0 15px rgba(57,255,20,0.3); border: 2px solid #fff; font-size: 0.85rem; transition: transform var(--transition); }
.floating-cta:active { transform: translateX(-50%) scale(0.95); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 64px; }
  .about-visual { flex-direction: row; justify-content: center; gap: 48px; }
  .about-badge-container { margin-bottom: 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 64px; }
}
@media (max-width: 768px) {
  html { font-size: 14px; }
  .section { padding: 80px 0; }
  .nav-inner { gap: 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(5,5,5,0.98); padding: 32px; gap: 24px; border-bottom: 1px solid rgba(57,255,20,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.8); margin-right: 0; margin-top: 0; }
  .nav-links.open { display: flex; }
  .nav-right { margin-left: auto; gap: 12px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .sports-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .how-steps-horizontal { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow-hz { transform: rotate(90deg); margin: -16px 0; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .form-wrapper { padding: 32px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; width: 100%; padding: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 0; text-align: left; }
  .about-highlights { gap: 32px; flex-wrap: wrap; }
  .about-visual { flex-direction: column; }
  .cta-inner { flex-direction: column; text-align: center; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .floating-cta { display: block; }
}
@media (max-width: 480px) {
  .sports-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .page-header { padding: 120px 0 50px; }
  /* Make text visible on mobile by reducing size slightly */
  .nav-brand-text { font-size: 1.2rem; }
}

/* ===== CONVERSION ADDITIONS: INSTAGRAM, CHAT, FORM HELPERS ===== */
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.instagram-section {
  background: radial-gradient(circle at top, rgba(57,255,20,0.10), transparent 35%), #050505;
}

.instagram-feed-box {
  margin-top: 32px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(57,255,20,0.25);
  background: linear-gradient(145deg, #080808, #111111);
  box-shadow: 0 0 35px rgba(57,255,20,0.08);
  min-height: 340px;
}

.instagram-placeholder {
  min-height: 300px;
  border: 1px dashed rgba(57,255,20,0.35);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px;
}

.instagram-placeholder h3 {
  color: var(--neon);
  font-size: 30px;
  margin: 0;
}

.instagram-placeholder p {
  color: #cfcfcf;
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 999;
  font-family: 'Inter', sans-serif;
}

.chat-toggle {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: var(--neon);
  color: #050505;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(57,255,20,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(57,255,20,0.6);
}

.chat-panel {
  display: none;
  width: min(340px, calc(100vw - 32px));
  margin-bottom: 12px;
  border: 1px solid rgba(57,255,20,0.25);
  border-radius: 22px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.chat-widget.active .chat-panel {
  display: block;
}

.chat-head {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(57,255,20,0.18), rgba(57,255,20,0.04));
  color: #ffffff;
}

.chat-head strong {
  display: block;
  color: var(--neon);
  margin-bottom: 4px;
}

.chat-head span {
  color: #bdbdbd;
  font-size: 0.85rem;
}

.chat-body {
  padding: 16px;
  color: #dcdcdc;
}

.chat-body p {
  margin: 0 0 12px;
  line-height: 1.5;
}

.chat-quick-actions {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.chat-quick-actions button {
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.chat-quick-actions button:hover {
  border-color: rgba(57,255,20,0.45);
  color: var(--neon);
  background: rgba(57,255,20,0.05);
}

.chat-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.chat-links a {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.chat-wa {
  background: var(--neon);
  color: #050505;
}

.chat-email {
  border: 1px solid rgba(57,255,20,0.35);
  color: var(--neon);
}

@media (max-width: 768px) {
  .chat-widget {
    right: 12px;
    bottom: 78px;
  }

  .instagram-feed-box {
    padding: 14px;
  }
}
.footer-whatsapp-btn,
.footer-whatsapp-btn:visited,
.footer-whatsapp-btn:hover,
.footer-whatsapp-btn:active {
  color: #000 !important;
}

.footer-whatsapp-btn span {
  color: #000 !important;
}
/* ===== SMART CHATBOT WIDGET ===== */
/* ===== SMALL CIRCULAR CHATBUDDY BUTTON ===== */

/* ===== SMALL CIRCULAR CHATBUDDY BUTTON - BOTTOM RIGHT ===== */

.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 22px;
  left: auto;
  top: auto;
  z-index: 1200;
  font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--neon), var(--neon-light));
  color: #000 !important;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow:
    0 0 16px rgba(57, 255, 20, 0.5),
    0 8px 22px rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 0 26px rgba(57, 255, 20, 0.75),
    0 12px 30px rgba(0, 0, 0, 0.9);
}

.chatbot-box {
  position: absolute;
  right: 0;
  bottom: 66px;
  left: auto;
  top: auto;
  width: 370px;
  max-width: calc(100vw - 36px);
  background: #080808;
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: 18px;
  box-shadow:
    0 0 35px rgba(57, 255, 20, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: all 0.3s ease;
}

.chatbot-box.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.18), rgba(57, 255, 20, 0.03)),
    #0d0d0d;
  border-bottom: 1px solid rgba(57, 255, 20, 0.18);
}

.chatbot-header h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.chatbot-header p {
  color: #9f9f9f;
  font-size: 0.78rem;
  margin: 0;
}

.chatbot-close {
  background: transparent;
  border: none;
  color: var(--neon);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-body {
  padding: 18px;
  max-height: 330px;
  overflow-y: auto;
}

.bot-message,
.user-message {
  padding: 12px 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 92%;
}

.bot-message {
  background: #111;
  color: #d7d7d7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px 14px 14px 4px;
}

.user-message {
  margin-left: auto;
  background: rgba(57, 255, 20, 0.12);
  color: #fff;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 14px 14px 4px 14px;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-question {
  background: rgba(57, 255, 20, 0.07);
  border: 1px solid rgba(57, 255, 20, 0.22);
  color: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.73rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quick-question:hover {
  background: var(--neon);
  color: #000;
}

.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070707;
}

.chatbot-input-area input {
  flex: 1;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  outline: none;
  font-size: 0.86rem;
}

.chatbot-input-area input:focus {
  border-color: var(--neon);
}

.chatbot-input-area button {
  background: var(--neon);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 0 16px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.chatbot-contact-strip {
  padding: 12px 14px 15px;
  background: #050505;
}

.chatbot-contact-strip a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--neon), var(--neon-light));
  color: #000 !important;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .chatbot-widget {
    right: 14px;
    bottom: 16px;
  }

  .chatbot-toggle {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  .chatbot-box {
    right: 0;
    bottom: 58px;
    width: 330px;
    max-width: calc(100vw - 28px);
  }
}@media (max-width: 768px) {
  .hero-bg {
    object-fit: cover;
    object-position: center top;
  }
}/* ===== MOBILE HERO IMAGE FIX ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 86vh;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    padding-top: 115px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-subtitle {
    max-width: 95%;
    font-size: 0.95rem;
    margin-bottom: 34px;
  }

  .hero-ctas {
    margin-bottom: 36px;
  }

  .hero-stats {
    width: 100%;
    padding: 22px;
  }
}/* ===== FINAL HERO MOBILE IMAGE FIX ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 92vh !important;
  }

  .hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 10% center !important;
  }

  .hero-content {
    padding-top: 125px !important;
  }
}