/* =================================================================
   READ MORAL EDUCATION — PREMIUM ACADEMY THEME
   Design tokens derived from the logo: deep teal + golden-yellow swoosh.
   Signature element: the "rising path" motif (dove-wing swoosh from the
   logo mark) reused as a connective thread through hero, timeline & journey.
================================================================= */

:root {
  /* ---- Brand colors (from brief / logo) ---- */
  --teal-500: #0F8698;
  --teal-700: #0A6E80;
  --teal-900: #073C47;
  --gold-500: #E6A000;
  --gold-300: #F2C24D;
  --bg-light: #F5F8F9;
  --white: #FFFFFF;
  --ink-900: #1C1C1C;
  --ink-600: #4A4A4A;

  /* ---- Derived ---- */
  --teal-050: #EAF5F6;
  --teal-100: #D6ecee;
  --gold-050: #FFF6E2;
  --shadow-soft: 0 20px 60px -20px rgba(10, 55, 64, .25);
  --shadow-card: 0 10px 30px -12px rgba(10, 55, 64, .18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  /* ---- Type ---- */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-600);
  background: var(--bg-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  margin: 0;
}

::selection {
  background: var(--gold-300);
  color: var(--ink-900);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--teal-500), var(--teal-700));
  border-radius: 10px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =================================================================
   SHARED TYPE / TAGS
================================================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--teal-050);
  margin-bottom: 18px;
}

.section-tag--center {
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-content .section-head,
.faq-intro .section-tag {
  text-align: left;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}

.section-title em {
  color: var(--teal-500);
  font-style: normal;
  position: relative;
}

.section-lead {
  font-size: 17px;
  color: var(--ink-600);
  max-width: 56ch;
}

.section-head .section-lead {
  margin: 0 auto;
}

/* =================================================================
   BUTTONS
================================================================= */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}

.btn i {
  font-size: 13px;
  transition: transform .3s var(--ease);
}

.btn:hover i.fa-arrow-right {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(15, 134, 152, .55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(15, 134, 152, .65);
}

.btn-ghost {
  background: var(--white);
  color: var(--teal-700);
  border: 1px solid rgba(10, 110, 128, .18);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--teal-500);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .6);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 16px;
}

.btn-header {
  margin-left: 20px;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transform: scale(0);
  animation: rippleAnim .6s var(--ease);
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* =================================================================
   PRELOADER
================================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 170px;
  margin: 0 auto 26px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .35));
  animation: floatY 2.4s ease-in-out infinite;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
}

.preloader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, .2);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold-500);
  animation: loadBar 1.8s var(--ease) forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

.preloader-tag {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  letter-spacing: .08em;
  margin-top: 16px;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =================================================================
   SCROLL PROGRESS + CURSOR GLOW
================================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
  z-index: 2000;
  transition: width .1s linear;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(230, 160, 0, .10), transparent 70%);
  transform: translate(-50%, -50%);
  left: -999px;
  top: -999px;
  transition: left .12s linear, top .12s linear;
  display: none;
}

@media (hover:hover) and (pointer:fine) {
  .cursor-glow {
    display: block;
  }
}

/* =================================================================
   HEADER
================================================================= */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 92%);
  z-index: 1000;
  border-radius: 100px;
  transition: all .5s var(--ease);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .5);
}

.site-header.scrolled {
  top: 12px;
  width: min(1080px, 90%);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 12px 40px -14px rgba(10, 55, 64, .25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 24px;
}

.brand-logo {
  height: 60px;
  transition: height .4s var(--ease);
}

.site-header.scrolled .brand-logo {
  height: 40px;
}

.main-nav ul {
  display: flex;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-900);
}

.nav-link span {
  position: relative;
}

.nav-link span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .35s var(--ease);
}

.nav-link:hover span::after,
.nav-link.active-link span::after {
  width: 100%;
}

.nav-link.active-link {
  color: var(--teal-700);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: all .35s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(340px, 86%);
  background: var(--white);
  z-index: 1100;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .12);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
}

.mobile-link {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--teal-050);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
}

/* =================================================================
   HERO
================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  overflow-x: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--teal-900) 0%, var(--teal-700) 46%, var(--teal-500) 100%);
  z-index: -3;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  z-index: -2;
  background-image:
    radial-gradient(circle at 20% 20%, transparent 0 38px, rgba(255, 255, 255, .5) 39px 40px, transparent 41px),
    radial-gradient(circle at 60% 70%, transparent 0 60px, rgba(255, 255, 255, .5) 61px 62px, transparent 63px);
  background-size: 220px 220px, 340px 340px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.hero-glow--1 {
  width: 520px;
  height: 520px;
  background: rgba(230, 160, 0, .28);
  top: -160px;
  right: -120px;
  animation: driftA 12s ease-in-out infinite;
}

.hero-glow--2 {
  width: 420px;
  height: 420px;
  background: rgba(15, 134, 152, .35);
  bottom: -160px;
  left: -100px;
  animation: driftB 14s ease-in-out infinite;
}

@keyframes driftA {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 30px);
  }
}

@keyframes driftB {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -20px);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-300);
  border-radius: 50%;
  opacity: .55;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: .6;
  }

  90% {
    opacity: .4;
  }

  100% {
    transform: translateY(-620px) translateX(30px);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(230, 160, 0, .25);
}

.hero-title {
  color: var(--white);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}

.hero-title-swap {
  display: block;
  color: var(--gold-300);
  position: relative;
  height: 1.15em;
  overflow: hidden;
}

.swap-item {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(100%);
  animation: swapText 6s infinite;
}

.swap-item:nth-child(1) {
  animation-delay: 0s;
}

.swap-item:nth-child(2) {
  animation-delay: 2s;
}

.swap-item:nth-child(3) {
  animation-delay: 4s;
}

@keyframes swapText {

  0%,
  4% {
    opacity: 0;
    transform: translateY(100%);
  }

  8%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }

  33%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.hero-desc {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 9px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.hero-badge i {
  color: var(--gold-300);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  color: var(--white);
}

.hero-stat .counter,
.hero-stat .stat-suffix {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-300);
}

.hero-stat p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  max-width: 130px;
}

/* Hero collage */
.hero-right {
  position: relative;
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  height: 560px;
}

.collage-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 5px solid rgba(255, 255, 255, .15);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img--main {
  width: 78%;
  height: 74%;
  top: 0;
  right: 0;
  animation: floatY 6s ease-in-out infinite;
}

.collage-img--small {
  width: 44%;
  height: 42%;
}

.collage-img--1 {
  bottom: 0;
  left: 0;
  animation: floatY 5s ease-in-out infinite .5s;
}

.collage-img--2 {
  bottom: 6%;
  right: 2%;
  width: 38%;
  height: 30%;
  animation: floatY 5.5s ease-in-out infinite 1s;
  z-index: 3;
}

.collage-shape {
  position: absolute;
  border-radius: 50%;
}

.collage-shape--1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(230, 160, 0, .35), transparent 70%);
  top: -30px;
  left: -30px;
}

.collage-shape--2 {
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(255, 255, 255, .25);
  bottom: -20px;
  right: -40px;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .6);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  animation: floatY 5s ease-in-out infinite;
}

.float-card i {
  color: var(--teal-500);
  font-size: 20px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-050);
  border-radius: 12px;
}

.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-900);
}

.float-card span {
  font-size: 11.5px;
  color: var(--ink-600);
}

.float-card--1 {
  top: 30%;
  left: -8%;
  animation-delay: .2s;
}

.float-card--2 {
  bottom: 16%;
  left: 8%;
  animation-delay: 1s;
  z-index: 4;
}

.float-card--3 {
  top: 6%;
  right: 6%;
  animation-delay: 1.6s;
}

.collage-swoosh {
  position: absolute;
  width: 140px;
  bottom: -10px;
  left: 38%;
  opacity: .85;
  z-index: 2;
}

.scroll-indicator {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  letter-spacing: .1em;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .25);
  overflow: hidden;
}

.scroll-line span {
  display: block;
  width: 100%;
  height: 14px;
  background: var(--gold-300);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(44px);
  }
}

.section-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

@media (max-width:1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .hero-collage {
    height: 420px;
    max-width: 400px;
  }
}

/* =================================================================
   ABOUT
================================================================= */
.about {
  padding: 130px 0 110px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  overflow-x: hidden
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.about-img-wrap:hover img {
  transform: scale(1.06);
}

.about-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px dashed var(--gold-500);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: .5;
  animation: spin 40s linear infinite;
}

.about-exp-card {
  position: absolute;
  left: -10%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  max-width: 260px;
  z-index: 1000;
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-exp-card strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-900);
  display: block;
}

.about-exp-card p {
  font-size: 12.5px;
  margin: 2px 0 0;
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.mv-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease);
}

.mv-card:hover {
  transform: translateY(-6px);
}

.mv-card i {
  font-size: 22px;
  color: var(--gold-500);
  margin-bottom: 12px;
  display: block;
}

.mv-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 14px;
  margin: 0;
}

.about-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--ink-600);
}

.about-highlights i {
  color: var(--white);
  background: var(--teal-500);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* =================================================================
   WHY CHOOSE
================================================================= */
.why {
  padding: 110px 0;
  background: var(--white);
  overflow-x: hidden
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-color: var(--teal-050);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-050), var(--gold-050));
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: transform .4s var(--ease);
}

.why-card:hover .why-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--teal-500);
  color: var(--white);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  margin: 0;
}

/* =================================================================
   TIMELINE (Program Highlights)
================================================================= */
.timeline-section {
  padding: 110px 0;
  background: var(--bg-light);
  overflow-x: hidden
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.timeline-track {
  position: absolute;
  top: 14px;
  left: 4%;
  right: 4%;
  height: 3px;
  background: var(--teal-100);
  border-radius: 10px;
  z-index: 0;
}

.timeline-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
  border-radius: 10px;
  transition: width 1.4s var(--ease);
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px -4px rgba(15, 134, 152, .5);
  font-size: 11px;
}

.timeline-card {
  background: var(--white);
  padding: 22px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease);
}

.timeline-item:hover .timeline-card {
  transform: translateY(-6px);
}

.timeline-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 12.5px;
  margin: 0;
}

@media (max-width:980px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .timeline-track {
    top: 0;
    bottom: 0;
    left: 14px;
    width: 3px;
    height: auto;
    right: auto;
  }

  .timeline-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 18px;
  }

  .timeline-year {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* =================================================================
   SERVICES ZIGZAG
================================================================= */
.services {
  padding: 110px 0;
  background: var(--white);
  overflow-x: hidden
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row--reverse {
  direction: rtl;
}

.service-row--reverse>* {
  direction: ltr;
}

.service-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5/4;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.service-img:hover img {
  transform: scale(1.08);
}

.service-num {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: rgba(10, 55, 64, .55);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 100px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-050);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.service-copy h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.service-copy p {
  font-size: 15.5px;
  margin-bottom: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--teal-100);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list i {
  color: var(--teal-500);
}

@media (max-width:900px) {

  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* =================================================================
   SCHEDULE
================================================================= */
.schedule {
  padding: 110px 0;
  background: var(--bg-light);
  overflow-x: hidden
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.schedule-card {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.schedule-card--alt {
  background: linear-gradient(160deg, #8a6200, var(--gold-500));
}

.schedule-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  top: -80px;
  right: -80px;
}

.schedule-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
}

.schedule-top i {
  font-size: 26px;
  color: var(--gold-300);
}

.schedule-card--alt .schedule-top i {
  color: var(--white);
}

.schedule-top h3 {
  color: var(--white);
  font-size: 22px;
}

.schedule-days {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
}

.schedule-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  padding: 16px 20px;
  border-radius: 14px;
}

.day-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.day-time {
  font-size: 13.5px;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transport-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}

@media (max-width:800px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   JOURNEY ROADMAP
================================================================= */
.journey {
  padding: 110px 0;
  background: var(--white);
  overflow-x: hidden
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.roadmap-path {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
}

.roadmap-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.roadmap-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--white);
  border: 3px solid var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal-500);
  box-shadow: var(--shadow-card);
  transition: all .4s var(--ease);
}

.roadmap-step:hover .roadmap-icon {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-6px) scale(1.05);
}

.roadmap-step--final .roadmap-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--white);
  border-color: transparent;
}

.roadmap-step h4 {
  font-size: 14.5px;
  margin-bottom: 6px;
}

.roadmap-step p {
  font-size: 12px;
  margin: 0;
}

@media (max-width:980px) {
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

  .roadmap-path {
    display: none;
  }
}

/* =================================================================
   STATS BAND
================================================================= */
.stats-band {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
  overflow-x: hidden
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .counter,
.stat-item .stat-suffix {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--gold-300);
}

.stat-item p {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  margin: 6px 0 0;
}

@media (max-width:700px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

/* =================================================================
   GALLERY
================================================================= */
.gallery {
  padding: 110px 0;
  background: var(--bg-light);
  overflow-x: hidden
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 55, 64, .75));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

@media (max-width:800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}

/* =================================================================
   TESTIMONIALS
================================================================= */
.testimonials {
  padding: 110px 0;
  background: var(--white);
  overflow-x: hidden
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-card {
  position: relative;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.testi-rating {
  color: var(--gold-500);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testi-card p {
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--ink-900);
}

.testi-author span {
  font-size: 12.5px;
}

.testi-quote {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 28px;
  color: var(--teal-100);
}

@media (max-width:900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   FAQ
================================================================= */
.faq {
  padding: 110px 0;
  background: var(--bg-light);
  overflow-x: hidden
}

.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-900);
  text-align: left;
}

.faq-question i {
  color: var(--teal-500);
  transition: transform .35s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 14.5px;
  margin: 0;
}

@media (max-width:900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   CTA BANNER
================================================================= */
.cta-banner {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  overflow-x: hidden
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 60, 71, .92), rgba(15, 134, 152, .85));
}

.cta-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.cta-content h2 em {
  color: var(--gold-300);
  font-style: normal;
}

.cta-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =================================================================
   CONTACT
================================================================= */
.contact {
  padding: 120px 0;
  background: var(--white);
  overflow-x: hidden
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-light);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  transition: transform .35s var(--ease);
}

.contact-card:hover {
  transform: translateX(6px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--teal-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-size: 14px;
  color: var(--ink-900);
  font-family: var(--font-display);
}

.contact-card p {
  margin: 2px 0 0;
  font-size: 14px;
}

.contact-card a {
  color: var(--ink-600);
  transition: color .3s;
}

.contact-card a:hover {
  color: var(--teal-700);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 260px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%);
}

.contact-form {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 26px;
}

.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid #E3E9EA;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color .3s var(--ease);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  outline: none;
}

.form-group label {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 15px;
  color: var(--ink-600);
  transition: all .25s var(--ease);
  pointer-events: none;
  background: var(--white);
  padding: 0 4px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -9px;
  font-size: 12px;
  color: var(--teal-700);
  font-weight: 600;
}

.form-group select {
  color: var(--ink-600);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234A4A4A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-group select:valid {
  color: var(--ink-900);
}

.label-select {
  top: -9px !important;
  font-size: 12px !important;
  color: var(--teal-700) !important;
  font-weight: 600;
}

.form-error {
  display: none;
  color: #C0392B;
  font-size: 12px;
  margin-top: 6px;
  padding-left: 4px;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #C0392B;
}

.form-group.invalid .form-error {
  display: block;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--teal-700);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }
}

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
  background: linear-gradient(160deg, var(--teal-900), #062f38);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 18px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 36ch;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--teal-900);
  transform: translateY(-4px);
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: color .3s, padding-left .3s;
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 13.5px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

.newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 13px 18px;
  color: var(--white);
  font-size: 13.5px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-form button {
  width: 46px;
  background: var(--gold-500);
  color: var(--teal-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .4s var(--ease);
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* =================================================================
   REVEAL ON SCROLL
================================================================= */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal="up"] {
  transform: translateY(50px);
}

[data-reveal="left"] {
  transform: translateX(-60px);
}

[data-reveal="right"] {
  transform: translateX(60px);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

[data-reveal][data-delay="1"] {
  transition-delay: .12s;
}

[data-reveal][data-delay="2"] {
  transition-delay: .24s;
}

[data-reveal][data-delay="3"] {
  transition-delay: .36s;
}

/* =================================================================
   RESPONSIVE — NAV / GENERAL
================================================================= */
@media (max-width:980px) {

  .main-nav,
  .btn-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .contact-grid {
    gap: 50px;
  }
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-exp-card {
    position: static;
    margin-top: 0px;
    margin-left: 20px;
    max-width: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:640px) {
  .container {
    padding: 0 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-badges {
    gap: 8px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}