@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  /* Colors */
  --bg-main: #FFFFFF;
  --bg-card: #0F172A; /* Deep Navy Blue */
  --bg-card-hover: #1E293B;
  --bg-nav: rgba(255, 255, 255, 0.98);
  
  --primary-gold: #FBBF24; /* Vibrant Yellow */
  --primary-gold-hover: #F59E0B;
  --primary-gold-dark: #D97706;
  --primary-gold-glow: rgba(251, 191, 36, 0.15);
  
  --text-main: #FFFFFF;
  --text-muted: #CBD5E1;
  --text-dark: #0F172A;
  
  --border-color: transparent;
  --border-color-hover: transparent;
  
  --success: #34D399;
  --error: #F87171;
  
  /* Typography */
  --font-serif: 'Montserrat', sans-serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: none;
  --shadow-md: 0 10px 30px rgba(69, 55, 44, 0.1);
  --shadow-gold: none;
  
  --radius-sm: 16px;
  --radius-md: 32px;
  --radius-lg: 40px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout constraints */
  --container-width: 1200px;
  --header-height: 90px;
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* --- TYPOGRAPHY PRESETS --- */
.text-gold {
  color: var(--primary-gold);
}

.text-gradient {
  color: var(--text-dark);
}

.text-center {
  text-align: center;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-dark); opacity: 0.8;
  max-width: 600px;
  margin: 0.5rem auto 2rem;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background-color: #F8FAFC;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 60px;
  height: 1px;
  background-color: var(--primary-gold);
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}

.bento-item {
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.bento-item:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-md), 0 0 40px rgba(212, 175, 55, 0.05);
  background: var(--bg-card-hover);
}

.bento-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-item-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-item-standard {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-icon-wrapper {
  background: rgba(212, 175, 55, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

/* --- HEADER / NAVIGATION --- */
#mobile-callback-btn {
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(197, 168, 128, 0.25);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-dark);
}

.logo > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-icon {
  width: 38px;
  height: 38px;
  fill: var(--primary-gold);
}

.logo-img {
  width: auto !important;
  height: 42px !important;
  flex-shrink: 0 !important;
  object-fit: contain !important;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  opacity: 0.7;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-gold);
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.75rem; /* Reduced font size */
  font-weight: 600;
}

.lang-switcher a {
  color: var(--text-dark);
  opacity: 0.7;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.lang-switcher a.active {
  color: var(--text-dark);
  opacity: 1;
  background-color: var(--primary-gold-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* --- GOOGLE TRANSLATE HACKS --- */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important; 
}
.skiptranslate {
  display: none !important;
}
.lang-switcher a.active {
  color: var(--text-dark);
  opacity: 1;
  background-color: var(--primary-gold-glow);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-dark);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-mega {
  padding: 16px 36px !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 10px 25px var(--primary-gold-glow);
  animation: pulse-mega 2s infinite;
}

@keyframes pulse-mega {
  0% { transform: scale(1); box-shadow: 0 10px 25px var(--primary-gold-glow); }
  50% { transform: scale(1.05); box-shadow: 0 15px 35px var(--primary-gold-glow); }
  100% { transform: scale(1); box-shadow: 0 10px 25px var(--primary-gold-glow); }
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-secondary:hover {
  background-color: var(--primary-gold-glow);
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  border: none;
  color: var(--primary-gold);
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--primary-gold-hover);
}

.btn-text svg {
  transition: transform var(--transition-fast);
}

.btn-text:hover svg {
  transform: translateX(4px);
}

/* --- CARDS & PANELS --- */
.card {
  background-color: var(--bg-card);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card:hover,
.card.reveal-up.active:hover {
  transform: translateY(-12px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 35px var(--primary-gold-glow);
  background-color: var(--bg-card-hover);
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(8deg);
}

.card-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.card-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary-gold);
  margin-bottom: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}



.hero-content {
  max-width: 650px;
}

.hero-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* --- TIMELINE (History) --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gold) 0%, var(--border-color) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 3px solid var(--primary-gold);
  z-index: 2;
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
  background-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-gold);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- TRAINING LEVEL ROADMAP --- */
.roadmap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.roadmap-step {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-normal);
}

.roadmap-step:hover {
  transform: translateX(10px);
  border-color: var(--border-color-hover);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  min-width: 60px;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.step-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* --- FAQ ACCORDION (Details/Summary) --- */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item[open] {
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-gold);
  transition: transform var(--transition-normal);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  border-top: 1px solid rgba(197, 168, 128, 0.05);
}

/* --- COACHES / TRAINERS FILTER & CARDS --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  opacity: 0.7;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text-dark);
  opacity: 1;
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.trainer-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.trainer-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px var(--primary-gold-glow);
}

.trainer-img-wrapper {
  aspect-ratio: 1;
  background-color: #1a1a1f;
  position: relative;
  overflow: hidden;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.trainer-card:hover .trainer-img {
  transform: scale(1.05);
}

.trainer-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* --- Special Trainer Cards --- */
.trainer-section-title {
  grid-column: 1 / -1;
  font-size: 2rem;
  color: var(--primary-gold);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: 700;
  padding-bottom: 0.5rem;
  width: 100%;
}

.director-card {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.director-card .trainer-img-wrapper {
  width: 45%;
  aspect-ratio: 1;
  height: 100%;
}

.director-card .trainer-info {
  width: 55%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-card .trainer-name {
  font-size: 2.2rem;
}

.director-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2rem;
  border-left: 4px solid var(--primary-gold);
  padding-left: 1.5rem;
}

@media (max-width: 768px) {
  .director-card {
    flex-direction: column;
  }
  .director-card .trainer-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    min-height: auto;
    height: auto;
  }
  .director-card .trainer-info {
    width: 100%;
    padding: 2rem;
  }
  .trainer-section-title {
    font-size: 1.5rem;
  }
}


.trainer-name {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.trainer-title {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.trainer-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* --- STATS GRID --- */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* --- FOOTER --- */
.footer {
  margin-top: auto;
  background-color: var(--bg-card);
  color: var(--text-main);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--text-main); opacity: 0.9;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text-main);
  padding-left: 4px;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- MODAL DIALOG --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

/* --- VIDEO WRAPPER --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- TABS SYSTEM --- */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  /* Mobile Nav Menu */
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-card);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 40px 30px;
    gap: 24px;
    transition: var(--transition-normal);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    color: var(--text-main);
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-gold);
  }
  
  .header-actions {
    margin-right: 15px;
  }
  
  #header-callback-btn {
    display: none;
  }
  
  #mobile-callback-btn {
    display: block !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-desc {
    max-width: 100%;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-item-large,
  .bento-item-wide,
  .bento-item-tall,
  .bento-item-standard {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .bento-item {
    padding: 25px;
  }
  .container {
    padding: 0 15px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item-large, .bento-item-wide, .bento-item-tall, .bento-item-standard {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --- PREMIUM ADDITIONS (Awwwards Style) --- */

.custom-cursor.hovering {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--primary-gold);
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Bento Typography */
.bento-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.bento-desc {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.bento-item-large .bento-title {
  font-size: 2.5rem;
}

/* --- SPONSOR CARD CUSTOM STYLES --- */
.sponsor-card {
  max-width: 800px !important;
  margin: 0 auto;
}

.sponsor-card .trainer-img-wrapper {
  width: 45%;
  aspect-ratio: auto !important;
  height: 100%;
}

.sponsor-card .trainer-info {
  width: 55%;
  padding: 2.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .sponsor-card .trainer-img-wrapper {
    width: 100%;
    aspect-ratio: 1 !important;
    height: auto;
  }
  .sponsor-card .trainer-info {
    width: 100%;
    padding: 2rem;
  }
}
