/* 
 * STERNA ACADEMY V2 - Landing Page Styles
 * ========================================
 * Brand Colors:
 * - Primary Blue: #0D3B5E
 * - Gold/Accent:  #B8953E
 * - Dark Blue:    #0D3B5E
 * - Light Gold:   #C5A55A
 * - White:        #FFFFFF
 * - Light Gray:   #F5F5F5
 * - Dark text:    #333333
 */

:root {
  --aca-blue: #0D3B5E;
  --aca-gold: #B8953E;
  --aca-dark: #0D3B5E;
  --aca-gold-light: #C5A55A;
  --aca-white: #FFFFFF;
  --aca-gray: #F5F5F5;
  --aca-text: #333333;
  --aca-shadow: 0 8px 32px rgba(13, 59, 94, 0.10);
  --aca-shadow-hover: 0 16px 48px rgba(13, 59, 94, 0.18);
}

/* ===== ANIMATION: Fade-in on scroll ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION DIVIDER (gold bar) ===== */
.academy-section-divider {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--aca-gold), var(--aca-gold-light));
  margin: 0 auto 2.5rem auto;
  border-radius: 2px;
}

/* ===== SECTION TITLE ===== */
.academy-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--aca-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.academy-section-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: var(--aca-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ===== PRIMARY BUTTON ===== */
.btn-academy-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--aca-gold) !important;
  color: var(--aca-white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 16px rgba(184,149,62,0.25);
  cursor: pointer;
}
.btn-academy-primary:hover, .btn-academy-primary:focus, .btn-academy-primary:active {
  background: var(--aca-gold-light) !important;
  color: var(--aca-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,149,62,0.35);
  text-decoration: none;
}
.btn-academy-primary .btn-arrow {
  width: 18px;
  height: 18px;
  filter: brightness(10);
}
.btn-academy-lg {
  font-size: 1.15rem;
  padding: 18px 48px;
}

/* ===================================================================
   1. NAVBAR
   =================================================================== */
.academy-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  padding: 16px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.academy-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.academy-navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.academy-navbar-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.academy-navbar.scrolled .academy-navbar-brand img {
  /* removed brightness filter as background is always white */
}
.academy-navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.academy-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--aca-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.25s;
  text-shadow: none;
}
.academy-navbar.scrolled .academy-nav-link {
  text-shadow: none;
}
.academy-nav-link:hover {
  color: var(--aca-gold);
  text-decoration: none;
}
.academy-nav-cta {
  background: var(--aca-gold);
  color: var(--aca-white) !important;
  text-shadow: none !important;
  border-radius: 6px;
  padding: 8px 20px;
}
.academy-nav-cta:hover {
  background: var(--aca-gold-light);
  color: var(--aca-white) !important;
}

/* Navbar Toggler (hamburger) */
.academy-navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1031;
}
.academy-navbar-toggler span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--aca-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.academy-navbar.scrolled .academy-navbar-toggler span {
  background: var(--aca-dark);
}
.academy-navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.academy-navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}
.academy-navbar-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   TOP CTA BAR
   =================================================================== */
.academy-top-cta-bar {
  background: var(--aca-white);
  padding: 18px 36px;
  margin-top: 70px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
  border-bottom: 3px solid var(--aca-gold);
}
.academy-top-cta-shield {
  width: 108px;
  height: 108px;
  object-fit: contain;
}
.academy-top-cta-divider {
  width: 2px;
  height: 108px;
  background: var(--aca-gold);
}
.academy-top-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--aca-dark);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.academy-top-cta-button {
  margin-left: 12px;
  padding: 18px 43px;
  font-size: 1.45rem;
}

@media (max-width: 767px) {
  .academy-top-cta-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 15px !important;
  }
  .academy-top-cta-divider {
    width: 108px;
    height: 2px;
  }
  .academy-top-cta-button {
    margin-left: 0;
  }
}

/* ===================================================================
   2. HERO SECTION
   =================================================================== */
.academy-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--aca-white);
}
.academy-hero > * {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}
.academy-hero-bg {
  width: 100%;
  height: 100%;
  z-index: 0;
}
.academy-hero-bg img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  display: block;
}
.academy-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: none;
}
.academy-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 60px;
}
.academy-hero-shield {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.academy-hero-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--aca-gold-light);
  margin-bottom: 12px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: left;
  max-width: 400px;
  margin-left: auto;
}
.academy-hero-subtitle-wrapper {
  max-width: 400px;
  margin-left: auto;
  margin-bottom: 24px;
}
.academy-hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--aca-white) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: left;
}
.academy-hero-subtitle::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  background: var(--aca-gold);
  margin-top: 8px;
  margin-left: 0;
  margin-right: auto;
}
.academy-hero-desc {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
  max-width: 400px;
}

.academy-hero-actions {
  margin-top: 10px;
}

/* ===================================================================
   3. QUOTE SECTION
   =================================================================== */
.academy-quote-section {
  padding: 60px 0;
  background: var(--aca-white);
}
.academy-quote-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.academy-quote-flag {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.academy-quote-text {
  text-align: center;
  flex: 1;
}
.academy-quote-belief {
  font-size: 2.2rem;
  line-height: 1.6;
  color: var(--aca-text);
  margin-bottom: 8px;
  font-weight: 700;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.academy-quote-line {
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
  margin: 0 auto 40px auto;
}
.academy-quote-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  margin: 0 auto;
  letter-spacing: 1px;
  border: 1px solid var(--aca-gold);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 70%;
  max-width: 100%;
}
.academy-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--aca-gold);
  line-height: 1;
  margin-right: 16px;
  margin-top: -10px;
}

@media (max-width: 991px) {
  .academy-quote-flag {
    height: 140px;
    width: auto;
  }
  .academy-quote-main {
    font-size: 1.1rem;
  }
  .academy-quote-belief {
    font-size: 1.9rem;
  }
}

@media (max-width: 767px) {
  .academy-quote-wrapper {
    flex-direction: column;
  }
  .academy-quote-flag {
    height: 160px;
    width: auto;
  }
}

/* ===================================================================
   4. ABOUT SECTION
   =================================================================== */
.academy-about {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-about .academy-section-title {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
}
.academy-about .academy-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-about-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--aca-shadow);
}
.academy-about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.academy-about-img-wrapper:hover .academy-about-img {
  transform: scale(1.03);
}
.academy-about-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--aca-text);
}

/* ===================================================================
   4. STATS / INTERNACIONALIZACIÓN
   =================================================================== */
.academy-stats {
  padding: 70px 0;
  background: var(--aca-white);
  color: var(--aca-text);
  position: relative;
}

.academy-stats .academy-section-title {
  color: var(--aca-white);
  margin-bottom: 3rem;
}

.academy-stat-card {
  text-align: center;
  padding: 40px 30px;
  background: transparent;
  border-radius: 12px;
  border: none;
  transition: all 0.3s;
}
.academy-stat-card:hover {
  transform: translateY(-4px);
}
.academy-stat-icon {
  width: 270px;
  height: 270px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
}
.academy-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 5.25rem;
  font-weight: 800;
  color: var(--aca-dark);
  line-height: 1;
  margin-bottom: 12px;
  text-align: center;
}
.academy-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--aca-gold);
  margin-bottom: 12px;
  text-align: center;
}
.academy-stat-desc {
  font-size: 1.55rem;
  color: var(--aca-text);
  margin: 0;
  text-align: center;
}
.academy-stats-divider {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 50%;
  width: 1px;
  background: var(--aca-gold);
  transform: translateX(-50%) scaleX(0.1);
  opacity: 0.7;
}

/* ===================================================================
   5. MISSION & VISION
   =================================================================== */
.academy-mission {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-mission-card {
  background: var(--aca-white);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: var(--aca-shadow);
  border: 2px solid var(--aca-gold);
  height: 100%;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
}
.academy-mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aca-shadow-hover);
}
.academy-mission-divider {
  width: 110px;
  height: 2px;
  background: var(--aca-gold);
  margin: 0 auto 24px auto;
}
.academy-mission-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--aca-dark);
  margin-bottom: 8px;
  text-align: center;
}
.academy-mission-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--aca-text);
  margin: 0;
  text-align: center;
}

/* ===================================================================
   6. SECTORS ESTRATÉGICOS
   =================================================================== */
.academy-sectors {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-sectors .academy-section-title {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.academy-sectors .academy-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-sector-card {
  text-align: center;
  background: var(--aca-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  border-bottom: 4px solid transparent;
  height: 100%;
}
.academy-sector-card:hover {
  background: var(--aca-white);
  box-shadow: var(--aca-shadow-hover);
  border-bottom-color: var(--aca-gold);
  transform: translateY(-6px);
}
.academy-sector-img-wrapper {
  overflow: hidden;
  height: 220px;
}
.academy-sector-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.academy-sector-card:hover .academy-sector-img-wrapper img {
  transform: scale(1.05);
}
.academy-sector-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--aca-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 20px 16px;
  margin: 0;
}

/* ===================================================================
   7. WHY CANADA
   =================================================================== */
.academy-why-canada {
  padding: 80px 0 20px 0;
  background: var(--aca-white);
  color: var(--aca-dark);
}
.academy-why-canada .academy-section-title {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.academy-why-canada .academy-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-why-card {
  text-align: center !important;
  padding: 32px 16px;
  background: transparent;
  border-radius: 12px;
  border: none;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.academy-why-card:hover {
  transform: translateY(-5px);
}
.academy-why-icon {
  width: 260px;
  height: 260px;
  max-width: 140%;
  object-fit: contain;
  margin-bottom: 16px;
}
.academy-why-card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--aca-gold);
  margin: 0;
  line-height: 1.4;
  text-align: center !important;
  width: 100%;
}

/* ===================================================================
   8. LIFE PROJECT
   =================================================================== */
.academy-project {
  padding: 40px 0 80px 0;
  background: var(--aca-white);
}
.academy-project .academy-section-title {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
}
.academy-project .academy-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-project-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--aca-text);
  margin-bottom: 24px;
}
.academy-project-flags {
  display: flex;
  gap: 20px;
  align-items: center;
}
.academy-flag {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: transform 0.3s;
}
.academy-flag:hover {
  transform: scale(1.1);
}
.academy-project-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--aca-shadow);
}
.academy-project-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================================================
   9. WHY CANADA EXTENDED
   =================================================================== */
.academy-why-extended {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-why-ext-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--aca-shadow);
}
.academy-why-ext-img {
  width: 100%;
  height: auto;
  display: block;
}
.academy-why-ext-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--aca-text);
}

/* ===================================================================
   10. TESTIMONIALS
   =================================================================== */
.academy-testimonials {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-testimonials .academy-section-title {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.academy-testimonials .academy-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-testimonial-wrapper {
    position: relative;
    padding-left: 60px;
    margin: 20px 0;
}
.academy-testimonial-avatar {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: none;
    background: var(--aca-white);
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.academy-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.academy-testimonial-avatar .material-symbols-rounded {
    font-size: 60px;
    color: var(--aca-gold);
}
.academy-testimonial-card-body {
    border: 1px solid var(--aca-gold);
    background: var(--aca-white);
    padding: 30px 30px 30px 80px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.academy-testimonial-quote-icon {
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--aca-gold);
    line-height: 1;
    margin-top: -10px;
}
.academy-testimonial-content {
    display: flex;
    flex-direction: column;
}
.academy-testimonial-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--aca-dark);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}
.academy-testimonial-author-details strong {
    display: block;
    color: var(--aca-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}
.academy-testimonial-author-details span {
    display: block;
    color: var(--aca-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
}
@media (max-width: 768px) {
    .academy-testimonial-wrapper {
        padding-left: 0;
        padding-top: 60px;
        margin-top: 60px;
    }
    .academy-testimonial-avatar {
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
    }
    .academy-testimonial-card-body {
        padding: 80px 20px 30px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .academy-testimonial-quote-icon {
        margin-top: 0;
        margin-bottom: -20px;
    }
}

/* ===================================================================
   11. CTA - INSCRÍBETE
   =================================================================== */
.academy-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--aca-dark) 0%, var(--aca-blue) 100%);
  color: var(--aca-white);
  position: relative;
}
.academy-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aca-gold), var(--aca-gold-light));
}
.academy-cta-shield {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.academy-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--aca-white) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

/* ===================================================================
   12. VALUES & SESSIONS
   =================================================================== */
.academy-values {
  padding: 80px 0;
  background: var(--aca-gray);
}
.academy-values-card {
  background: var(--aca-white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--aca-shadow);
  height: 100%;
  border-top: 4px solid var(--aca-blue);
}
.academy-values-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--aca-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.academy-values-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--aca-text);
}
.academy-values-highlight {
  border-top-color: var(--aca-gold);
  background: linear-gradient(135deg, #FDF8EF, var(--aca-white));
}

/* ===================================================================
   13. COURSE
   =================================================================== */
.academy-services {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-services .academy-section-title {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.academy-services .academy-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-course-title {
  color: var(--aca-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
.academy-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--aca-text);
}

/* ===================================================================
   14. PROGRAM TIMELINE
   =================================================================== */
.academy-program {
  padding: 80px 0;
  background: var(--aca-white);
}
.academy-program-main-title {
  color: var(--aca-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.academy-program-main-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 2px;
  background-color: var(--aca-gold);
}
.academy-program-title-divider {
  display: none;
}
.academy-program-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .academy-program-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .academy-program-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.academy-program-card {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.academy-program-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.academy-program-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.academy-program-icon-wrapper {
  width: 125px;
  height: 125px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -62px auto 20px auto;
  position: relative;
  z-index: 2;
}
.academy-program-icon-wrapper .material-symbols-rounded {
  color: var(--aca-gold);
  font-size: 42px;
}
.academy-program-card h4 {
  color: var(--aca-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 24px;
  position: relative;
  display: block;
  text-align: center !important;
  width: 100%;
}
.academy-program-card h4::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #000;
}
.academy-program-card p {
  color: var(--aca-dark);
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center !important;
  width: 100%;
  margin: 0 auto;
}

/* ===================================================================
   15. FOOTER
   =================================================================== */
.academy-footer {
  background: var(--aca-white);
  color: var(--aca-text);
  padding: 60px 0 24px;
}
.academy-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.academy-footer-shield {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.academy-footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--aca-white) !important;
  margin-bottom: 20px;
}
.academy-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.academy-footer-links li {
  margin-bottom: 10px;
}
.academy-footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s;
}
.academy-footer-links a:hover {
  color: var(--aca-gold);
}
.academy-footer-social {
  display: flex;
  gap: 14px;
}
.academy-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.academy-footer-social a:hover {
  background: var(--aca-gold);
  transform: translateY(-3px);
}

.academy-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.academy-footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ===================================================================
   16. WHATSAPP BUTTON
   =================================================================== */
.academy-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.3s;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.academy-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.academy-whatsapp-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 991px) {
  .academy-navbar .container {
    justify-content: space-between;
    gap: 0;
  }
  .academy-navbar-toggler {
    display: flex;
    z-index: 1050;
  }
  .academy-navbar-toggler.active span {
    background: var(--aca-white) !important;
  }
  .academy-navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--aca-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(.22,1,.36,1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    z-index: 1040;
    display: flex;
  }
  .academy-navbar-menu.open,
  .academy-navbar-menu.active {
    right: 0;
  }
  .academy-nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-shadow: none;
    color: var(--aca-white);
  }
  .academy-nav-cta {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    display: block;
  }
  
  .academy-hero-title {
    font-size: 2.2rem;
  }
  .academy-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .academy-timeline {
    padding-left: 50px;
  }
  .academy-timeline::before {
    left: 20px;
  }
  .academy-timeline-marker {
    left: -42px;
    width: 34px;
    height: 34px;
  }
  .academy-timeline-marker span {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .academy-hero .row > div {
    text-align: center !important;
  }
  .academy-hero-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    text-align: center !important;
    margin: 0 auto 12px auto !important;
  }
  .academy-hero-subtitle-wrapper {
    margin: 0 auto 24px auto;
  }
  .academy-hero-subtitle {
    font-size: 1.1rem;
    text-align: center !important;
  }
  .academy-hero-subtitle::after {
    margin: 8px auto 0 auto !important;
  }
  .academy-hero-desc {
    font-size: 0.95rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .academy-hero-shield {
    width: 70px;
    height: 70px;
  }
  
  .academy-section-title {
    font-size: 1.5rem;
  }
  
  .academy-stat-number {
    font-size: 2.2rem;
  }
  
  .academy-mission-card {
    margin-bottom: 24px;
    padding: 28px 24px;
  }
  
  .academy-timeline-img-wrapper {
    height: 140px;
  }
  
  .academy-cta-title {
    font-size: 1.5rem;
  }

  .academy-quote-main {
    width: 100%;
    padding: 16px 12px;
    font-size: 0.95rem;
  }
  .academy-quote-mark {
    font-size: 3.5rem;
    margin-right: 10px;
    margin-top: -5px;
  }
}

@media (max-width: 575px) {
  .academy-hero-title {
    font-size: 1.5rem;
  }
  .academy-hero-content {
    padding-top: 80px;
  }
  
  .btn-academy-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  .academy-why-card {
    padding: 20px 12px;
  }
  .academy-why-icon {
    width: 110px;
    height: 110px;
  }
  .academy-why-card p {
    font-size: 0.8rem;
  }
}

/* ===================================================================
   10. FREE SESSIONS
   =================================================================== */
.academy-free-sessions .academy-section-title {
  border: 2px solid var(--aca-gold);
  padding: 15px 30px;
  display: inline-block;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.academy-free-sessions .academy-section-title:hover {
  background-color: var(--aca-gold);
  color: var(--aca-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.academy-free-sessions .academy-section-title::after {
  display: none;
}

/* ===================================================================
   17. SOCIAL ICONS
   =================================================================== */
.academy-social-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.academy-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.academy-social-icon:hover {
  transform: scale(1.1);
}
