:root {
  --bgfa-navy: #0b1f3b;
  --bgfa-navy-dark: #06162b;
  --bgfa-yellow: #ffc800;
  --bgfa-white: #ffffff;
  --bgfa-muted: rgba(255, 255, 255, 0.78);
  --bgfa-border: rgba(255, 255, 255, 0.14);
  --bgfa-container: 1260px;
  --bgfa-font: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bgfa-font);
  background: var(--bgfa-navy);
  color: var(--bgfa-white);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  width: 48px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--bgfa-white);
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--bgfa-yellow);
}

/* =========================
   HERO
========================= */

.academy-hero {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  background: var(--bgfa-navy-dark);
  color: var(--bgfa-white);
}

.academy-hero-slider,
.academy-slide {
  position: absolute;
  inset: 0;
}

.academy-slide {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.academy-slide.is-active {
  opacity: 1;
}

.academy-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.academy-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(11, 31, 59, 0.94) 0%,
    rgba(11, 31, 59, 0.78) 31%,
    rgba(11, 31, 59, 0.48) 56%,
    rgba(11, 31, 59, 0.18) 100%
  );
}

.academy-content {
  position: relative;
  z-index: 5;
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  padding: 135px 30px 140px;
}

.academy-eyebrow {
  margin-bottom: 12px;
  color: var(--bgfa-yellow);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.academy-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  line-height: 0.94;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-style: italic;
}

.academy-heading span {
  display: block;
  font-size: clamp(44px, 5vw, 64px);
}

.academy-heading .word-1 {
  color: var(--bgfa-white);
  font-weight: 600;
}

.academy-heading .word-2 {
  color: var(--bgfa-yellow);
  font-weight: 800;
}

.academy-subheading {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.academy-text {
  max-width: 460px;
  margin: 20px 0 0;
  color: var(--bgfa-muted);
  font-size: 16px;
  line-height: 1.6;
}

.academy-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.academy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
}

.academy-btn-primary {
  background: var(--bgfa-yellow);
  border: 1px solid var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

.academy-btn-outline {
  background: transparent;
  border: 1px solid var(--bgfa-yellow);
  color: var(--bgfa-white);
}

.academy-btn:hover {
  transform: translateY(-3px);
}

.academy-btn-outline:hover {
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

.academy-yellow-shape {
  position: absolute;
  right: -80px;
  bottom: 80px;
  z-index: 3;
  width: 420px;
  height: 150px;
  background: var(--bgfa-yellow);
  transform: skewX(-22deg) rotate(-8deg);
}

.academy-yellow-shape::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -70px;
  width: 170px;
  height: 220px;
  background: var(--bgfa-yellow);
  transform: rotate(24deg);
}

/* =========================
   HERO FEATURES BAR
========================= */

.academy-features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(11, 31, 59, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.academy-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 24px;
  border-right: 1px solid var(--bgfa-border);
}

.academy-feature:last-child {
  border-right: 0;
}

.academy-feature-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bgfa-yellow);
}

.academy-feature-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
}

.academy-feature h3 {
  margin: 0;
  color: var(--bgfa-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.academy-feature p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.academy-feature-dots {
  display: none;
}

/* =========================
   ANIMATIONS
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}
.delay-2 {
  animation-delay: 0.28s;
}
.delay-3 {
  animation-delay: 0.42s;
}
.delay-4 {
  animation-delay: 0.58s;
}
.delay-5 {
  animation-delay: 0.74s;
}
.delay-6 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .site-header {
    padding: 18px 22px;
  }

  .site-logo img {
    width: 44px;
  }

  .site-nav {
    display: none;
  }

  .academy-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .academy-content {
    padding: 100px 22px 32px;
  }

  .academy-heading span {
    font-size: 34px;
  }

  .academy-subheading {
    font-size: 18px;
  }

  .academy-text {
    max-width: 330px;
    font-size: 13px;
  }

  .academy-btn {
    min-height: 46px;
    padding: 0 22px;
    font-size: 12px;
  }

  .academy-hero-slider {
    height: 620px;
  }

  .academy-slide img {
    height: 620px;
    object-position: center;
  }

  .academy-overlay {
    background: linear-gradient(
      90deg,
      rgba(11, 31, 59, 0.95) 0%,
      rgba(11, 31, 59, 0.76) 46%,
      rgba(11, 31, 59, 0.32) 100%
    );
  }

  .academy-yellow-shape {
    display: none;
  }

  .academy-features {
    position: relative;
    margin-top: 40px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .academy-features::-webkit-scrollbar {
    display: none;
  }

  .academy-feature {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    padding: 24px 22px;
    border-right: 0;
    scroll-snap-align: start;
  }

  .academy-feature-dots {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background: rgba(11, 31, 59, 0.94);
    padding: 2px 0 18px;
  }

  .academy-feature-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
  }

  .academy-feature-dots button.is-active {
    background: var(--bgfa-yellow);
  }
}

@media (max-width: 520px) {
  .academy-heading span {
    font-size: 31px;
  }

  .academy-buttons {
    gap: 12px;
  }

  .academy-btn {
    width: 100%;
  }
}

/* =========================
   SECTION 2 — TRAINING PROGRAMS
========================= */

.training-programs {
  background: var(--bgfa-white);
  padding: 66px 20px;
  color: var(--bgfa-navy);
}

.training-programs-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.section-small-title {
  text-align: center;
  color: var(--bgfa-yellow);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  margin: 0 0 34px;
  text-align: center;
  color: var(--bgfa-navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.training-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.training-program-card {
  background: var(--bgfa-navy);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.training-program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.training-program-image {
  position: relative;
  height: 218px;
  overflow: hidden;
}

.training-program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.training-program-card:hover .training-program-image img {
  transform: scale(1.06);
}

.training-program-age {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-width: 56px;
  padding: 8px 10px;
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.training-program-age strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.training-program-age span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.training-program-body {
  padding: 20px 20px 19px;
  color: var(--bgfa-white);
}

.training-program-group {
  margin-bottom: 8px;
  color: var(--bgfa-yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.training-program-card h3 {
  margin: 0;
  color: var(--bgfa-white);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.training-program-card p {
  margin: 10px 0 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.5;
}

.training-program-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--bgfa-white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.training-program-btn:hover {
  background: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  transform: translateY(-2px);
}

/* SCROLL REVEAL ANIMATION */

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.training-program-card:nth-child(1) {
  transition-delay: 0.05s;
}

.training-program-card:nth-child(2) {
  transition-delay: 0.14s;
}

.training-program-card:nth-child(3) {
  transition-delay: 0.23s;
}

.training-program-card:nth-child(4) {
  transition-delay: 0.32s;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .training-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .training-program-image {
    height: 240px;
  }
}

@media (max-width: 700px) {
  .training-programs {
    padding: 50px 16px;
  }

  .section-small-title {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .section-title {
    margin-bottom: 28px;
    font-size: 26px;
  }

  .training-programs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .training-program-image {
    height: 238px;
  }

  .training-program-card h3 {
    font-size: 18px;
  }

  .training-program-card p {
    font-size: 12.5px;
  }
}

/* =========================
   SECTION 3 — ABOUT ACADEMY
========================= */

.about-academy {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--bgfa-navy);
  color: var(--bgfa-white);
}

.about-academy-wrap {
  position: relative;
  z-index: 3;
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  padding: 48px 30px;
}

.about-academy-left {
  max-width: 560px;
}

.about-small {
  text-align: left;
  margin-bottom: 12px;
}

.about-academy-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

.about-academy-text {
  margin: 16px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.about-academy-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.about-academy-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.about-academy-feature img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.about-academy-feature span {
  max-width: 125px;
  color: var(--bgfa-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-academy-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
}

.about-academy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-academy-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #0b1f3b 0%,
    rgba(11, 31, 59, 0.88) 48%,
    rgba(11, 31, 59, 0.55) 68%,
    rgba(11, 31, 59, 0.22) 88%,
    rgba(11, 31, 59, 0) 100%
  );
}

/* ABOUT MOBILE */

@media (max-width: 900px) {
  .about-academy {
    min-height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .about-academy-wrap {
    order: 2;
    padding: 38px 20px 42px;
  }

  .about-academy-left {
    max-width: 100%;
  }

  .about-small {
    text-align: center;
  }

  .about-academy-title {
    font-size: 24px;
  }

  .about-academy-text {
    max-width: 560px;
    margin: 16px auto 24px;
    font-size: 13px;
  }

  .about-academy-features {
    justify-content: center;
    gap: 20px;
  }

  .about-academy-feature {
    width: 30%;
    min-width: 95px;
  }

  .about-academy-feature img {
    width: 58px;
    height: 58px;
  }

  .about-academy-feature span {
    font-size: 10.5px;
    font-weight: 700;
  }

  .about-academy-image {
    position: relative;
    order: 1;
    width: 100%;
    height: 260px;
  }

  .about-academy-overlay {
    background: rgba(11, 31, 59, 0.18);
  }
}

@media (max-width: 520px) {
  .about-academy-feature {
    width: 45%;
  }
}
/* =========================
   SECTION 4 — WHY CHOOSE US
========================= */

.why-choose-us {
  background: var(--bgfa-white);
  padding: 66px 20px;
  color: var(--bgfa-navy);
}

.why-choose-us-container {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.why-choose-us-left {
  padding-right: 30px;
}

.why-small {
  text-align: left;
  margin-bottom: 12px;
}

.why-choose-us-heading {
  margin: 0 0 20px;
  color: var(--bgfa-navy);
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
}

.why-choose-us-description {
  max-width: 520px;
  margin: 0;
  color: rgba(11, 31, 59, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

/* TIMELINE */

.why-choose-us-timeline {
  position: relative;
  padding-left: 62px;
}

.why-choose-us-line {
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: rgba(11, 31, 59, 0.14);
}

.why-choose-us-item {
  position: relative;
  margin-bottom: 36px;
}

.why-choose-us-item:last-child {
  margin-bottom: 0;
}

.why-choose-us-circle {
  position: absolute;
  left: -62px;
  top: 0;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bgfa-white);
  border: 2px solid var(--bgfa-yellow);
  color: var(--bgfa-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(11, 31, 59, 0.08);
}

.why-choose-us-content {
  padding: 0 0 0 2px;
}

.why-choose-us-content h3 {
  margin: 0 0 8px;
  color: var(--bgfa-navy);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.why-choose-us-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(11, 31, 59, 0.68);
  font-size: 13.5px;
  line-height: 1.55;
}

/* STAGGER TIMELINE ANIMATION */

.why-choose-us-item:nth-child(2) {
  transition-delay: 0.08s;
}

.why-choose-us-item:nth-child(3) {
  transition-delay: 0.18s;
}

.why-choose-us-item:nth-child(4) {
  transition-delay: 0.28s;
}

/* MOBILE */

@media (max-width: 900px) {
  .why-choose-us {
    padding: 54px 20px;
  }

  .why-choose-us-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .why-choose-us-left {
    padding-right: 0;
    text-align: center;
  }

  .why-small {
    text-align: center;
  }

  .why-choose-us-heading {
    font-size: 28px;
  }

  .why-choose-us-description {
    max-width: 560px;
    margin: 0 auto;
    font-size: 13px;
  }

  .why-choose-us-timeline {
    max-width: 560px;
    margin: 0 auto;
    padding-left: 54px;
  }

  .why-choose-us-line {
    left: 18px;
  }

  .why-choose-us-circle {
    left: -54px;
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .why-choose-us-content h3 {
    font-size: 17px;
  }

  .why-choose-us-content p {
    font-size: 12.5px;
  }
}

@media (max-width: 520px) {
  .why-choose-us {
    padding: 48px 16px;
  }

  .why-choose-us-heading {
    font-size: 25px;
  }

  .why-choose-us-timeline {
    padding-left: 50px;
  }

  .why-choose-us-circle {
    left: -50px;
  }

  .why-choose-us-item {
    margin-bottom: 30px;
  }
}

/* =========================
   SECTION 5 — TRAINING VIDEOS
========================= */

.training-videos {
  background: var(--bgfa-navy);
  color: var(--bgfa-white);
  padding: 56px 20px;
  overflow: hidden;
}

.training-videos-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.training-videos-small {
  text-align: center;
  margin-bottom: 12px;
}

.training-videos-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.training-videos-desc {
  max-width: 650px;
  margin: 16px auto 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.training-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.training-video-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.training-video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 0, 0.45);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.training-video-thumb {
  position: relative;
  width: 100%;
  height: 286px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}

.training-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.training-video-card:hover .training-video-thumb img {
  transform: scale(1.05);
  opacity: 0.88;
}

.training-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border: 2px solid var(--bgfa-white);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: var(--bgfa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transform: translate(-50%, -50%);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.training-video-card:hover .training-video-play {
  background: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  transform: translate(-50%, -50%) scale(1.05);
}

.training-video-body {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #07182f;
  padding: 20px;
}

.training-video-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  color: var(--bgfa-yellow);
}

.training-video-icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
}

.training-video-body h3 {
  margin: 0;
  color: var(--bgfa-white);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.training-video-body p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.45;
}

.training-video-dots {
  display: none;
}

/* VIDEO MODAL */

.training-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.training-video-modal.is-open {
  display: flex;
}

.training-video-modal video {
  width: min(100%, 900px);
  max-height: 80vh;
  border-radius: 10px;
  background: #000;
}

.training-video-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--bgfa-white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

/* STAGGER */

.training-video-card:nth-child(1) {
  transition-delay: 0.05s;
}

.training-video-card:nth-child(2) {
  transition-delay: 0.14s;
}

.training-video-card:nth-child(3) {
  transition-delay: 0.23s;
}

/* MOBILE */

@media (max-width: 900px) {
  .training-videos {
    padding: 52px 0;
  }

  .training-videos-wrap {
    padding: 0 18px;
  }

  .training-videos-title {
    font-size: 27px;
  }

  .training-videos-desc {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .training-videos-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .training-videos-grid::-webkit-scrollbar {
    display: none;
  }

  .training-video-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }

  .training-video-thumb {
    height: 260px;
  }

  .training-video-body h3 {
    font-size: 17px;
  }

  .training-video-body p {
    font-size: 12.5px;
  }

  .training-video-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .training-video-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
  }

  .training-video-dots button.is-active {
    background: var(--bgfa-yellow);
  }

  .training-video-close {
    top: 16px;
    right: 18px;
    font-size: 36px;
  }
}

/* =========================
   SECTION 6 — COACHES
========================= */

.coaches-section {
  background: var(--bgfa-white);
  padding: 56px 20px;
  color: var(--bgfa-navy);
}

.coaches-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.coaches-small {
  text-align: center;
  margin-bottom: 12px;
}

.coaches-title {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
}

.coaches-desc {
  max-width: 620px;
  margin: 16px auto 30px;
  color: rgba(11, 31, 59, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.coach-card {
  background: var(--bgfa-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 59, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.coach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.55);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.coach-img {
  height: 360px;
  overflow: hidden;
  background: rgba(11, 31, 59, 0.04);
}

.coach-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.45s ease;
}

.coach-card:hover .coach-img img {
  transform: scale(1.035);
}

.coach-body {
  padding: 22px 20px 24px;
  border-top: 3px solid var(--bgfa-yellow);
}

.coach-body h3 {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: 19px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.coach-role {
  display: block;
  margin-top: 6px;
  color: var(--bgfa-yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.coach-body p {
  max-width: 330px;
  margin: 12px auto 0;
  color: rgba(11, 31, 59, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

/* STAGGER */

.coach-card:nth-child(1) {
  transition-delay: 0.05s;
}

.coach-card:nth-child(2) {
  transition-delay: 0.14s;
}

.coach-card:nth-child(3) {
  transition-delay: 0.23s;
}

/* MOBILE */

@media (max-width: 900px) {
  .coaches-section {
    padding: 52px 16px;
  }

  .coaches-title {
    font-size: 27px;
  }

  .coaches-desc {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .coaches-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .coach-img {
    height: 290px;
  }

  .coach-body h3 {
    font-size: 18px;
  }

  .coach-body p {
    font-size: 12.5px;
  }
}

@media (max-width: 520px) {
  .coach-img {
    height: 260px;
  }
}

/* =========================
   SECTION 7 — IMPORTANT EVENT
========================= */

.important-event-section {
  background: var(--bgfa-navy);
  padding: 56px 20px;
  overflow: hidden;
  color: var(--bgfa-white);
}

.important-event-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.important-event-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.important-event-track {
  display: flex;
  transition: transform 0.45s ease;
}

.important-event-slide {
  min-width: 100%;
}

.important-event-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 14px;
}

.important-event-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.important-event-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.important-event-dots button.is-active {
  background: var(--bgfa-yellow);
}

.important-event-content {
  text-align: left;
}

.important-event-badge {
  width: 100%;
  margin-bottom: 12px;
  color: var(--bgfa-yellow);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.important-event-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 600;
  text-transform: uppercase;
}

.important-event-text {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

/* MOBILE */

@media (max-width: 900px) {
  .important-event-section {
    padding: 52px 16px;
  }

  .important-event-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .important-event-slide img {
    height: 300px;
  }

  .important-event-content {
    text-align: center;
  }

  .important-event-badge {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .important-event-title {
    font-size: 27px;
  }

  .important-event-text {
    margin: 16px auto 0;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .important-event-slide img {
    height: 250px;
  }
}

/* =========================
   SECTION 8 — ACADEMY MOMENTS
========================= */

.academy-moments {
  background: var(--bgfa-white);
  padding: 56px 0;
  color: var(--bgfa-navy);
  overflow: hidden;
}

.academy-moments-heading-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.academy-moments-small {
  text-align: center;
  margin-bottom: 12px;
}

.academy-moments-title {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
}

.academy-moments-desc {
  max-width: 660px;
  margin: 16px auto 34px;
  color: rgba(11, 31, 59, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.academy-moments-rows {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

.academy-moments-row {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding-top: 20px;
}

.academy-moments-row:last-child {
  margin-bottom: 0;
}

.academy-moments-badge {
  position: absolute;
  top: 0;
  left: 18px;
  z-index: 5;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.academy-moments-badge-events {
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

.academy-moments-badge-trips {
  background: #d71920;
  color: var(--bgfa-white);
}

.academy-moments-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 26s;
}

.academy-moments-track:hover {
  animation-play-state: paused;
}

.academy-moments-track-right {
  animation-name: academyScrollRight;
}

.academy-moments-track-left {
  animation-name: academyScrollLeft;
}

.academy-moment-card {
  flex: 0 0 286px;
  width: 286px;
  overflow: hidden;
  background: var(--bgfa-white);
  border-radius: 8px;
  border: 1px solid rgba(11, 31, 59, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.academy-moment-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.academy-moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.academy-moment-card:hover .academy-moment-image img {
  transform: scale(1.06);
}

.academy-moment-content {
  padding: 16px 17px 18px;
}

.academy-moment-content h3 {
  margin: 0 0 7px;
  color: var(--bgfa-navy);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.academy-moment-content p {
  margin: 0;
  color: rgba(11, 31, 59, 0.65);
  font-size: 13px;
  line-height: 1.3;
}

@keyframes academyScrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes academyScrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .academy-moments {
    padding: 52px 0;
  }

  .academy-moments-heading-wrap {
    padding: 0 16px;
  }

  .academy-moments-title {
    font-size: 27px;
  }

  .academy-moments-desc {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .academy-moments-rows {
    padding: 0 16px;
  }

  .academy-moment-card {
    flex: 0 0 calc(100vw - 52px);
    width: calc(100vw - 52px);
  }

  .academy-moment-image {
    height: 220px;
  }

  .academy-moments-track {
    gap: 16px;
    animation-duration: 30s;
  }

  .academy-moments-badge {
    left: 14px;
    font-size: 11px;
  }
}

/* =========================
   SECTION 9 — GALLERY PREVIEW
========================= */

.gallery-preview {
  background: var(--bgfa-navy);
  padding: 56px 20px 78px;
  color: var(--bgfa-white);
  overflow: hidden;
}

.gallery-preview-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.gallery-preview-small {
  text-align: center;
  margin-bottom: 12px;
}

.gallery-preview-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-preview-desc {
  max-width: 660px;
  margin: 16px auto 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.gallery-preview-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-preview-item {
  height: 220px;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-preview-btn {
  grid-column: 3 / 4;
  min-height: 46px;
  width: fit-content;
  margin: 22px auto 0;
  padding: 0 22px;
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  border: 1px solid var(--bgfa-yellow);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.gallery-preview-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
}
/* STAGGER */

.gallery-preview-item:nth-child(1) {
  transition-delay: 0.05s;
}

.gallery-preview-item:nth-child(2) {
  transition-delay: 0.12s;
}

.gallery-preview-item:nth-child(3) {
  transition-delay: 0.19s;
}

.gallery-preview-item:nth-child(4) {
  transition-delay: 0.26s;
}

.gallery-preview-item:nth-child(5) {
  transition-delay: 0.33s;
}

/* MOBILE */

@media (max-width: 900px) {
  .gallery-preview {
    padding: 52px 16px 58px;
  }

  .gallery-preview-title {
    font-size: 27px;
  }

  .gallery-preview-desc {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .gallery-preview-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-preview-item {
    height: 135px;
  }

  .gallery-preview-btn {
    grid-column: 1 / -1;
    min-height: 46px;
    width: fit-content;
    margin: 6px auto 0;
    padding: 0 22px;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .gallery-preview-item {
    height: 118px;
  }
}
/* =========================
   SECTION 10 — INSTAGRAM COACH VIDEOS
========================= */

.instagram-videos-section {
  background: var(--bgfa-white);
  color: var(--bgfa-navy);
  padding: 56px 20px;
  overflow: hidden;
}

.instagram-videos-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.instagram-videos-small {
  text-align: center;
  margin-bottom: 12px;
}

.instagram-videos-title {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
}

.instagram-videos-desc {
  max-width: 620px;
  margin: 16px auto 28px;
  color: rgba(11, 31, 59, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.instagram-videos-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.instagram-videos-grid::-webkit-scrollbar {
  display: none;
}

.instagram-video-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: calc((100% - 64px) / 5);
  scroll-snap-align: start;
}

.instagram-video-media {
  position: relative;
  width: 100%;
  height: 390px;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bgfa-navy);
}

.instagram-video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.instagram-video-card:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.instagram-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 2px solid var(--bgfa-white);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: var(--bgfa-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: translate(-50%, -50%);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.instagram-video-card:hover .instagram-video-play {
  background: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  transform: translate(-50%, -50%) scale(1.05);
}

.instagram-video-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 59, 0.04),
    rgba(11, 31, 59, 0.9)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-video-media:hover .instagram-video-caption {
  opacity: 1;
}

.instagram-video-caption p {
  margin: 0;
  color: var(--bgfa-white);
  text-align: left;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.instagram-video-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.instagram-video-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(11, 31, 59, 0.25);
  cursor: pointer;
}

.instagram-video-dots button.is-active {
  background: var(--bgfa-yellow);
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 22px;
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  border: 1px solid var(--bgfa-yellow);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.instagram-follow-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
}

/* MODAL */

.instagram-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.instagram-video-modal.is-open {
  display: flex;
}

.instagram-video-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 0;
  background: none;
  color: var(--bgfa-white);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.instagram-video-iframe {
  width: min(420px, 92vw);
  height: min(88vh, 760px);
  border: 0;
  border-radius: 12px;
  background: #000;
}

/* MOBILE */

@media (max-width: 900px) {
  .instagram-videos-section {
    padding: 52px 0;
  }

  .instagram-videos-wrap {
    padding: 0 18px;
  }

  .instagram-videos-title {
    font-size: 27px;
  }

  .instagram-videos-desc {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .instagram-video-card {
    flex: 0 0 72%;
    min-width: 72%;
  }

  .instagram-video-media {
    height: 360px;
  }

  .instagram-video-caption {
    opacity: 1;
  }

  .instagram-video-caption p {
    font-size: 12.5px;
  }
}

@media (max-width: 520px) {
  .instagram-video-card {
    flex: 0 0 78%;
    min-width: 78%;
  }

  .instagram-video-media {
    height: 340px;
  }
}
/* =========================
   SECTION 11 — FINAL CTA
========================= */

.final-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bgfa-navy);
  padding: 78px 20px;
  color: var(--bgfa-white);
  text-align: center;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 420px;
  height: 200px;
  background: rgba(255, 200, 0, 0.14);
  filter: blur(110px);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta-wrap {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.final-cta-small {
  text-align: center;
  margin-bottom: 12px;
}

.final-cta-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta-desc {
  max-width: 620px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-cta-btn {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.final-cta-btn-primary {
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  border: 1px solid var(--bgfa-yellow);
}

.final-cta-btn-primary:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
  box-shadow: 0 12px 28px rgba(255, 200, 0, 0.22);
}

.final-cta-btn-secondary {
  background: transparent;
  color: var(--bgfa-yellow);
  border: 1px solid var(--bgfa-yellow);
}

.final-cta-btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

/* MOBILE */

@media (max-width: 900px) {
  .final-cta-section {
    padding: 64px 18px;
  }

  .final-cta-title {
    font-size: 28px;
  }

  .final-cta-desc {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .final-cta-buttons {
    gap: 12px;
  }

  .final-cta-btn {
    width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #071b35;
  color: var(--bgfa-white);
  padding: 28px 10px 10px;
}

.footer-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.footer-brand {
  text-align: left;
}

.footer-logo img {
  width: 145px;
  height: auto;
}

.footer-slogan {
  margin: 24px 0 14px;
  color: var(--bgfa-white);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--bgfa-white);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--bgfa-white);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--bgfa-yellow);
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--bgfa-white);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  transition: color 0.3s ease;
}

a.footer-contact-item:hover {
  color: var(--bgfa-yellow);
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: var(--bgfa-white);
}

.footer-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.footer-bottom {
  width: min(100%, var(--bgfa-container));
  margin: 28px auto 0;
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--bgfa-yellow);
}

/* MOBILE */

@media (max-width: 900px) {
  .site-footer {
    padding: 42px 18px 22px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo img {
    width: 125px;
    margin: 0 auto;
  }

  .footer-slogan {
    margin-top: 18px;
    font-size: 15px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-links a,
  .footer-contact-item {
    font-size: 13px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    width: fit-content;
    text-align: left;
  }
}

.footer-white-spacer {
  height: 45px;
  background: #fff;
}

/* =========================
   INNER PAGE HEADER / HERO
========================= */

.inner-page-header {
  position: relative;
  background: var(--bgfa-navy);
}

.inner-page-hero {
  background: var(--bgfa-navy);
  color: var(--bgfa-white);
  padding: 30px 20px 62px;
  text-align: center;
}

.inner-page-hero-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
}

.inner-page-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.inner-page-desc {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   COACHES PAGE — POPUP SECTION
========================= */

.coaches-page-section {
  display: block;
  background: var(--bgfa-white);
  padding: 58px 20px 72px;
  color: var(--bgfa-navy);
}

.coaches-page-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.coaches-page-small {
  text-align: center;
  margin-bottom: 12px;
}

.coaches-page-title {
  margin: 0 0 34px;
  text-align: center;
  color: var(--bgfa-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.coaches-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.coaches-page-card {
  display: block;
  cursor: pointer;
  overflow: hidden;
  background: var(--bgfa-white);
  border-radius: 12px;
  border: 1px solid rgba(11, 31, 59, 0.08);
  box-shadow: 0 14px 34px rgba(11, 31, 59, 0.11);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.coaches-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.5);
  box-shadow: 0 20px 48px rgba(11, 31, 59, 0.16);
}

.coaches-page-img {
  height: 390px;
  overflow: hidden;
  background: rgba(11, 31, 59, 0.04);
}

.coaches-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.coaches-page-card:hover .coaches-page-img img {
  transform: scale(1.035);
}

.coaches-page-body {
  padding: 22px 22px 26px;
  text-align: center;
  border-top: 4px solid var(--bgfa-yellow);
}

.coaches-page-body h2 {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.coaches-page-body span {
  display: block;
  margin-top: 6px;
  color: var(--bgfa-yellow);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.coaches-page-qualifications {
  margin-top: 16px;
  color: rgba(11, 31, 59, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.coaches-page-qualifications strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bgfa-navy);
  font-weight: 700;
}

.coaches-page-qualifications ul {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.coaches-page-qualifications li {
  margin-bottom: 6px;
}

.coaches-page-qualifications li::marker {
  color: var(--bgfa-yellow);
}

/* =========================
   COACH POPUP MODAL
========================= */

.coach-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  background: rgba(0, 0, 0, 0.72);
}

.coach-popup-overlay.is-open {
  display: block;
}

.coach-popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: min(92vw, 700px);
  max-height: 90vh;
  overflow-y: auto;
  display: none;
  background: var(--bgfa-white);
  color: var(--bgfa-navy);
  padding: 38px;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.coach-popup-modal.is-open {
  display: block;
}

.coach-popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--bgfa-navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.coach-popup-image {
  width: 190px;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--bgfa-yellow);
  padding: 4px;
  background: var(--bgfa-white);
}

.coach-popup-name {
  margin: 18px 0 0;
  text-align: center;
  color: var(--bgfa-navy);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.coach-popup-title {
  margin: 7px 0 0;
  text-align: center;
  color: var(--bgfa-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.coach-popup-section {
  margin-top: 20px;
  color: rgba(11, 31, 59, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.coach-popup-section p {
  margin: 0;
}

.coach-popup-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bgfa-navy);
  font-weight: 700;
  text-transform: uppercase;
}

.coach-popup-section ul {
  margin: 0;
  padding-left: 20px;
}

.coach-popup-section li {
  margin-bottom: 7px;
}

.coach-popup-section li::marker {
  color: var(--bgfa-yellow);
}

/* =========================
   COACHES PAGE ANIMATION DELAYS
========================= */

.coaches-page-card:nth-child(1) {
  transition-delay: 0.05s;
}

.coaches-page-card:nth-child(2) {
  transition-delay: 0.14s;
}

.coaches-page-card:nth-child(3) {
  transition-delay: 0.23s;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .inner-page-hero {
    padding: 56px 18px 50px;
  }

  .inner-page-title {
    font-size: 30px;
  }

  .inner-page-desc {
    font-size: 13px;
  }

  .coaches-page-section {
    padding: 52px 16px 60px;
  }

  .coaches-page-title {
    font-size: 28px;
  }

  .coaches-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .coaches-page-img {
    height: 310px;
  }

  .coaches-page-body h2 {
    font-size: 18px;
  }

  .coaches-page-qualifications {
    font-size: 12.5px;
  }

  .coach-popup-modal {
    padding: 34px 22px 26px;
  }

  .coach-popup-image {
    width: 160px;
    height: 160px;
  }

  .coach-popup-name {
    font-size: 21px;
  }

  .coach-popup-section {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .coaches-page-img {
    height: 280px;
  }

  .coach-popup-modal {
    width: 92vw;
    max-height: 88vh;
  }
}

/* =========================
   JERSEY ORDER SECTION
========================= */

.jersey-order-section {
  background: var(--bgfa-navy);
  padding: 66px 20px;
  color: var(--bgfa-white);
  overflow: hidden;
}

.jersey-order-inner {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jersey-order-content {
  max-width: 560px;
}

.jersey-order-label {
  text-align: left;
  margin-bottom: 12px;
}

.jersey-order-heading {
  margin: 0 0 16px;
  color: var(--bgfa-white);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 500;
  text-transform: uppercase;
}

.jersey-order-text {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.jersey-order-form {
  display: grid;
  gap: 14px;
  max-width: 460px;
}

.jersey-order-form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.jersey-order-form label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.jersey-order-form input,
.jersey-order-form select {
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bgfa-white);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

.jersey-order-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.jersey-order-form select option {
  color: var(--bgfa-navy);
}

.jersey-order-whatsapp {
  width: fit-content;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--bgfa-yellow);
  border: 1px solid var(--bgfa-yellow);
  color: var(--bgfa-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.jersey-order-whatsapp:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
}

.jersey-order-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.jersey-order-image-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 200, 0, 0.26);
  border-radius: 16px;
  overflow: hidden;
  padding: 14px;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.jersey-order-image-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 0, 0.55);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.jersey-order-image-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.45s ease;
}

.jersey-order-image-card:hover img {
  transform: scale(1.035);
}

/* MOBILE */

@media (max-width: 900px) {
  .jersey-order-section {
    padding: 52px 20px;
  }

  .jersey-order-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jersey-order-content {
    max-width: 100%;
    text-align: center;
  }

  .jersey-order-label {
    text-align: center;
  }

  .jersey-order-heading {
    font-size: 27px;
  }

  .jersey-order-text {
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }

  .jersey-order-form {
    margin: 0 auto;
    text-align: left;
  }

  .jersey-order-whatsapp {
    margin-left: auto;
    margin-right: auto;
  }

  .jersey-order-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .jersey-order-images {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PROGRAMS PAGE — PHILOSOPHY / APPROACH
========================= */

.program-philosophy-section {
  background: var(--bgfa-navy);
  color: var(--bgfa-white);
  padding: 10px 20px 40px;
  overflow: hidden;
}

.program-philosophy-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.program-philosophy-left {
  max-width: 500px;
}

.program-philosophy-label {
  text-align: left;
  margin-bottom: 12px;
}

.program-philosophy-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
}

.program-philosophy-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.program-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.program-philosophy-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 24px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.program-philosophy-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 200, 0, 0.75);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
}

.program-philosophy-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-philosophy-icon svg {
  width: 25px;
  height: 25px;
  stroke: var(--bgfa-yellow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-philosophy-card h3 {
  margin: 0;
  color: var(--bgfa-white);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.program-philosophy-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.55;
}

/* Animation delay */
.program-philosophy-card:nth-child(1) {
  transition-delay: 0.05s;
}

.program-philosophy-card:nth-child(2) {
  transition-delay: 0.12s;
}

.program-philosophy-card:nth-child(3) {
  transition-delay: 0.19s;
}

.program-philosophy-card:nth-child(4) {
  transition-delay: 0.26s;
}

/* Mobile */
@media (max-width: 900px) {
  .program-philosophy-section {
    padding: 52px 20px 58px;
  }

  .program-philosophy-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .program-philosophy-left {
    max-width: 100%;
  }

  .program-philosophy-label {
    text-align: center;
  }

  .program-philosophy-title {
    font-size: 28px;
  }

  .program-philosophy-text {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }

  .program-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-philosophy-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .program-philosophy-card {
    padding: 22px 20px;
  }
}

/* =========================
   PROGRAMS PAGE — GROUPS SECTION
========================= */

.program-groups-section {
  background: #f5f7fb;
  color: var(--bgfa-navy);
  padding: 46px 20px 78px;
  overflow: hidden;
}

.program-groups-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.program-groups-label {
  margin-bottom: 12px;
  text-align: center;
}

.program-groups-title {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.program-groups-desc {
  max-width: 720px;
  margin: 22px auto 76px;
  color: rgba(11, 31, 59, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.program-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.program-group-card {
  position: relative;
  min-height: 510px;
  background: #f5f7fb;
  border: 1px solid rgba(11, 31, 59, 0.1);
  border-radius: 14px;
  padding: 96px 28px 30px;
  box-shadow: 0 16px 42px rgba(11, 31, 59, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.program-group-card:hover {
  transform: translateY(-7px);
  background: #fff;
  border-color: rgba(255, 200, 0, 0.7);
  box-shadow: 0 24px 60px rgba(11, 31, 59, 0.13);
}

.program-group-icon {
  position: absolute;
  top: -68px;
  left: 50%;
  width: 122px;
  height: 122px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--bgfa-navy);
  border: 2px solid var(--bgfa-yellow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(11, 31, 59, 0.22);
}

.program-group-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-group-card h3 {
  margin: 0;
  color: var(--bgfa-navy);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.program-group-age {
  margin-top: 12px;
  color: var(--bgfa-yellow);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-group-card > p {
  margin: 30px auto 28px;
  color: rgba(11, 31, 59, 0.68);
  font-size: 15px;
  line-height: 1.65;
  max-width: 250px;
}

.program-group-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  text-align: left;
}

.program-group-card li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: rgba(11, 31, 59, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.program-group-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--bgfa-yellow);
  border-radius: 50%;
  color: var(--bgfa-yellow);
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.program-group-btn {
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid var(--bgfa-navy);
  border-radius: 6px;
  color: var(--bgfa-navy);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.program-group-btn:hover {
  transform: translateY(-3px);
  background: var(--bgfa-yellow);
  border-color: var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

/* Animation stagger */
.program-group-card:nth-child(1) {
  transition-delay: 0.05s;
}

.program-group-card:nth-child(2) {
  transition-delay: 0.12s;
}

.program-group-card:nth-child(3) {
  transition-delay: 0.19s;
}

.program-group-card:nth-child(4) {
  transition-delay: 0.26s;
}

/* Tablet */
@media (max-width: 1100px) {
  .program-groups-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 86px;
  }

  .program-group-card {
    min-height: 470px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .program-groups-section {
    padding: 42px 16px 62px;
  }

  .program-groups-title {
    font-size: 29px;
  }

  .program-groups-desc {
    margin: 18px auto 74px;
    font-size: 14px;
  }

  .program-groups-grid {
    grid-template-columns: 1fr;
    gap: 82px;
  }

  .program-group-card {
    min-height: auto;
    padding: 92px 24px 28px;
  }

  .program-group-card ul {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   PROGRAMS PAGE — TRAINING SCHEDULE
========================= */

.program-schedule-section {
  background: var(--bgfa-navy);
  color: var(--bgfa-white);
  padding: 72px 20px 76px;
  overflow: hidden;
}

.program-schedule-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.program-schedule-label {
  text-align: center;
  margin-bottom: 16px;
}

.program-schedule-title {
  margin: 0;
  color: var(--bgfa-white);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.program-schedule-subtitle {
  max-width: 650px;
  margin: 24px auto 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.6;
}

.program-schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.program-schedule-tab {
  min-width: 128px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--bgfa-yellow);
  background: transparent;
  color: var(--bgfa-yellow);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.program-schedule-tab:hover,
.program-schedule-tab.is-active {
  transform: translateY(-2px);
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

.program-schedule-table {
  display: none;
}

.program-schedule-table.is-active {
  display: block;
}

.program-schedule-table-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.program-schedule-table-content {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  font-size: 16px;
}

.program-schedule-table-content thead {
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
}

.program-schedule-table-content th,
.program-schedule-table-content td {
  padding: 24px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.program-schedule-table-content th {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-schedule-table-content tbody tr {
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.3s ease;
}

.program-schedule-table-content tbody tr:hover {
  background: rgba(255, 200, 0, 0.08);
}

.program-schedule-group {
  color: var(--bgfa-white);
  font-weight: 800;
  text-transform: uppercase;
}

.program-schedule-group small {
  display: block;
  margin-top: 8px;
  color: var(--bgfa-yellow);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.program-schedule-note {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 749px) {
  .program-schedule-section {
    padding: 56px 16px 62px;
  }

  .program-schedule-title {
    font-size: 34px;
  }

  .program-schedule-subtitle {
    margin: 18px auto 28px;
    font-size: 14px;
  }

  .program-schedule-tabs {
    gap: 10px;
    margin-bottom: 28px;
  }

  .program-schedule-tab {
    min-width: 112px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }

  .program-schedule-table-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .program-schedule-table-wrapper::-webkit-scrollbar {
    display: none;
  }

  .program-schedule-table-content {
    min-width: 620px;
    font-size: 13px;
  }

  .program-schedule-table-content th,
  .program-schedule-table-content td {
    padding: 16px 14px;
  }

  .program-schedule-table-content th {
    font-size: 13px;
  }

  .program-schedule-group small {
    font-size: 11px;
  }
}

/* =========================
   PROGRAMS PAGE — WHITE CTA
========================= */

.program-white-cta-section {
  background: #fff;
  padding: 86px 20px;
  text-align: center;
  color: var(--bgfa-navy);
  position: relative;
  overflow: hidden;
}

.program-white-cta-wrap {
  width: min(100%, 900px);
  margin: 0 auto;
}

.program-white-cta-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.program-white-cta-btn {
  position: relative;
  z-index: 2;
  min-height: 48px;
  padding: 0 34px;
  border-radius: 7px;
  border: 1px solid var(--bgfa-yellow);
  background: var(--bgfa-yellow);
  color: var(--bgfa-navy);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.program-white-cta-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--bgfa-navy);
  border-color: var(--bgfa-navy);
}

.program-white-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: var(--bgfa-navy);
  z-index: -1;
  animation: programCtaPulse 2s infinite;
}

@keyframes programCtaPulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  70% {
    transform: scale(1.22);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .program-white-cta-section {
    padding: 68px 18px;
  }

  .program-white-cta-buttons {
    margin-top: 28px;
  }

  .program-white-cta-btn {
    min-height: 46px;
    padding: 0 28px;
    font-size: 12px;
  }
}

/* =========================
   PROGRAMS PAGE — OUR STORY
========================= */

.program-story-section {
  background: #0b1f3b;
  color: #fff;
  padding: 10px 20px;
  overflow: hidden;
}

.program-story-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.program-story-left {
  max-width: 720px;
}

.program-story-small {
  color: #ffc800;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.program-story-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
}

.program-story-text {
  margin-top: 22px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
}

.program-story-text p {
  margin: 0 0 14px;
}

.program-story-text strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.program-story-stats {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 44px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.program-story-stat {
  text-align: center;
}

.program-story-stat strong {
  display: block;
  color: #ffc800;
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.program-story-stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

@media (max-width: 900px) {
  .program-story-section {
    padding: 40px 18px;
  }

  .program-story-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .program-story-text {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  .program-story-stats {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }

  .program-story-stat strong {
    font-size: 38px;
  }
}

/* =========================
   PROGRAMS PAGE — MISSION & VISION
========================= */

.program-mv-section {
  background: #fff;
  color: #0b1f3b;
  padding: 40px 20px;
  overflow: hidden;
}

.program-mv-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
  text-align: center;
}

.program-mv-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.program-mv-title {
  margin: 0 0 42px;
  color: #0b1f3b;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-mv-card {
  background: #0b1f3b;
  color: #fff;
  border-radius: 16px;
  padding: 42px 34px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(11, 31, 59, 0.14);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border: 1px solid rgba(255, 200, 0, 0.16);
}

.program-mv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.55);
  box-shadow: 0 26px 65px rgba(11, 31, 59, 0.2);
}

.program-mv-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-mv-icon svg {
  width: 30px;
  height: 30px;
  stroke: #ffc800;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-mv-card h3 {
  margin: 0;
  color: #ffc800;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.program-mv-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

/* Animation stagger */
.program-mv-card:nth-child(1) {
  transition-delay: 0.08s;
}

.program-mv-card:nth-child(2) {
  transition-delay: 0.18s;
}

@media (max-width: 800px) {
  .program-mv-section {
    padding: 34px 16px;
  }

  .program-mv-title {
    font-size: 30px;
    margin-bottom: 34px;
  }

  .program-mv-grid {
    grid-template-columns: 1fr;
  }

  .program-mv-card {
    text-align: center;
    padding: 34px 24px;
  }

  .program-mv-icon {
    margin: 0 auto 22px;
  }

  .program-mv-card h3 {
    font-size: 20px;
  }

  .program-mv-card p {
    font-size: 14px;
  }
}

/* =========================
   PROGRAMS PAGE — CORE VALUES
========================= */

.program-values-section {
  background: #0b1f3b;
  color: #fff;
  padding: 70px 20px;
  overflow: hidden;
}

.program-values-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.program-values-head {
  text-align: center;
  margin-bottom: 42px;
}

.program-values-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.program-values-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.program-value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.program-value-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: #ffc800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.program-value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-value-icon svg {
  width: 100%;
  height: 100%;
  stroke: #ffc800;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-value-card h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.program-value-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.program-values-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.program-values-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.program-values-dot.is-active {
  background: #ffc800;
  transform: scale(1.15);
}

/* Animation stagger */
.program-value-card:nth-child(1) {
  transition-delay: 0.05s;
}

.program-value-card:nth-child(2) {
  transition-delay: 0.11s;
}

.program-value-card:nth-child(3) {
  transition-delay: 0.17s;
}

.program-value-card:nth-child(4) {
  transition-delay: 0.23s;
}

.program-value-card:nth-child(5) {
  transition-delay: 0.29s;
}

@media (max-width: 1100px) {
  .program-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .program-values-section {
    padding: 55px 0;
  }

  .program-values-wrap {
    padding: 0 18px;
  }

  .program-values-title {
    font-size: 30px;
  }

  .program-values-grid {
    display: flex;
    overflow-x: auto;
    gap: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .program-values-grid::-webkit-scrollbar {
    display: none;
  }

  .program-value-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
  }

  .program-values-dots {
    display: flex;
  }
}

/* =========================
   PROGRAMS PAGE — FACILITIES & EQUIPMENT
========================= */

.program-equipment-section {
  background: #fff;
  color: #0b1f3b;
  padding: 40px 20px;
  overflow: hidden;
}

.program-equipment-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.program-equipment-head {
  text-align: center;
  margin-bottom: 42px;
}

.program-equipment-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.program-equipment-title {
  margin: 0;
  color: #0b1f3b;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-equipment-desc {
  margin: 16px auto 0;
  max-width: 660px;
  color: rgba(11, 31, 59, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.program-equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.program-equipment-item {
  text-align: center;
}

.program-equipment-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 31, 59, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.program-equipment-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.program-equipment-item:hover .program-equipment-image-wrap {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 0, 0.65);
  box-shadow: 0 18px 42px rgba(11, 31, 59, 0.14);
}

.program-equipment-item:hover .program-equipment-image-wrap img {
  transform: scale(1.04);
}

.program-equipment-item h3 {
  margin: 0;
  color: #0b1f3b;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

/* Animation stagger */
.program-equipment-item:nth-child(1) {
  transition-delay: 0.04s;
}
.program-equipment-item:nth-child(2) {
  transition-delay: 0.08s;
}
.program-equipment-item:nth-child(3) {
  transition-delay: 0.12s;
}
.program-equipment-item:nth-child(4) {
  transition-delay: 0.16s;
}
.program-equipment-item:nth-child(5) {
  transition-delay: 0.2s;
}
.program-equipment-item:nth-child(6) {
  transition-delay: 0.24s;
}
.program-equipment-item:nth-child(7) {
  transition-delay: 0.28s;
}
.program-equipment-item:nth-child(8) {
  transition-delay: 0.32s;
}
.program-equipment-item:nth-child(9) {
  transition-delay: 0.36s;
}
.program-equipment-item:nth-child(10) {
  transition-delay: 0.4s;
}

@media (max-width: 1000px) {
  .program-equipment-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 620px) {
  .program-equipment-section {
    padding: 36px 16px;
  }

  .program-equipment-head {
    margin-bottom: 34px;
  }

  .program-equipment-title {
    font-size: 30px;
  }

  .program-equipment-desc {
    font-size: 14px;
  }

  .program-equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .program-equipment-item h3 {
    font-size: 12px;
  }
}

/* =========================
   CONTACT PAGE SECTION
========================= */

.contact-page-section {
  background: #0b1f3b;
  color: #fff;
  padding: 40px 20px 46px;
  overflow: hidden;
}

.contact-page-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.contact-page-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-page-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-page-card {
  background: #122a4a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-page-card:hover {
  transform: translateY(-6px);
  border-color: #ffc800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.contact-page-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  stroke: #ffc800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page-card h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-card p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.contact-page-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  background: #ffc800;
  color: #0b1f3b;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* CONTACT FORM */

.contact-form-box {
  margin: 34px auto 0;
  background: #fff;
  color: #0b1f3b;
  border-radius: 18px;
  padding: 34px;
  max-width: 900px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.contact-form-head {
  text-align: center;
  margin-bottom: 26px;
}

.contact-form-head h3 {
  margin: 0;
  color: #0b1f3b;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-head p {
  margin: 10px auto 0;
  color: rgba(11, 31, 59, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.contact-page-form {
  display: grid;
  gap: 14px;
}

.contact-form-row {
  display: flex;
  gap: 14px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(11, 31, 59, 0.14);
  border-radius: 7px;
  background: #f6f7fa;
  color: #0b1f3b;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.contact-page-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: #ffc800;
  background: #fff;
}

.contact-form-btn {
  width: fit-content;
  min-height: 46px;
  margin: 8px auto 0;
  padding: 0 30px;
  background: #ffc800;
  color: #0b1f3b;
  border: 1px solid #ffc800;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.contact-form-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  border-color: #0b1f3b;
}

@media (max-width: 900px) {
  .contact-page-section {
    padding: 36px 16px 42px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form-box {
    padding: 26px 18px;
  }

  .contact-form-row {
    flex-direction: column;
  }

  .contact-page-title {
    font-size: 30px;
  }

  .contact-form-head h3 {
    font-size: 21px;
  }
}

/* =========================
   CONTACT PAGE SECTION
========================= */

.contact-page-section {
  background: #0b1f3b;
  color: #fff;
  padding: 40px 20px 46px;
  overflow: hidden;
}

.contact-page-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.contact-page-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-page-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-page-card {
  background: #122a4a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-page-card:hover {
  transform: translateY(-6px);
  border-color: #ffc800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.contact-page-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  stroke: #ffc800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page-card h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-card p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.contact-page-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  background: #ffc800;
  color: #0b1f3b;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* CONTACT FORM */

.contact-form-box {
  margin: 34px auto 0;
  background: #fff;
  color: #0b1f3b;
  border-radius: 18px;
  padding: 34px;
  max-width: 900px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.contact-form-head {
  text-align: center;
  margin-bottom: 26px;
}

.contact-form-head h3 {
  margin: 0;
  color: #0b1f3b;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-head p {
  margin: 10px auto 0;
  color: rgba(11, 31, 59, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.contact-page-form {
  display: grid;
  gap: 14px;
}

.contact-form-row {
  display: flex;
  gap: 14px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(11, 31, 59, 0.14);
  border-radius: 7px;
  background: #f6f7fa;
  color: #0b1f3b;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}

.contact-page-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: #ffc800;
  background: #fff;
}

.contact-form-btn {
  width: fit-content;
  min-height: 46px;
  margin: 8px auto 0;
  padding: 0 30px;
  background: #ffc800;
  color: #0b1f3b;
  border: 1px solid #ffc800;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.contact-form-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  border-color: #0b1f3b;
}

@media (max-width: 900px) {
  .contact-page-section {
    padding: 36px 16px 42px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form-box {
    padding: 26px 18px;
  }

  .contact-form-row {
    flex-direction: column;
  }

  .contact-page-title {
    font-size: 30px;
  }

  .contact-form-head h3 {
    font-size: 21px;
  }
}

/* =========================
   REGISTER PAGE
========================= */

.register-page-section {
  background: #0b1f3b;
  color: #fff;
  padding: 40px 20px 48px;
  overflow: hidden;
}

.register-page-wrap {
  width: min(100%, 900px);
  margin: 0 auto;
}

.register-page-head {
  text-align: center;
  margin-bottom: 34px;
}

.register-page-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.register-page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.register-page-desc {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.register-page-form-box {
  background: #fff;
  color: #0b1f3b;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.register-page-form-box h2 {
  margin: 22px 0 14px;
  color: #0b1f3b;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 31, 59, 0.12);
  padding-bottom: 10px;
}

.register-page-form-box h2:first-child {
  margin-top: 0;
}

.register-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.register-form-row input,
.register-form-row select,
.register-form-row textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(11, 31, 59, 0.18);
  border-radius: 7px;
  background: #f7f7f7;
  color: #0b1f3b;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.register-form-row input:focus,
.register-form-row select:focus,
.register-form-row textarea:focus {
  border-color: #ffc800;
  background: #fff;
}

.register-form-row textarea {
  min-height: 95px;
  resize: vertical;
}

.register-form-row label {
  width: 100%;
  color: rgba(11, 31, 59, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.register-form-full {
  flex-direction: column;
  gap: 8px;
}

.register-consent {
  margin: 16px 0 18px;
}

.register-consent p {
  margin: 0 0 12px;
  color: rgba(11, 31, 59, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.register-consent label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b1f3b;
  font-size: 14px;
}

.register-submit-btn {
  width: 100%;
  min-height: 48px;
  background: #ffc800;
  color: #0b1f3b;
  border: 1px solid #ffc800;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.register-submit-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  border-color: #0b1f3b;
}

@media (max-width: 700px) {
  .register-page-section {
    padding: 36px 16px 42px;
  }

  .register-page-form-box {
    padding: 26px 18px;
  }

  .register-form-row {
    flex-direction: column;
    gap: 12px;
  }

  .register-page-title {
    font-size: 30px;
  }

  .register-page-form-box h2 {
    font-size: 20px;
  }
}

.program-white-cta-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   GALLERY COMING SOON PAGE
========================= */

.gallery-coming-section {
  min-height: calc(100vh - 90px);
  background: #0b1f3b;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-coming-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}

.gallery-coming-small {
  color: #ffc800;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-coming-title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-coming-text {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.gallery-coming-btn {
  min-height: 46px;
  margin-top: 28px;
  padding: 0 24px;
  border: 1px solid #ffc800;
  border-radius: 5px;
  background: #ffc800;
  color: #0b1f3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.gallery-coming-btn:hover {
  transform: translateY(-3px);
  background: transparent;
  color: #ffc800;
}

@media (max-width: 700px) {
  .gallery-coming-section {
    min-height: calc(100vh - 75px);
    padding: 34px 18px;
  }

  .gallery-coming-title {
    font-size: 38px;
  }

  .gallery-coming-text {
    font-size: 13px;
  }
}
/* =========================
   MOBILE HEADER MENU
========================= */

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 20px;
  background: #ffc800;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
  }

  .inner-page-header {
    position: relative;
  }

  .site-logo {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    margin: 0;
  }

  .site-logo img {
    width: 48px;
    height: auto;
    margin: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 20px 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(11, 31, 59, 0.15);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 1001;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 13px 0;
    color: #0b1f3b;
    border-bottom: 1px solid rgba(11, 31, 59, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 900px) {
  .register-page .register-page-section {
    padding-top: 75px;
  }
}
@media (max-width: 900px) {
  .about-page main {
    padding-top: 28px;
  }
}

/* =========================
   GALLERY ALBUMS PAGE
========================= */

.gallery-albums-section {
  background: #0b1f3b;
  color: #fff;
  padding: 44px 20px 72px;
  min-height: calc(100vh - 90px);
}

.gallery-albums-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.gallery-albums-small {
  text-align: center;
  margin-bottom: 12px;
}

.gallery-albums-title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gallery-albums-desc {
  max-width: 720px;
  margin: 18px auto 42px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
}

.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-album-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 300px;
  border-radius: 14px;
  background: #07182f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.gallery-album-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.75);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.gallery-album-image {
  position: absolute;
  inset: 0;
}

.gallery-album-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.gallery-album-card:hover .gallery-album-image img {
  transform: scale(1.06);
  opacity: 0.9;
}

.gallery-album-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 59, 0.05) 0%,
    rgba(11, 31, 59, 0.45) 42%,
    rgba(11, 31, 59, 0.94) 100%
  );
}

.gallery-album-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 22px;
}

.gallery-album-content h2 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-album-content span {
  display: inline-flex;
  margin-top: 10px;
  color: #ffc800;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-album-card:nth-child(1) {
  transition-delay: 0.05s;
}

.gallery-album-card:nth-child(2) {
  transition-delay: 0.1s;
}

.gallery-album-card:nth-child(3) {
  transition-delay: 0.15s;
}

.gallery-album-card:nth-child(4) {
  transition-delay: 0.2s;
}

.gallery-album-card:nth-child(5) {
  transition-delay: 0.25s;
}

.gallery-album-card:nth-child(6) {
  transition-delay: 0.3s;
}

.gallery-album-card:nth-child(7) {
  transition-delay: 0.35s;
}

@media (min-width: 1350px) {
  .gallery-albums-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1050px) {
  .gallery-albums-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .gallery-albums-section {
    padding: 90px 14px 52px;
  }

  .gallery-albums-title {
    font-size: 30px;
  }

  .gallery-albums-desc {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .gallery-albums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-album-card {
    min-height: 210px;
    border-radius: 11px;
  }

  .gallery-album-content {
    padding: 16px 13px;
  }

  .gallery-album-content h2 {
    font-size: 13px;
  }

  .gallery-album-content span {
    font-size: 10px;
  }
}

/* =========================
   ALBUM GALLERY PAGE
========================= */

.album-gallery-section {
  background: #0b1f3b;
  color: #fff;
  padding: 44px 20px 74px;
  min-height: calc(100vh - 90px);
}

.album-gallery-wrap {
  width: min(100%, var(--bgfa-container));
  margin: 0 auto;
}

.album-back-link {
  width: fit-content;
  margin: 0 0 28px;
  color: #ffc800;
  display: inline-flex;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.album-back-link:hover {
  color: #fff;
  transform: translateX(-3px);
}

.album-gallery-small {
  text-align: center;
  margin-bottom: 12px;
}

.album-gallery-title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.album-gallery-desc {
  max-width: 720px;
  margin: 18px auto 42px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
}

.album-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.album-photo-card {
  position: relative;
  width: 100%;
  height: 270px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #07182f;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.album-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.album-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.album-photo-card:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.album-photo-card:nth-child(1) {
  transition-delay: 0.04s;
}

.album-photo-card:nth-child(2) {
  transition-delay: 0.08s;
}

.album-photo-card:nth-child(3) {
  transition-delay: 0.12s;
}

.album-photo-card:nth-child(4) {
  transition-delay: 0.16s;
}

.album-photo-card:nth-child(5) {
  transition-delay: 0.2s;
}

.album-photo-card:nth-child(6) {
  transition-delay: 0.24s;
}

.album-photo-card:nth-child(7) {
  transition-delay: 0.28s;
}

.album-photo-card:nth-child(8) {
  transition-delay: 0.32s;
}

.album-photo-card:nth-child(9) {
  transition-delay: 0.36s;
}

.album-photo-card:nth-child(10) {
  transition-delay: 0.4s;
}

/* LIGHTBOX */

.album-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.album-lightbox.is-open {
  display: flex;
}

.album-lightbox img {
  width: auto;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.album-lightbox-close,
.album-lightbox-prev,
.album-lightbox-next {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.album-lightbox-close {
  top: 20px;
  right: 28px;
  font-size: 44px;
}

.album-lightbox-prev,
.album-lightbox-next {
  top: 50%;
  font-size: 58px;
  transform: translateY(-50%);
}

.album-lightbox-prev {
  left: 28px;
}

.album-lightbox-next {
  right: 28px;
}

.album-lightbox-close:hover,
.album-lightbox-prev:hover,
.album-lightbox-next:hover {
  color: #ffc800;
}

@media (max-width: 1050px) {
  .album-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .album-photo-card {
    height: 240px;
  }
}

@media (max-width: 760px) {
  .album-gallery-section {
    padding: 96px 14px 54px;
  }

  .album-back-link {
    margin-bottom: 22px;
  }

  .album-gallery-title {
    font-size: 30px;
  }

  .album-gallery-desc {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .album-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .album-photo-card {
    height: 180px;
    border-radius: 10px;
  }

  .album-lightbox {
    padding: 18px;
  }

  .album-lightbox-close {
    top: 14px;
    right: 18px;
    font-size: 38px;
  }

  .album-lightbox-prev,
  .album-lightbox-next {
    font-size: 44px;
  }

  .album-lightbox-prev {
    left: 14px;
  }

  .album-lightbox-next {
    right: 14px;
  }
}
