/* ==========================================================================
   FALCON CLUB — PROGRAMS PAGE (VERBATIM EVENTS PAGE TYPOGRAPHY SYSTEM)
   Fonts: Heading: Montserrat (600, 700, 800, 900) | Body: DM Sans (400, 500, 600, 700)
   Accents: Playfair Display (700 Italic)
   Primary Red: #c71010 | Neutrals: #FFFFFF, #FAF9F9, #EAEAEA, #D8D8D8, #555555, #111111
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens (Verbatim Events Page) */
  --red: #c71010;
  --red-dark: #B51218;
  --red-alpha-5: rgba(199, 16, 16, 0.05);
  --red-alpha-10: rgba(199, 16, 16, 0.10);
  --red-alpha-20: rgba(199, 16, 16, 0.20);

  --black: #111111;
  --white: #FFFFFF;
  --grey-50: #FAF9F9;
  --grey-100: #EAEAEA;
  --grey-200: #D8D8D8;
  --grey-500: #555555;
  --grey-800: #222222;

  /* Typography Tokens (Verbatim Events Page) */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;

  --ap-radius-sm: 12px;
  --ap-radius-md: 20px;
  --ap-radius-lg: 28px;
  --ap-radius-pill: 100px;

  --ap-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.02);
  --ap-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.06);
  --ap-shadow-red: 0 12px 30px rgba(199, 16, 16, 0.25);

  --ap-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Font Defaults (Verbatim Events Page Body Default) */
body, p, span, li, a, input, select, textarea, label, div {
  font-family: var(--font-body), 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--black);
}

/* Headings & Title Font Definitions (Verbatim Events Page) */
h1, h2, h3, h4, h5, h6, .sec-title, .ap-heading-lg, .ap-heading-md, .ap-program-title, .ap-why-title, .ap-step-title, .ap-coach-name, .ap-story-author, .ap-gallery-title, .ap-accordion-header, .ap-btn-primary, .ap-btn-secondary, .ap-pill-badge, .ap-badge-tag {
  font-family: var(--font-heading), 'Montserrat', sans-serif !important;
}

em, em.ap-accent-italic, .ap-display-italic {
  font-family: var(--font-display), 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}

.ap-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.ap-section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .ap-section-padding {
    padding: 64px 0;
  }
}

/* Custom Interactive Cursor Removed */
.ap-cursor-dot, .ap-cursor-ring {
  display: none !important;
}

/* Sporty Pill Badges (Verbatim Events Page Chip / Badge Typography) */
.ap-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: var(--red);
  color: var(--white) !important;
  border: 2.5px solid var(--black);
  border-radius: var(--ap-radius-pill);
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
  box-shadow: 4px 4px 0px var(--black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.ap-pill-badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--black);
}

/* Headings & Subheadings (Verbatim Events Page Font Sizes & Line Heights) */
.ap-heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900 !important;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.ap-heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900 !important;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.ap-subheading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400 !important;
  line-height: 1.65;
  color: var(--grey-500);
  max-width: 640px;
}

.ap-center-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

/* Buttons Typography (Verbatim Events Page Action Buttons) */
.ap-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--red);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.95rem;
  border-radius: var(--ap-radius-pill);
  border: 1px solid var(--red);
  cursor: pointer;
  transition: var(--ap-transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(199, 16, 16, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ap-btn-primary:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--ap-shadow-red);
}

.ap-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--grey-50);
  color: var(--black) !important;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.95rem;
  border-radius: var(--ap-radius-pill);
  border: 1.5px solid var(--grey-100);
  cursor: pointer;
  transition: var(--ap-transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ap-btn-secondary:hover {
  background-color: var(--grey-100);
  border-color: var(--grey-200);
  color: var(--black) !important;
  transform: translateY(-2px);
}

/* SECTION 1 — HERO */
.ap-hero-section {
  position: relative;
  padding: 140px 0 115px 0;
  background-color: var(--white) !important;
  border-bottom: 1.5px solid var(--grey-100);
  overflow: hidden;
}

.ap-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .ap-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .ap-pill-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .ap-subheading {
    margin-left: auto;
    margin-right: auto;
  }
  .ap-hero-btns {
    justify-content: center;
  }
}

.ap-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.ap-hero-image-wrap {
  position: relative;
  width: 100%;
}

.ap-hero-img-container {
  position: relative;
  width: 100%;
  border-radius: var(--ap-radius-lg);
  overflow: hidden;
  box-shadow: var(--ap-shadow-hover);
  border: 1px solid var(--grey-100);
  background-color: var(--grey-50);
}

.ap-hero-img-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ap-hero-img-container:hover img {
  transform: scale(1.03);
}

/* Floating Shuttlecock Graphics Card */
.ap-floating-shuttle {
  position: absolute;
  background-color: var(--white);
  border-radius: var(--ap-radius-md);
  padding: 16px 20px;
  box-shadow: var(--ap-shadow-hover);
  border: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: apFloat 4s ease-in-out infinite alternate;
}

.ap-floating-shuttle.pos-top-right {
  top: -24px;
  right: -20px;
}

.ap-floating-shuttle.pos-bottom-left {
  bottom: -24px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes apFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.ap-shuttle-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--red-alpha-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.ap-shuttle-info p {
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.9rem;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
}

.ap-shuttle-info span {
  font-family: var(--font-body);
  font-weight: 400 !important;
  font-size: 0.78rem;
  color: var(--grey-500);
}


/* SECTION 2 — 3D FLIP PROGRAM CARDS */
.ap-programs-section {
  background-color: var(--white) !important;
  position: relative;
}

.ap-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 44px;
}

@media (max-width: 1100px) {
  .ap-programs-grid {
    grid-template-columns: 1fr;
  }
}

/* 3D Flip Card Container */
.ap-program-card {
  perspective: 1200px;
  background-color: transparent !important;
  border: none !important;
  min-height: 440px;
  box-shadow: none !important;
  position: relative;
}

.ap-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.ap-program-card.is-flipped .ap-card-inner {
  transform: rotateY(180deg);
}

.ap-card-front,
.ap-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  border: 1px solid var(--grey-100);
  background-color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10), 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ap-program-card:hover .ap-card-front,
.ap-program-card:hover .ap-card-back {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16), 0 6px 18px rgba(0, 0, 0, 0.08);
}

.ap-card-front {
  display: grid;
  grid-template-columns: 235px 1fr;
  z-index: 2;
  background-color: var(--white);
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ap-card-front {
    grid-template-columns: 1fr;
  }
}

.ap-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 26px;
  background-color: #FAF9F9;
  border-color: var(--grey-200);
}

.ap-card-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  background: none;
  border-right: none;
}

@media (max-width: 768px) {
  .ap-card-img-wrap {
    height: 220px;
  }
}

.ap-card-img-wrap img,
.ap-card-cover-img,
.ap-sq-img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  transition: transform 0.5s ease !important;
}

.ap-program-card:hover .ap-card-img-wrap img,
.ap-program-card:hover .ap-card-cover-img,
.ap-program-card:hover .ap-sq-img {
  transform: scale(1.05) !important;
  box-shadow: none !important;
}

.ap-sq-tag {
  position: absolute;
  bottom: 10px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ap-card-body {
  padding: 28px 30px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: var(--white);
}

.ap-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
}

.ap-program-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900 !important;
  color: var(--black);
  line-height: 1.2;
}

.ap-program-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900 !important;
  color: var(--red);
  text-align: right;
  white-space: nowrap;
}

.ap-program-coach {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-bottom: 12px;
  font-weight: 600 !important;
}

.ap-program-coach strong {
  color: var(--black);
  font-weight: 700 !important;
}

.ap-program-desc-2line {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Back Side Details Styles */
.ap-back-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-100);
}

.ap-back-title {
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 1.1rem;
  color: var(--black);
}

.ap-back-close-btn {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ap-back-close-btn:hover {
  background: var(--grey-200);
  transform: scale(1.05);
}

.ap-back-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  margin-bottom: 12px;
}

.ap-back-info-item {
  display: flex;
  flex-direction: column;
}

.ap-back-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-500);
  font-weight: 700;
}

.ap-back-val {
  font-size: 0.82rem;
  color: var(--black);
  font-weight: 600;
}

.ap-back-syllabus {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.ap-syllabus-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--red);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ap-syllabus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  font-size: 0.78rem;
  color: var(--black);
}

.ap-syllabus-list li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ap-check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--red-alpha-10);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 800 !important;
}

.ap-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
}

.ap-btn-join-program,
.ap-btn-link {
  background-color: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--ap-radius-sm) !important;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(199, 16, 16, 0.25);
  margin-left: auto;
}

.ap-btn-join-program:hover,
.ap-btn-link:hover {
  background-color: var(--red-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(199, 16, 16, 0.38);
}

/* Smash to Details Button — No Popup, Pure Light Shine Sweep Effect */
.ap-btn-smash-details {
  position: relative !important;
  overflow: hidden !important;
  background-color: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 4px 14px rgba(199, 16, 16, 0.25) !important;
  margin-left: auto !important;
  transform: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Glossy Light Shine Sweep Sheen */
.ap-btn-smash-details::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  transform: skewX(-25deg) !important;
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
}

.ap-btn-smash-details:hover {
  background-color: #B51218 !important;
  color: var(--white) !important;
  transform: none !important; /* No popup or movement */
  box-shadow: 0 4px 16px rgba(199, 16, 16, 0.35) !important;
}

.ap-btn-smash-details:hover::before {
  left: 135% !important; /* Smooth glossy light shine sweep across button */
}

/* Book Private Session Button — Smash Red Color & Glossy Shining Light Sweep */
.ap-btn-book-session {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  background-color: var(--red) !important; /* Exact Smash button red (#c71010) */
  border: none !important;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(199, 16, 16, 0.28) !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease !important;
}

.ap-btn-book-session::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  transform: skewX(-25deg) !important;
  animation: apBtnShine 3.2s infinite ease-in-out !important;
  pointer-events: none !important;
}

@keyframes apBtnShine {
  0% {
    left: -75%;
  }
  25% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

.ap-btn-book-session:hover {
  background-color: #B51218 !important; /* Exact Smash button hover red */
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(199, 16, 16, 0.45) !important;
}

.ap-btn-book-session:hover::before {
  animation: none !important;
  transition: left 0.5s ease-in-out !important;
  left: 140% !important;
}

.ap-rating-stars {
  color: #FFB800;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* Champion Journey 5-Step Grid Responsive Styles */
@media (max-width: 1024px) {
  .journey-steps-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .journey-connecting-line {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .journey-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .journey-steps-grid {
    grid-template-columns: 1fr !important;
  }
}

.ap-btn-link {
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.88rem;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ap-program-card:hover .ap-btn-link {
  transform: translateX(4px);
  color: var(--red-dark);
}


/* SECTION 3 — WHY FALCON PROGRAMS */
.ap-why-section {
  background-color: var(--grey-50) !important;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.ap-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .ap-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .ap-why-grid {
    grid-template-columns: 1fr;
  }
}

.ap-why-card {
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 32px 26px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.ap-why-card:first-child,
.ap-why-card.active {
  border: 1.5px solid #d9383a;
}

.ap-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: #d9383a;
}

.ap-why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #FDE8E8;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9383a;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ap-why-card:hover .ap-why-icon-wrap {
  background-color: #FDE8E8;
  color: #d9383a;
  transform: scale(1.05);
}

.ap-why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800 !important;
  margin-bottom: 10px;
  color: #111111;
}

.ap-why-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 400 !important;
  color: #555555;
  line-height: 1.6;
}


/* SECTION 4 — SUCCESS PATH */
.ap-path-section {
  background-color: var(--white) !important;
}

.ap-timeline-wrapper {
  position: relative;
  margin-top: 40px;
}

.ap-timeline-line {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 3px;
  background-color: var(--grey-100);
  z-index: 1;
}

.ap-timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background-color: var(--red);
  transition: width 0.5s ease;
}

.ap-timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .ap-timeline-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ap-timeline-line {
    display: none;
  }
}

.ap-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  cursor: pointer;
}

.ap-step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 20px;
  transition: var(--ap-transition);
  box-shadow: var(--ap-shadow-soft);
}

.ap-timeline-step:hover .ap-step-circle,
.ap-timeline-step.active .ap-step-circle {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.12);
  box-shadow: var(--ap-shadow-red);
}

.ap-step-num {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ap-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800 !important;
  color: var(--black);
  line-height: 1.3;
}


/* SECTION 5 — MEET OUR COACHES */
.ap-coaches-section {
  background-color: var(--grey-50) !important;
  position: relative;
}

.ap-coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .ap-coaches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .ap-coaches-grid {
    grid-template-columns: 1fr;
  }
}

.ap-coach-card {
  background-color: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--ap-radius-md);
  overflow: hidden;
  transition: var(--ap-transition);
  display: flex;
  flex-direction: column;
}

.ap-coach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ap-shadow-hover);
}

.ap-coach-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--grey-50);
}

.ap-coach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ap-coach-card:hover .ap-coach-img-wrap img {
  transform: scale(1.05);
}

.ap-coach-socials {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--ap-radius-pill);
  transition: var(--ap-transition);
}

.ap-coach-card:hover .ap-coach-socials {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.ap-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s ease, color 0.2s ease;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.85rem;
}

.ap-social-icon:hover {
  background-color: var(--red);
  color: var(--white);
}

.ap-coach-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ap-coach-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800 !important;
  margin-bottom: 4px;
  color: var(--black);
}

.ap-coach-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600 !important;
  margin-bottom: 12px;
}

.ap-coach-details {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400 !important;
  color: var(--grey-500);
  line-height: 1.55;
  margin-bottom: 18px;
}

.ap-coach-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
}

.ap-coach-exp {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800 !important;
  color: var(--black);
}


/* SECTION 6 — STUDENT SUCCESS STORIES */
.ap-stories-section {
  background-color: var(--white) !important;
}

.ap-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .ap-stories-grid {
    grid-template-columns: 1fr;
  }
}

.ap-story-card {
  background-color: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--ap-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--ap-transition);
}

.ap-story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ap-shadow-hover);
  background-color: var(--white);
}

.ap-story-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ap-story-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--ap-shadow-soft);
}

.ap-story-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800 !important;
  color: var(--black);
}

.ap-story-country {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400 !important;
  color: var(--grey-500);
}

.ap-story-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400 !important;
  color: var(--black);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.ap-story-footer {
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ap-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.75rem;
  color: var(--red);
  background-color: var(--red-alpha-10);
  padding: 6px 14px;
  border-radius: var(--ap-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* SECTION 7 — TRAINING GALLERY */
.ap-gallery-section {
  background-color: var(--grey-50) !important;
}

.ap-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .ap-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ap-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.ap-gallery-item {
  position: relative;
  border-radius: var(--ap-radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
  border: 1px solid var(--grey-100);
}

.ap-gallery-item.tall {
  height: 340px;
}

.ap-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ap-gallery-item:hover img {
  transform: scale(1.08);
}

.ap-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ap-gallery-item:hover .ap-gallery-overlay {
  opacity: 1;
}

.ap-gallery-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 1.05rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.ap-gallery-item:hover .ap-gallery-title {
  transform: translateY(0);
}


/* Lightbox Modal */
.ap-lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ap-lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.ap-lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.ap-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--ap-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ap-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 900;
}


/* SECTION 8 — FAQ ACCORDION */
.ap-faq-section {
  background-color: var(--white) !important;
}

.ap-faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.ap-accordion-item {
  background-color: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--ap-radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--ap-transition);
}

.ap-accordion-item.active {
  border-color: var(--red-alpha-20);
  background-color: var(--white);
  box-shadow: var(--ap-shadow-soft);
}

.ap-accordion-header {
  padding: 24px 28px;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 1.1rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.ap-accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ap-accordion-item.active .ap-accordion-icon {
  transform: rotate(45deg);
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.ap-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400 !important;
  color: var(--grey-500);
  line-height: 1.65;
}

.ap-accordion-item.active .ap-accordion-body {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}


/* SECTION 9 — FINAL CTA */
.ap-final-cta-section {
  position: relative;
  background-color: #FFFFFF !important;
  border-top: none;
  overflow: hidden;
}

.ap-final-cta-card {
  background-color: #FFFFFF;
  border: none;
  border-radius: 0;
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.ap-final-cta-card .ap-heading-lg {
  max-width: 760px;
  margin: 0 auto 20px auto;
}

.ap-final-cta-card .ap-subheading {
  margin: 0 auto 36px auto;
}

.ap-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* SECTION 10 — FOOTER */
.ap-footer {
  background-color: var(--white) !important;
  border-top: 1px solid var(--grey-100);
  padding: 80px 0 40px 0;
}

.ap-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .ap-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .ap-footer-grid {
    grid-template-columns: 1fr;
  }
}

.ap-footer-brand p {
  font-family: var(--font-body);
  font-weight: 400 !important;
  color: var(--grey-500);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
}

.ap-footer-heading {
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ap-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ap-footer-links li {
  margin-bottom: 12px;
}

.ap-footer-links a {
  font-family: var(--font-body);
  font-weight: 400 !important;
  color: var(--grey-500);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ap-footer-links a:hover {
  color: var(--red);
}

.ap-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.ap-newsletter-input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: var(--ap-radius-pill);
  border: 1px solid var(--grey-100);
  background-color: var(--grey-50);
  font-family: var(--font-body);
  font-weight: 400 !important;
  font-size: 0.9rem;
  outline: none;
}

.ap-newsletter-input:focus {
  border-color: var(--red);
}

.ap-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 400 !important;
  font-size: 0.85rem;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 16px;
}


/* Global Modal for Booking & Enrollment */
.ap-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ap-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.ap-modal-box {
  background-color: var(--white);
  border-radius: var(--ap-radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--grey-100);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ap-modal-backdrop.open .ap-modal-box {
  transform: translateY(0) scale(1);
}

.ap-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--grey-50);
  border: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--black);
  transition: all 0.2s ease;
}

.ap-modal-close:hover {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.ap-form-group {
  margin-bottom: 18px;
}

.ap-form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--black);
}

.ap-form-input, .ap-form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--ap-radius-sm);
  border: 1px solid var(--grey-200);
  background-color: var(--grey-50);
  font-family: var(--font-body);
  font-weight: 400 !important;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.ap-form-input:focus, .ap-form-select:focus {
  border-color: var(--red);
  background-color: var(--white);
}

/* Toast Notifications */
.ap-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--black);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--ap-radius-sm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100001;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--ap-transition);
  border-left: 4px solid var(--red);
  font-family: var(--font-heading);
  font-weight: 800 !important;
  font-size: 0.9rem;
}

.ap-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Scroll Fade Up Animation */
.ap-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ap-reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ── ADDITIONAL MOBILE RESPONSIVENESS FOR PROGRAMS PAGE & MODALS ── */
@media (max-width: 576px) {
  .ap-modal-backdrop {
    padding: 12px !important;
  }
  
  .ap-modal-box {
    padding: 24px 16px !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    border-radius: 16px !important;
  }

  .ap-btn-primary, .ap-btn-secondary {
    padding: 12px 20px !important;
    font-size: 0.82rem !important;
    width: 100% !important;
  }

  .ap-cta-btns {
    flex-direction: column !important;
    width: 100% !important;
  }
}


/* ==========================================================================
   FALCON CLUB — 4 PROGRAM CARDS MOBILE RESPONSIVE HEIGHT & LAYOUT REPAIR
   Fixes cut-off text, hidden Smash to Details buttons, and card height overflow.
   ========================================================================== */

@media (max-width: 768px) {
  .ap-programs-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .ap-program-card,
  .ap-card-inner {
    min-height: 640px !important;
    height: auto !important;
    perspective: 1200px !important;
  }

  .ap-card-front,
  .ap-card-back {
    height: 100% !important;
    min-height: 640px !important;
    border-radius: 20px !important;
  }

  .ap-card-front {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .ap-card-img-wrap {
    height: 190px !important;
    min-height: 190px !important;
    flex-shrink: 0 !important;
  }

  .ap-card-body {
    padding: 16px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-grow: 1 !important;
  }

  .ap-card-back {
    padding: 20px 18px !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 480px) {
  .ap-program-card,
  .ap-card-inner,
  .ap-card-front,
  .ap-card-back {
    min-height: 620px !important;
  }

  .ap-card-img-wrap {
    height: 170px !important;
    min-height: 170px !important;
  }

  .ap-card-body {
    padding: 14px 14px !important;
  }
}
