@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&family=Open+Sans:wght@400&family=Teko:wght@300;400;500;600;700&display=swap");

/* ── Global Spacing Tokens ─────────────────────────────────── */
:root {
  --space-section-v: 60px;
  /* vertical padding for every content section */
  --space-section-h: 5%;
  /* horizontal padding for every content section */
  --space-section-sm-v: 32px;
  /* vertical section padding on ≤768px */
  --space-card-v: 32px;
  /* card internal vertical padding */
  --space-card-h: 24px;
  /* card internal horizontal padding */
  --space-gap-lg: 32px;
  /* large grid / flex gap */
  --space-gap-sm: 16px;
  /* small inline gap */
  --space-heading-mb: 24px;
  /* margin-bottom on section headings */
}

/* ── Shared Sport Programs Section Layout ───────────────────── */

.athletics-programs-section,
.hockey-programs-section,
.kabaddi-programs-section,
.rugby-programs-section,
.tabletennis-programs-section,
.badminton-programs-section,
.programs-section {
  background-color: #1a1a1a;
  padding: var(--space-section-v) var(--space-section-h);
}

.programs-inner {
  max-width: 100%;
  margin: 0 auto;
}

.programs-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.prog-card {
  background-color: #242424;
  border: 1.5px solid #FF5722;
  border-radius: 12px;
  padding: var(--space-card-v) var(--space-card-h);
}

.prog-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.prog-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.prog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FF5722;
}

.prog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prog-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.prog-list--square li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  background-color: #FF5722;
  border-radius: 1px;
}

.prog-list--circle li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border: 1.5px solid #FF5722;
  border-radius: 50%;
  background: transparent;
}


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

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  position: relative;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--deep-slate-600);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  background-color: var(--deep-slate-800);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
}


.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375em;
  color: #000000;
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  padding: 4px 0;

  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  position: fixed;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 4px 0;

}

.nav-container {
  display: flex;
  align-items: center;
  /* justify-content: space-between; Removed to allow manual placement */
  padding: 0 60px;

  max-width: 1440px;
  gap: 40px;
  margin: 0 auto;
}

.logo {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0px 6px 27px rgba(0, 0, 0, 0.18)) drop-shadow(5px 0px 6.7px rgba(0, 0, 0, 0.18));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  /* Push to the right */
  margin-right: 10px;
  /* Space between links and buttons */
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.219em;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
}

.programs-dropdown {
  cursor: pointer;
}

.programs-dropdown svg {
  width: 10px;
  height: 5px;
  transition: transform 0.3s ease;
}

.programs-dropdown:hover svg {
  transform: rotate(180deg);
}


.dropdown-backdrop {
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  height: calc(100% - 78px);
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  pointer-events: none;
}


.dropdown-menu {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  pointer-events: none;
  padding: 40px 0;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 129px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dropdown-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ff5722;
}

.dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background-color: rgba(255, 87, 34, 0.1);
  color: #ff5722;
  transform: translateX(4px);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-buttons .btn-primary,
.nav-buttons .btn-outline {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  line-height: normal;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #ff5722;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(255, 87, 34, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0px 6px 12px rgba(255, 87, 34, 0.3),
    6px 0px 12px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: #ff794e;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.219em;
  border: 0.8px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: #ff5722;
}

.btn-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: transparent;
  color: #eaebec;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.219em;
  border: 0.8px solid #eaebec;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


.hero {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 245px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.219em;
  color: #FF5722;
  background: none;
  -webkit-text-fill-color: initial;
  margin-bottom: 24px;
  margin-top: 100px;
}

.hero-description {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  color: #eaebec;
  text-align: center;
  margin-bottom: 40px;
  max-width: 935px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-buttons .btn-primary {
  padding: 12px 32px;
  background-color: #FF5722;
  color: #ffffff;
  box-shadow: 0px 4px 10px rgba(255, 87, 34, 0.4);
}

.hero-buttons .btn-primary:hover {
  background-color: #FF8A65;
  transform: translateY(-2px);
  box-shadow: 0px 6px 14px rgba(255, 87, 34, 0.5);
}

.btn-yellow {
  background-color: #FFC107;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background-color: #FFB300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* ========================================
   STANDARDIZED SPORTS HERO SECTION
   Based on Football page as reference
   ======================================== */

.sports-hero {
  position: relative;
  min-height: 550px;
  height: auto;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: left;
}

.sports-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(26, 22, 22, 0.9) 0%, rgba(26, 22, 22, 0.7) 50%, rgba(26, 22, 22, 0.3) 100%);
}

.sports-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
}

/* STANDARDIZED FONT STYLES - Football Reference */
.sports-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #FF5722;
  margin-bottom: 50px;
  text-align: left;
  max-width: 700px;
}

.sports-hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  margin-bottom: 32px;
  margin-left: 0;
  padding-left: 0;
  padding-top: 0;
  opacity: 0.95;
  text-align: left;
  max-width: 500px;
}

.sports-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Responsive Font Sizes - Football Standard */
@media (max-width: 1024px) {
  .sports-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .sports-hero {
    min-height: 400px;
    height: auto;
  }

  .sports-hero-title {
    font-size: 32px;
  }

  .sports-hero-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sports-hero-buttons {
    flex-direction: row;
    width: 100%;
    gap: 8px;
  }

  .sports-hero-buttons .btn-large {
    width: auto;
    padding: 10px 16px;
    font-size: 13px;
    flex-shrink: 1;
    white-space: nowrap;
    text-align: center;
  }

  .sports-hero-title {
    font-size: 28px;
    padding-top: 60px;
  }
}


.programs-section {
  padding: 40px 5%;
  background-color: #f8f9fa;
  width: 100%;
  margin: 0;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.25em;
  color: #ff5722;

  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 0;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding: 0 1rem;
}

.program-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
}

.program-card:hover .program-title {
  color: #FF5722;
  transition: color 0.3s ease;
}

.program-image {
  width: 100%;
  height: 14rem;

  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.08);

}

.program-content {
  padding: 0.8rem 1rem 1.2rem;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.program-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.3em;
  color: #ff5722;
  text-align: center;

  margin-bottom: 0.5rem;

}

.program-description {
  font-family: "Montserrat", sans-serif;

  font-size: 0.80rem;
  line-height: 1.4em;

  color: #000000;

  text-align: center;
}


.stats-section {
  background: linear-gradient(91.59deg, #171E22 0%, #263238 50%, #171E22 100%);
  padding: 3.125rem 0;
  width: 100%;
  margin: 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 5%;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

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

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.219em;
  color: #FF5722;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: border-box;
  margin-bottom: 0.75rem;
}

.stat-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #ffffff;

  text-align: center;
  max-width: 13.3125rem;
  margin: 0 auto;
}


.why-section {
  padding: 80px 0 0;

  background-color: #ffffff;
  width: 100%;
  margin: 0;
}

.why-section .section-title {
  text-align: center;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 0 212px;

  margin-bottom: 100px;
  max-width: 1560px;

  margin-left: auto;
  margin-right: auto;
}

.comparison-card-without-support {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  border-right: 6px solid #ff5722;

  background: linear-gradient(180deg, #fff5f2 0%, #ffffff 100%);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card-without-support:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
}

.comparison-card-with-support {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #4caf50;

  background: linear-gradient(180deg, #f0fff4 0%, #ffffff 100%);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card-with-support:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
}

.comparison-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2em;
  text-align: left;

  margin-bottom: 1.25rem;
  text-transform: uppercase;

}


.comparison-card-with-support .comparison-title {
  color: #4caf50;

}

.comparison-card-without-support .comparison-title {
  color: #ff5722;

}

.comparison-list {
  list-style: none;
}

.comparison-list li,
.comparison-list-without li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-family: "Montserrat", sans-serif;

  font-weight: 500;

  font-size: 0.875rem;
  line-height: 1.4em;
  color: #4a4a4a;
}

.comparison-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-list svg path {
  fill: green;
  stroke: green;
  stroke-width: 2px;
}

.comparison-list-without svg path {
  fill: red;
  stroke: red;
  stroke-width: 2px;
}



.story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.125rem 5%;
  background-color: #F8F9FA;
  width: 100%;
  position: relative;
}


.story-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ff5722;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-bottom: 0;

}

.story-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2rem;

  line-height: 1.0;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 2.5rem;

  max-width: 56.25rem;
}


.story-content-wrapper {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  justify-content: center;
  max-width: 68.75rem;
  width: 100%;
}



.story-image {
  width: 100%;
  max-width: 21.875rem;
  height: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.story-image:hover {
  transform: translateY(-5px);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.story-content {
  align-self: center;
  flex: 1;
}

.story-text-without {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.467em;
  color: #FF794E;
  margin-bottom: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

.story-text-with {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.467em;
  color: #0e0e0e;
  margin-bottom: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  max-width: 550px;
}

.story-text-without {
  margin-bottom: 20px;
}

.story-text-with strong {
  font-weight: 700;
}


.story-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ff794e;
  text-decoration: none;
}

.story-link:hover {
  text-decoration: underline;
}


.roles-section {
  padding: 80px 5%;
  background-color: #ffffff;
  width: 100%;
  margin: 0;
}

.roles-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
  color: #1a1a1a;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.role-card {
  background-color: #ffffff;

  border-radius: 1.25rem;
  padding: 2.5rem 1.875rem;
  height: 100%;
  min-height: 10rem;
  display: flex;
  flex-direction: column;

  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.role-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
}

.role-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.role-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #555555;
  text-align: center;
  margin-bottom: 1rem;


}

.role-button {
  width: 100%;
  max-width: 13.75rem;
  height: 3rem;
  background-color: #ffffff;
  border: 2px solid #ff5722;

  border-radius: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #ff5722;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.role-button:hover {
  background-color: #ff5722;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}


.join-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  margin: 0;

  background: linear-gradient(91.59deg, #171E22 0%, #263238 50%, #171E22 100%);
  border-radius: 0;
  width: 100%;
  max-width: 100%;

  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}



.join-content {
  flex: 1;
  margin-right: 60px;
  margin-left: 0;
  text-align: left;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;

}

.join-title {

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 26px;

  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #EAEBEC;

  margin-bottom: 0;

  background: none;

  -webkit-text-fill-color: initial;
}

.join-description {
  font-family: "Montserrat", sans-serif;

  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #EAEBEC;

  max-width: 650px;
}

.join-button {
  width: 300px;
  height: 50px;

  background: #FF5722;

  border-radius: 28px;

  border: none;


  font-family: "Montserrat",
    sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;

  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0;
  z-index: 2;
  box-shadow: none;
}

.join-button:hover {
  transform: translateY(-2px);
  background-color: #f4511e;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.support-section {
  background-color: #FF5722;

  padding: 24px 5%;
  text-align: center;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);

}

.support-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;

  font-size: 28px;
  line-height: 1.2;
  color: #1a1a1a;

  margin-bottom: 1.5rem;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
  color: white;
  padding: 0 5px;
}

.support-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: #555555;
  max-width: 43.75rem;
  margin: 0 auto 2.5rem;
  color: white;
}

.support-section .btn-primary {
  display: block;
  width: 100%;
  max-width: 21.875rem;

  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #ffb800;
  color: #000000;
  border-radius: 0.75rem;
  margin: 0 auto;
  box-shadow: 0 0.25rem 0.9375rem rgba(255, 87, 34, 0.4);
  transition: all 0.3s ease;
  padding: 0;
}

.support-section .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.6);
  background-color: #ffb800;

}


.footer {
  background-color: #263238;

  width: 100%;
  margin: 0;
  color: #ffffff;
  padding: 40px 0 0;

}


.footer-container {
  max-width: 1440px;

  margin: 0 auto;
  padding: 0 120px 30px;

  display: flex;
  flex-wrap: nowrap;
  gap: 40px;

  border-bottom: 1px solid #D4D6D7;

  align-items: flex-start;
}


.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;

  min-width: 400px;
  /* Increased to accommodate wider text+logo */

  flex-shrink: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: -10px;
  margin-top: -15px;
  margin-left: -24px;
}

.footer-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  position: relative;
}

/* Modified for stacked text */
.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
  margin-top: -18px;
  margin-left: -8px;
}

.footer-logo-text span {
  display: block;
  white-space: nowrap;
}

.footer-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #FFEFE9;
  max-width: 350px;
  margin: 0;
  margin-top: -10px;
}


.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;

}

.social-icon {
  width: 44px;
  height: 44px;
  background: #7D8488;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s;
}

.social-icon:hover {
  background-color: #ff5722;
}

.social-icon svg {
  width: 24px;

  height: 24px;
}

.social-icon path {
  fill: #FFFFFF;

  transition: fill 0.2s ease;
}

.social-icon:hover path {
  fill: #FFFFFF;

}



.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  flex: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;

  flex: 1;
  min-width: 150px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #EAEBEC;
  margin-bottom: 4px;

  height: 29px;
  display: flex;
  align-items: center;
}

.footer-heading-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: rgba(234, 235, 236, 0.73);

  text-transform: uppercase;
  margin: 16px 0 12px;
}

.footer-separator {
  width: 186px;
  height: 0;
  border: 0.7px solid #515B60;

  margin: 12px 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.footer-list li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.footer-list a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #EAEBEC;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #ff5722;
}


.footer-contact-list li {
  gap: 10px;

  color: #EAEBEC;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.footer-contact-list svg {
  width: 15px;

  height: 15px;
}

.join-button {

  width: 250px;

  height: 45px;
}

.footer-contact-list path {
  fill: none;
  stroke: #FFFFFF;
}


.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  width: 100%;
}

.footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #EAEBEC;
}

.footer-legal {
  display: flex;
  gap: 36px;

}

.footer-legal a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #EAEBEC;
  text-decoration: none;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-contact-inline {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #EAEBEC;
  white-space: nowrap;
}

.contact-item svg {
  flex-shrink: 0;
}


@media (max-width: 1100px) {
  .footer-container {
    padding: 0 40px 60px;
    flex-direction: column;
    align-items: start;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 12px 0 0;
  }

  .footer-container {
    padding: 0 20px 40px;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    width: 100%;
    align-items: center;
  }

  .footer-logo {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    margin-top: 0;
    gap: 8px;
  }

  .footer-logo-img {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    position: static;
  }

  .footer-logo-text {
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
    margin-top: clamp(-16px, -3vw, -8px);
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .footer-logo-text span {
    position: static;
    white-space: nowrap;
  }

  .footer-description {
    text-align: center;
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-list {
    align-items: center;
  }

  .footer-heading {
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-contact-inline {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .footer-legal {
    justify-content: center;
    gap: 20px;
  }
}




@media (max-width: 1024px) {


  .nav-menu {
    display: none;

  }

  .mobile-menu-toggle {
    display: flex;

    color: #ffffff;
  }

  .nav-container {
    padding: 0 40px;
    justify-content: space-between;
  }


  .nav-buttons .btn-primary,
  .nav-buttons .btn-outline {

    display: flex;
  }


  .hero {
    height: auto;
    min-height: 550px;
    padding: 120px 0 60px;
  }

  .hero-content {
    padding: 0 60px;
  }


  .hero-title {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 24px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 32px;
    padding: 0 40px;
  }


  .dropdown-menu.mobile-active .dropdown-link {
    padding: 12px 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
}


@media (max-width: 768px) {


  .hero {
    height: auto;
    min-height: 500px;

    padding: 100px 0 60px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;

    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 320px;

    justify-content: center;
    padding: 14px 24px;

    font-size: 16px;
  }
}


@media (max-width: 991px) {


  .programs-section {
    padding: 35px 40px 60px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 48px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }


  .stats-section {
    padding: 40px 0;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
    gap: 32px;
  }

  .stat-number {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .stat-description {
    font-size: 15px;
    line-height: 1.4;
  }


  .why-section {
    padding: 25px 0 0;
  }

  .comparison-container {
    grid-template-columns: 1fr;
    padding: 0 40px;
    gap: 30px;
    margin-bottom: 60px;
  }

  .comparison-card-without-support,
  .comparison-card-with-support {
    padding: 25px 30px;
  }

  .comparison-title {
    font-size: 22px;
  }

  .comparison-list li {
    font-size: 14px;
  }


  .story-section {
    grid-template-columns: 1fr;

    grid-template-areas:
      "title"
      "subtitle"
      "image"
      "content";
    padding: 60px 40px;
    gap: 40px;
    text-align: center;
    justify-items: center;

  }

  .story-image {
    width: 100%;
    max-width: 500px;
    transform: translateX(0);
    justify-self: center;

  }

  .story-content {
    max-width: 600px;
    justify-self: center;

    text-align: center;
  }

  .story-content p {
    text-align: center;
  }

  .story-text-without {
    font-size: 16px;
  }

  .story-text-with {
    font-size: 18px;
  }


  .roles-section {
    padding: 60px 0 0 0;
  }

  .roles-section .section-title {
    margin-bottom: 50px;
    font-size: 28px;
  }

  .roles-grid {
    grid-template-columns: repeat(1, 1fr);

    gap: 25px;
    margin-bottom: 80px;
    padding: 0 40px;
  }

  .role-card {
    height: auto;
    min-height: 280px;
  }


  .join-section {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
    gap: 32px;
  }

  .join-content {
    margin: 0;
  }

  .join-title {
    font-size: 32px;
  }

  .join-description {
    font-size: 16px;
    max-width: 100%;
  }

  .join-button {
    margin: 0;
    width: 100%;
    max-width: 300px;
  }


  .support-section {
    height: auto;
    padding: 24px 20px;
  }


  .footer {
    padding: 60px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }


}


@media (max-width: 768px) {


  .programs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }


  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }


  .footer-container {
    padding: 0 40px 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);

  }
}


@media (max-width: 480px) {


  .nav-container {
    padding: 0 20px;
    gap: 16px;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .nav-buttons {
    gap: 8px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 8px 10px;
  }


  .hero {
    height: 400px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .hero-buttons .btn-primary,
  .btn-outline {
    font-size: 16px;
    padding: 10px 20px;
  }


  .programs-section {
    padding: 30px 20px 50px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }


  .stats-section {
    padding: 32px 0;
  }

  .stats-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-description {
    font-size: 10px;
  }


  .comparison-container {
    padding: 0 20px;
    gap: 24px;
  }


  .story-section {
    padding: 50px 20px;

    gap: 30px;
  }

  .story-title {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .story-subtitle {
    font-size: 28px;

    line-height: 1.2;
    margin-bottom: 24px;
  }

  .story-content {
    text-align: center;

    justify-self: center;
  }

  .story-text-without {
    font-size: 13px;
  }

  .story-text-with {
    font-size: 16px;

    margin: 0 auto 24px auto;

  }

  .story-link {
    font-size: 18px;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .comparison-card-without-support,
  .comparison-card-with-support {
    padding: 20px 24px;
  }

  .comparison-title {
    font-size: 20px;
  }

  .comparison-list li {
    font-size: 13px;
  }




  .roles-section .section-title {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .roles-grid {
    grid-template-columns: 1fr;

    padding: 0 20px;
    gap: 25px;
    margin-bottom: 50px;
  }

  .role-title {
    font-size: 20px;
  }

  .role-description {
    font-size: 15px;
  }

  .role-button {
    width: 100%;
    max-width: 100%;
  }


  .join-section {
    padding: 40px 20px;

    gap: 24px;
    border-radius: 0;

    border-radius: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .join-title {
    font-size: 28px;
  }

  .join-description {
    font-size: 15px;
  }

  .join-button {
    width: 100%;
    max-width: 320px;

    height: 55px;
    font-size: 18px;
    margin: 0 auto;

  }


  .footer-links {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-container {
    padding: 0 20px 60px;
  }

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

  .footer-list li {
    justify-content: center;
  }

  .footer-list li span,
  .footer-list a {
    justify-content: center;
    text-align: center;
  }
}


/* ============================================================
   430 × 932  –  iPhone 14 Plus / 15 Plus
   ============================================================ */
@media (max-width: 430px) {

  /* ── Navbar ─────────────────────────────── */
  .nav-container {
    padding: 0 16px;
    gap: 12px;
  }

  .logo {
    width: 44px;
    height: 44px;
  }

  /* ── Hero ────────────────────────────────── */
  .hero {
    height: auto;
    min-height: 500px;
    padding: 90px 0 48px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
    padding: 12px 20px;
  }

  /* ── Programs section ─────────────────── */
  .programs-section {
    padding: 28px 16px 44px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-card {
    max-width: 100%;
  }

  /* ── Stats ────────────────────────────── */
  .stats-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-description {
    font-size: 11px;
  }

  /* ── Why section ─────────────────────── */
  .comparison-container {
    padding: 0 16px;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  /* ── Roles section ───────────────────── */
  .roles-grid {
    padding: 0 16px;
    gap: 20px;
  }

  /* ── Join section ────────────────────── */
  .join-section {
    padding: 36px 16px;
  }

  .join-title {
    font-size: 22px;
  }

  .join-description {
    font-size: 14px;
  }

  .join-button {
    width: 100%;
    max-width: 280px;
    height: 50px;
    font-size: 16px;
  }

  /* ── Footer ──────────────────────────── */
  .footer-container {
    padding: 0 16px 48px;
  }
}


.sports-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
}


.stat-item,
.program-card,
.role-card,
.comparison-card-with-support,
.comparison-card-without-support {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.reveal-active,
.program-card.reveal-active,
.role-card.reveal-active,
.comparison-card-with-support.reveal-active,
.comparison-card-without-support.reveal-active {
  opacity: 1;
  transform: translateY(0);
}


.stat-item:nth-child(1) {
  transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
  transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
  transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
  transition-delay: 0.4s;
}

.program-card:nth-child(1) {
  transition-delay: 0.1s;
}

.program-card:nth-child(2) {
  transition-delay: 0.2s;
}

.program-card:nth-child(3) {
  transition-delay: 0.3s;
}

.program-card:nth-child(4) {
  transition-delay: 0.4s;
}

.role-card:nth-child(1) {
  transition-delay: 0.1s;
}

.role-card:nth-child(2) {
  transition-delay: 0.2s;
}

.role-card:nth-child(3) {
  transition-delay: 0.3s;
}


.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-fade {
  transform: none;
}

.reveal-up.reveal-active,
.reveal-left.reveal-active,
.reveal-right.reveal-active,
.reveal-fade.reveal-active {
  opacity: 1;
  transform: translate(0, 0);
}




@media (max-width: 1024px) {
  .story-content-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .story-image {
    max-width: 100%;
    justify-self: center;
  }

  .story-subtitle {
    font-size: 1.5rem;
  }


  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}


@media (max-width: 768px) {
  .story-section {
    padding: 2rem 1rem;
  }

  .story-content-wrapper {
    gap: 1.5rem;
  }

  .story-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .story-text-without,
  .story-text-with {
    font-size: 0.875rem;
    max-width: 100%;
  }


  .programs-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }


  .comparison-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .comparison-card-with-support,
  .comparison-card-without-support {
    padding: 1.5rem;
  }


  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }


  .roles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
}


@media (max-width: 800px) {


  .nav-buttons .btn-primary,
  .nav-buttons .btn-outline {
    display: flex;
    padding: 7px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .nav-buttons .btn-secondary {
    display: none;
  }


  .mobile-menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 10000;
    margin-left: 8px;
  }


  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .nav-menu.active {
    right: 0;
  }


  .nav-menu .nav-link {
    width: 100%;
    color: #212121;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    justify-content: flex-start;
  }

  .nav-menu .nav-link:hover {
    color: #ff5722;
    background: transparent;
  }


  .nav-menu .programs-dropdown {
    color: #212121;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-menu .programs-dropdown svg path {
    stroke: #212121;
  }


  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    padding: 0;
    width: 100%;
    max-width: 100%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }


  .nav-menu::after {
    content: '';
    display: block;
    margin-top: auto;
  }

  .mobile-menu-toggle span {
    background-color: #ffffff;
  }


  .logo {
    width: 50px;
    height: 50px;
  }

  .nav-container {
    padding: 0 20px;
  }
}


@media (max-width: 800px) {


  .dropdown-menu.mobile-active {
    max-height: 2500px;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .dropdown-menu.mobile-active .dropdown-container {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-columns: none;
  }

  .dropdown-menu.mobile-active .dropdown-section {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
  }

  .dropdown-menu.mobile-active .dropdown-section:last-child {
    border-bottom: none;
  }

  .dropdown-menu.mobile-active .dropdown-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ff5722;
    border-bottom: none;
    margin-bottom: 8px;
    padding-bottom: 0;
  }

  .dropdown-menu.mobile-active .dropdown-list {
    gap: 0;
  }

  .dropdown-menu.mobile-active .dropdown-link {
    color: #424242;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0 8px 15px;
    border-bottom: none;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .dropdown-menu.mobile-active .dropdown-link:hover {
    color: #ff5722;
    background: transparent;
    transform: none;
  }


  .programs-dropdown.expanded svg {
    transform: rotate(180deg);
  }


  .dropdown-menu.mobile-active .sports-grid {
    display: block !important;
    width: 100%;
    grid-template-columns: unset !important;
    column-count: unset;
  }

  .dropdown-menu.mobile-active .sports-grid li {
    display: block !important;
    width: 100%;
  }

  .dropdown-menu.mobile-active .sports-grid li a.dropdown-link {
    display: block !important;
    width: 100%;
    color: #424242 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0 8px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* Sport Pages Program Titles Mobile Fix */
@media (max-width: 768px) {

  .program-card1 .program-title,
  .program-card2 .program-title,
  .program-card .program-title {
    white-space: normal !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .program-features-list li,
  .program-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}

/* ============================================================
   CTA Section Styles (Standardized across pages)
   ============================================================ */
.cta-section {
  background-color: var(--primary-orange, #F05A28);
  padding: 30px 40px;
  text-align: center;
  width: 100%;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 5.5vw, 28px);
  color: var(--white, #FFFFFF);
  margin: 0 0 16px 0;
  padding: 0 5px;
  white-space: nowrap;
}

.cta-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white, #FFFFFF);
  margin: 0 auto 24px auto;
  max-width: 800px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background-color: var(--primary-yellow, #FFB800);
  color: var(--black, #000000);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: #FFC933;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--white, #FFFFFF);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: 2px solid var(--white, #FFFFFF);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* CTA Responsive Styles */
@media (max-width: 768px) {
  .cta-text {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 10px 16px;
    font-size: 13px;
    flex-shrink: 1;
    white-space: nowrap;
    width: auto;
  }

  .cta-section {
    padding: 44px 20px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 44px 20px;
  }
}

/* ============================================================
   CTA Section Styles (Standardized across pages)
   ============================================================ */
.cta-section {
  background-color: var(--primary-orange, #F05A28);
  padding: 44px 40px;
  text-align: center;
  width: 100%;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 5.5vw, 28px);
  color: var(--white, #FFFFFF);
  margin: 0 0 16px 0;
  padding: 0 5px;
  white-space: nowrap;
}

.cta-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white, #FFFFFF);
  margin: 0 auto 24px auto;
  max-width: 800px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background-color: var(--primary-yellow, #FFB800);
  color: var(--black, #000000);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: #FFC933;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background-color: transparent;
  color: var(--white, #FFFFFF);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: 2px solid var(--white, #FFFFFF);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* CTA Responsive Styles */
@media (max-width: 768px) {
  .cta-text {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 10px 16px;
    font-size: 13px;
    flex-shrink: 1;
    white-space: nowrap;
    width: auto;
  }

  .cta-section {
    padding: 44px 20px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 44px 20px;
  }
}