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

/* ==========================================
   CSS VARIABLES & GLOBAL RESET
   ========================================== */
:root {
  --bg-primary: #060203;
  --bg-secondary: #0f0507;
  --bg-tertiary: #19090b;
  --brand-primary: #8a0d14;
  --brand-hover: #b3121b;
  --brand-neon: #ff2633;
  --brand-glow: rgba(138, 13, 20, 0.45);
  --brand-glow-bright: rgba(255, 38, 51, 0.3);
  --accent-gold: #d4af37;
  --accent-gold-dim: rgba(212, 175, 55, 0.15);
  --text-light: #ffffff;
  --text-muted: #c5c5c5;
  --text-dark: #888888;
  --border-light: rgba(255, 255, 255, 0.07);
  --border-brand: rgba(138, 13, 20, 0.35);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-brand: 0 8px 32px rgba(138, 13, 20, 0.35);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6, .athletic-font {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-neon);
  background: rgba(255, 38, 51, 0.1);
  border: 1px solid rgba(255, 38, 51, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.text-gradient-red {
  background: linear-gradient(135deg, var(--text-light) 20%, var(--brand-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

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

.text-center {
  text-align: center;
}

/* ==========================================
   SCROLL ANIMATION CLASSES
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* ==========================================
   HEADER & GLASS NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(6, 2, 3, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

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

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

header .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

header .nav-links > li {
  position: relative;
}

header .nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

header .nav-links a:hover {
  color: var(--text-light);
}

header .nav-links > li > a.active-link,
header .nav-links > li > a:hover {
  color: var(--brand-neon);
}

/* Dropdown */
header .nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(10, 3, 5, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

header .nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

header .nav-links .dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

header .nav-links .dropdown a:hover {
  background: rgba(138, 13, 20, 0.18);
  color: var(--brand-neon);
  padding-left: 28px;
}

/* Hamburger menu */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  margin: 5px auto;
  transition: var(--transition-smooth);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #c41020 100%);
  color: var(--text-light);
  box-shadow: 0 4px 18px var(--brand-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px var(--brand-glow-bright);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  background-color: rgba(138, 13, 20, 0.12);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #9e7a10 0%, var(--accent-gold) 50%, #c9a22e 100%);
  color: #000000;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
}

/* ==========================================
   GLASS CARDS & BLOCKS
   ========================================== */
.glass-card {
  background: rgba(15, 5, 7, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 35px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(138, 13, 20, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(138, 13, 20, 0.14);
}

/* Animated neon top-border card */
.neon-border-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 35px;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.neon-border-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-neon), transparent);
  transition: left 0.5s ease;
}

.neon-border-card:hover::before {
  left: 100%;
}

.neon-border-card:hover {
  border-color: var(--border-brand);
  box-shadow: 0 12px 35px rgba(255, 38, 51, 0.1);
  transform: translateY(-4px);
}

/* ==========================================
   HERO / BANNER
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 2, 3, 0.3) 0%,
    rgba(6, 2, 3, 0.6) 50%,
    rgba(6, 2, 3, 0.97) 100%
  );
  z-index: 1;
}

/* Red ambient glow orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138,13,20,0.28) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from { opacity: 0.5; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-neon);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero p {
  max-width: 580px;
  margin: 0 auto 44px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* hero stats strip */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--border-light);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--brand-neon);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  display: block;
}

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

/* ==========================================
   STATS COUNTER SECTION
   ========================================== */
.stats-strip {
  background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--brand-neon);
  display: block;
}

.stat-suffix {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-top: 8px;
  display: block;
}

/* ==========================================
   FORMS & INPUTS
   ========================================== */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 20px var(--brand-glow);
}

select.form-control option {
  background-color: var(--bg-tertiary);
  color: var(--text-light);
}

/* ==========================================
   ACCORDION (FAQs)
   ========================================== */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 22px 0;
  transition: var(--transition-smooth);
}

.accordion-header:hover h3 {
  color: var(--brand-neon);
}

.accordion-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  transition: var(--transition-smooth);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-left: 20px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  padding-bottom: 22px;
  color: var(--text-muted);
  line-height: 1.8;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--brand-neon);
}

.accordion-item.active .accordion-content {
  max-height: 400px;
}

.accordion-item.active .accordion-header h3 {
  color: var(--text-light);
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  padding: 160px 0 90px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(138,13,20,0.22) 0%, transparent 65%);
  z-index: 0;
}

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

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.1fr;
  gap: 45px;
  margin-bottom: 60px;
}

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

.footer-col .logo img {
  height: 48px;
  width: auto;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.footer-col h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: var(--text-light);
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--brand-neon);
  padding-left: 6px;
}

.footer-col.contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.footer-col.contact-col li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--brand-neon);
}

.footer-col.app-col a img {
  max-width: 155px;
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.footer-col.app-col a:hover img {
  border-color: var(--brand-primary);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.social-icon:hover {
  border-color: var(--brand-primary);
  background: rgba(138,13,20,0.15);
  color: var(--brand-neon);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-dark);
  font-size: 0.83rem;
}

/* Mobile Sticky Overlay menu */
.mobile-sticky-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 3, 5, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-light);
  z-index: 999;
  justify-content: space-around;
  padding: 10px 0;
}

.mobile-sticky-menu a {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  padding: 6px 12px;
}

.mobile-sticky-menu a.active,
.mobile-sticky-menu a:hover {
  color: var(--brand-neon);
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 992px) {
  header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(6, 2, 3, 0.99);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  header .nav-links.active {
    right: 0;
  }

  .hamburger-btn {
    display: block;
  }

  header .nav-links .dropdown {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    opacity: 1;
    visibility: visible;
    text-align: center;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  header .nav-links li:hover .dropdown {
    display: block;
  }

  .hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mobile-sticky-menu {
    display: flex;
  }
  
  body {
    padding-bottom: 65px;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
  h2 { font-size: clamp(2rem, 8vw, 3rem); }
}
