/* ============================================================
   AVANTA — home.css
   Home Page Styles
   ============================================================ */

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroScale 20s ease-in-out infinite alternate;
}

@keyframes heroScale {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, rgb(124 0 0 / 88%) 0%, rgb(59 7 7 / 26%) 40%, rgb(90 13 13 / 0%) 70%, rgb(28 6 6 / 88%) 100%);
}

.hero__bg-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy-dark), transparent);
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) translateX(40px) scale(0.5);
  }
}

/* Aircraft Trail */
.hero__aircraft {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: aircraftFly 8s ease-in-out 1s forwards infinite;
}

.hero__aircraft svg {
  width: 60px;
  height: 60px;
  fill: rgba(212, 175, 55, 0.6);
  stroke: none;
}

@keyframes aircraftFly {
  0% {
    opacity: 0;
    top: 30%;
    left: -5%;
    transform: rotate(-15deg);
  }
  10% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    top: 10%;
    left: 105%;
    transform: rotate(-8deg);
  }
}

/* Trail */
.hero__trail {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  z-index: 1;
  pointer-events: none;
  animation: trailFade 8s ease-in-out 1s forwards infinite;
}

@keyframes trailFade {
  0%,
  100% {
    opacity: 0;
    width: 0;
    top: 32%;
    left: -5%;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  99% {
    width: 110%;
    top: 12%;
    left: -5%;
  }
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 10;
  padding: 100px 0 100px;
  width: 100%;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}

.hero__watch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color var(--duration-fast);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.hero__watch-btn:hover {
  color: var(--gold);
}

.hero__watch-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease);
  backdrop-filter: blur(4px);
}

.hero__watch-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  margin-left: 2px;
}

.hero__watch-btn:hover .hero__watch-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.hero__watch-btn:hover .hero__watch-icon svg {
  fill: var(--navy);
}

/* Stat cards on hero */
.hero__stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 120px;
  transition: all var(--duration-base) var(--ease);
}

.hero__stat:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
}

.hero__stat-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.hero__stat-num {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Hero Right - Glass Card */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: var(--white);
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.hero__card-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.hero__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card-row:last-child {
  border-bottom: none;
}

.hero__card-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.hero__scroll-text {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */
.stats-section {
  background: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 120%,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
}

.stats-section__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.stats-item {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  transition: background var(--duration-base);
}

.stats-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-item:last-child::after {
  display: none;
}

.stats-item:hover {
  background: rgba(212, 175, 55, 0.05);
}

.stats-item__icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.stats-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.stats-item__suffix {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1.3;
}

.stats-item__label {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.stats-item__bar {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 1s var(--ease);
}

.stats-item.counted .stats-item__bar {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════
   ABOUT PREVIEW
   ═══════════════════════════════════════════ */
.about-preview {
  background: var(--white);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview__image-collage {
  position: relative;
  height: 540px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.about-img--main {
  width: 72%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-img--accent {
  width: 45%;
  height: 55%;
  bottom: -50px;
  right: -20px;
  border: 4px solid var(--navy-dark);
}

.about-preview__experience {
  position: absolute;
  bottom: 10%;
  left: 56%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 10;
}

.about-preview__exp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-preview__exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

.about-preview__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
}

.about-feature__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-feature__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PROGRAMS SECTION
   ═══════════════════════════════════════════ */
.programs-section {
  background: var(--off-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-slow) var(--ease);
  position: relative;
  border: 1px solid var(--gray-100);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.program-card__image-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.program-card__image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}

.program-card:hover .program-card__image {
  transform: scale(1.08);
}


.program-card__image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(7, 27, 59, 0.7) 100%
  );
}

.program-card__duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.program-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
}

.program-card__body {
  padding: 28px;
}

.program-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.program-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.program-card__highlights {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card__highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.program-card__highlights li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--gold-pale);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.program-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.program-card__eligibility {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.program-card__eligibility span {
  font-weight: 600;
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all var(--duration-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--duration-base) var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--duration-base) var(--ease);
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-dark);
  transition: all var(--duration-base);
}

.why-card:hover .why-card__icon {
  background: var(--navy);
  border-color: var(--navy);
}

.why-card:hover .why-card__icon svg {
  stroke: var(--gold);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--off-white);
  overflow: hidden;
}

.swiper-testimonials {
  overflow: visible;
  padding-bottom: 48px !important;
}

.swiper-testimonials .swiper-slide {
  height: auto;
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.4s var(--ease);
}

.swiper-testimonials .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-testimonials .swiper-slide-prev,
.swiper-testimonials .swiper-slide-next {
  opacity: 0.75;
  transform: scale(0.97);
}

.swiper-pagination-bullet {
  background: var(--navy) !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ═══════════════════════════════════════════
   PARTNER LOGOS
   ═══════════════════════════════════════════ */
.partners-section {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.partners-section::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.partners-section::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.partners-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  margin: 0 10px;
  transition: all var(--duration-base);
  background: var(--white);
  overflow: hidden;
  padding: 12px 20px;
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--duration-base);
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.partner-logo-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-400);
  transition: color var(--duration-base);
}

.partner-logo:hover .partner-logo-text {
  color: var(--navy);
}

/* ═══════════════════════════════════════════
   ENROLLMENT CTA
   ═══════════════════════════════════════════ */
.enroll-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.enroll-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(212, 175, 55, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(26, 63, 112, 0.5) 0%,
      transparent 60%
    );
}

.enroll-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.enroll-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.enroll-cta__title em {
  color: var(--gold);
  font-style: normal;
}

.enroll-cta__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 560px;
}

.enroll-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Countdown Timer */
.countdown {
  display: flex;
  gap: 16px;
  align-items: center;
}

.countdown__item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  min-width: 80px;
  backdrop-filter: blur(8px);
}

.countdown__num {
  font-family: var(--font-accent);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown__label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.countdown__sep {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin-top: -8px;
}

.countdown__title {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   GALLERY PREVIEW
   ═══════════════════════════════════════════ */
.gallery-section {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}

.gallery-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: marquee-gallery 35s linear infinite;
  width: max-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.gallery-item {
  width: 350px;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(7, 27, 59, 0.7));
  opacity: 0;
  transition: opacity var(--duration-base);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__label {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   BLOG PREVIEW
   ═══════════════════════════════════════════ */
.blog-preview {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all var(--duration-base) var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.blog-card__image-wrap {
  height: 200px;
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.08);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--duration-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card__meta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
}

.blog-card__meta-sep {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */
.faq-section {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow var(--duration-fast);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--duration-fast);
  user-select: none;
}

.faq-item.open .faq-item__q {
  color: var(--gold);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-base) var(--ease);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  transition: transform var(--duration-base) var(--ease);
}

.faq-item.open .faq-item__icon {
  background: var(--gold);
}

.faq-item.open .faq-item__icon svg {
  stroke: var(--navy);
  transform: rotate(45deg);
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 24px;
  transition:
    grid-template-rows 0.4s var(--ease),
    padding 0.4s var(--ease);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item__a-inner {
  overflow: hidden;
}

.faq-item.open .faq-item__a {
  grid-template-rows: 1fr;
  padding: 0 24px 20px;
}

/* ═══════════════════════════════════════════
   HOME PAGE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__right {
    display: none;
  }
  .stats-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-item:nth-child(2)::after {
    display: none;
  }
  .about-preview__grid {
    gap: 48px;
  }
  .enroll-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    letter-spacing: -0.5px;
  }
  .hero__stats {
    gap: 10px;
  }
  .hero__stat {
    min-width: 100px;
    padding: 12px 14px;
  }
  .stats-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-preview__grid {
    grid-template-columns: 1fr;
  }
  .about-preview__image-collage {
    height: 360px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    width: 280px;
    height: 200px;
  }
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }
}
