:root {
  --primary-orange: #ff6b35;
  --dark-orange: #e55a2b;
  --light-orange: #ffb199;
  --accent-orange: #ff8c69;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --light-bg: #fafafa;
  --white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-light: rgba(255, 107, 53, 0.1);
  --shadow-medium: rgba(255, 107, 53, 0.2);
  --shadow-heavy: rgba(255, 107, 53, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Football Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--dark-orange) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.football-loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.football {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  animation: bounce 1.5s infinite ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.football::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(
      45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    );
  border-radius: 50%;
}

.football-emoji {
  font-size: 100px;
  animation: bounce 1.5s infinite ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.football-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: shadowPulse 1.5s infinite ease-in-out;
}
.loader-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  animation: textFade 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.1;
  }
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Navigation with Orange Accents */
.navbar {
  background: var(--white);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px var(--shadow-light);
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 5px 40px var(--shadow-medium);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border: 3px solid var(--white);
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 20px var(--shadow-medium);
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-placeholder {
  transform: rotate(360deg);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 1.5rem;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transition: width 0.3s ease;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

/* Hero Section with Enhanced Orange Elements */
.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f2 100%);
  padding: 8rem 0 6rem;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50px;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.hero-content .highlight {
  color: var(--primary-orange);
  display: block;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 3px;
  animation: expandWidth 2s ease-out 0.5s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.8;
  font-weight: 400;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-heavy);
  color: white;
}

.cta-secondary {
  background: transparent;
  color: var(--primary-orange);
  padding: 18px 30px;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
@media (max-width: 425px) {
  .navbar-brand span {
    display: none;
  }
}

.hero-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Enhanced Goals Section */
.goals-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.section-title {
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px var(--shadow-medium);
  border-color: var(--primary-orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px var(--shadow-heavy);
}

.feature-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

/* Enhanced Programs Section */
.programs-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff8f5 100%);
  position: relative;
}

.program-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px var(--shadow-medium);
}

.program-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image {
  transform: scale(1.1);
}

.program-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.program-title {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.program-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.program-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.program-features li {
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.program-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.program-cta {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-light);
}

.program-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--shadow-medium);
  color: white;
}

/* Enhanced Video Section */
.video-section {
  padding: 8rem 0;
  background: var(--white);
}

.video-content h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.video-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.video-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
}

.video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.video-item.large {
  grid-row: span 2;
}

.video-item:hover {
  transform: scale(1.03);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-item:hover img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 15px 40px var(--shadow-heavy);
}

/* Footer with Orange Accents */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0f0f0f 100%);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.footer a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* Floating animation for cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glitch effect for title */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 107, 53, 0.1);
  z-index: 10000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  width: 0%;
  transition: width 0.3s ease;
}

/* Enhanced button animations */
.cta-primary {
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:active::after {
  width: 300px;
  height: 300px;
}

/* Additional modern animations */
.feature-icon {
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced program card effects */
.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.program-card:hover::before {
  left: 100%;
}

/* Modern loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Interactive hover states */
.navbar-brand:hover {
  filter: drop-shadow(0 0 20px var(--primary-orange));
}

/* Enhanced footer styling */
.footer {
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .scroll-progress {
    height: 3px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .feature-card,
  .program-card {
    margin-bottom: 2rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #ffffff;
    --text-gray: #b0b0b0;
    --light-bg: #1a1a1a;
    --white: #2a2a2a;
    --border-light: #404040;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-item.large {
    grid-row: span 1;
  }

  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .goals-section,
  .programs-section,
  .video-section {
    padding: 5rem 0;
  }
}

:root {
  --primary-orange: #ff6b35;
  --secondary-orange: #ff8c42;
  --light-orange: #ffab73;
  --dark-orange: #e55a2b;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --accent-green: #c8e6c9;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Modern scroll progress indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 107, 53, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange),
    var(--light-orange)
  );
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Modern Hero Section with Light Orange Theme */
.hero-banner {
  height: 80vh;
  background: linear-gradient(
      135deg,
      rgba(255, 171, 115, 0.95),
      rgba(255, 140, 66, 0.9)
    ),
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 50%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect fill="%23ffab73" width="1200" height="600"/><rect fill="url(%23dots)" width="1200" height="600"/><circle cx="200" cy="150" r="60" fill="rgba(255,255,255,0.1)"/><circle cx="1000" cy="400" r="80" fill="rgba(255,255,255,0.08)"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  animation: slideInDown 1s ease-out;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .slogan {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  opacity: 0.95;
  animation: slideInUp 1s ease-out 0.3s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 300;
}

.breadcrumb-nav {
  position: absolute;
  top: 30px;
  left: 30px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  background: var(--glass-bg);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}

.breadcrumb-nav a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--light-orange);
}

/* Floating particles animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 6px;
  height: 6px;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 20%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  width: 4px;
  height: 4px;
  left: 30%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  width: 10px;
  height: 10px;
  left: 40%;
  animation-delay: 3s;
}
.particle:nth-child(5) {
  width: 6px;
  height: 6px;
  left: 60%;
  animation-delay: 1.5s;
}
.particle:nth-child(6) {
  width: 8px;
  height: 8px;
  left: 80%;
  animation-delay: 2.5s;
}
.particle:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 90%;
  animation-delay: 0.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-80px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Glassmorphism Sections */
.content-section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  letter-spacing: -1px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 2px;
}

/* Mission Vision with Modern Cards */
.mission-vision {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  position: relative;
}

.mission-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 171, 115, 0.1), transparent);
}

.mission-vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.mv-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 171, 115, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.mv-card:hover::before {
  left: 100%;
}

.mv-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}

.mv-card h3 {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

/* Story Section with Modern Layout */
.story-section {
  background: white;
  position: relative;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.story-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(
    135deg,
    var(--light-orange),
    var(--secondary-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: white;
  position: relative;
  transition: transform 0.4s ease;
}

.story-image:hover .story-placeholder {
  transform: scale(1.05);
}

.story-placeholder::after {
  content: "Founder Photo Coming Soon";
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.story-text h3 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Modern Values Grid */
.values-section {
  background: linear-gradient(135deg, #fafafa, #f0f0f0);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.value-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Modern Coach Cards */
.coaches-section {
  background: white;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.coach-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.coach-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 171, 115, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.coach-card:hover::before {
  opacity: 1;
}

.coach-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 70px rgba(255, 107, 53, 0.2);
}

.coach-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: white;
  border: 4px solid white;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.coach-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.coach-title {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.coach-bio {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* Training Programs Modern Style */
.training-section {
  background: linear-gradient(
    135deg,
    rgba(255, 171, 115, 0.1),
    rgba(255, 140, 66, 0.05)
  );
}

.training-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.age-groups {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.age-badge {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.age-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.age-badge:hover::before {
  left: 100%;
}

.age-badge:hover {
  transform: translateY(-5px) scale(1.05);
}

.achievements {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  margin-top: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.achievements h4 {
  color: var(--primary-orange);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.achievements ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.achievements li {
  padding: 12px 0;
  position: relative;
  padding-left: 35px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.achievements li::before {
  content: "⚽";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-size: 1.2rem;
}

.achievements li:hover {
  color: var(--primary-orange);
}

/* Player Testimonials */

.author-avatar {
  width: 70px; /* increased from 50px */
  height: 70px; /* increased from 50px */
  border-radius: 50%;
  overflow: hidden; /* ensures image stays inside circle */
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps circle filled */
  object-position: top; /* adjust face position (try: center, top, 30% 20%) */
  /* alternative if you prefer full image without cropping: */
  /* object-fit: contain; background: #fff; */
}

.testimonials-section {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 171, 115, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(255, 107, 53, 0.15);
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--light-orange);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.author-info h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.author-info span {
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Founder Quote Section */
.founder-quote-section {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="200" cy="100" r="50" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="150" r="60" fill="rgba(255,255,255,0.08)"/></svg>');
}

/* Sponsors Section */
.sponsors-section {
  background: white;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.sponsor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sponsor-card:hover::before {
  transform: scaleX(1);
}

.sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
}

.sponsor-logo {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.2));
}

.sponsor-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.sponsor-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Partnership Badges */
.partnership-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.badge-item {
  background: linear-gradient(
    135deg,
    rgba(255, 171, 115, 0.1),
    rgba(255, 140, 66, 0.05)
  );
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  border: 2px solid rgba(255, 171, 115, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.badge-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 171, 115, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.badge-item:hover::before {
  left: 100%;
}

.badge-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.badge-item i {
  font-size: 1.2rem;
  color: var(--primary-orange);
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  margin-bottom: 3rem;
  line-height: 1.6;
  position: relative;
  font-weight: 300;
}

.quote::before,
.quote::after {
  content: '"';
  font-size: 4rem;
  position: absolute;
  opacity: 0.5;
  font-family: serif;
}

.quote::before {
  top: -20px;
  left: -30px;
}

.quote::after {
  bottom: -40px;
  right: -30px;
}

.founder-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Modern CTA */
.cta-section {
  background: white;
  text-align: center;
}

.cta-button {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover {
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .slogan {
    font-size: 1.2rem;
  }

  .mission-vision-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .quote {
    font-size: 1.4rem;
  }

  .age-groups {
    justify-content: center;
    gap: 1rem;
  }

  .age-badge {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .breadcrumb-nav {
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mv-card,
  .coach-card,
  .value-card {
    padding: 2rem 1.5rem;
  }

  .mission-vision-cards {
    grid-template-columns: 1fr;
  }

  .founder-info {
    flex-direction: column;
    gap: 1rem;
  }
}
