/* ================================================
   AHARADA EDUCATION — LANDING PAGE STYLES
   Dark Aviation Theme | Navy + Black + Green Accent
   Enhanced Animations Edition
   ================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Core palette */
  --navy-900: #050a18;
  --navy-800: #0a1128;
  --navy-700: #0f1b3d;
  --navy-600: #162350;
  --navy-500: #1e3163;
  --navy-400: #2a4080;
  --navy-300: #3d5a9e;
  --navy-200: #6b88c4;
  --navy-100: #a3b8e0;

  /* Accent — green CTA */
  --green-500: #00c853;
  --green-400: #00e676;
  --green-300: #69f0ae;
  --green-glow: rgba(0, 200, 83, 0.35);

  /* Neutrals */
  --white: #ffffff;
  --gray-100: #f0f2f5;
  --gray-200: #d8dce6;
  --gray-300: #b0b8c9;
  --gray-400: #8892a4;
  --gray-500: #636e83;
  --gray-600: #3e4759;
  --text-primary: #eaf0ff;
  --text-secondary: #a3b1d0;
  --text-muted: #6b7a99;

  /* Surfaces */
  --surface-dark: rgba(10, 17, 40, 0.85);
  --surface-card: rgba(15, 27, 61, 0.6);
  --surface-glass: rgba(255, 255, 255, 0.06);
  --surface-glass-border: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-400);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  font-size: 0.85rem;
  padding: 10px 22px;
}

.btn--lg {
  font-size: 1rem;
  padding: 16px 36px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-500), #00a844);
  color: var(--white);
  box-shadow: 0 4px 20px var(--green-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  box-shadow: 0 6px 30px var(--green-glow);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--surface-glass-border);
}

.btn--outline:hover {
  background: var(--surface-glass);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--glass {
  background: var(--surface-glass);
  color: var(--text-primary);
  border: 1px solid var(--surface-glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* Ripple effect on buttons */
.btn--ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.btn--ripple:active::after {
  transform: scale(0, 0);
  opacity: 0.4;
  transition: 0s;
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 10, 24, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast);
}

.header.scrolled {
  background: rgba(5, 10, 24, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logos */
.header__logos {
  flex-shrink: 0;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-img {
  height: auto;
  object-fit: contain;
}

.logo-img--fu {
  height: 48px;
  width: auto;
}

.logo-img--ae {
  height: 150px;
  width: auto;
  filter: brightness(1.5) contrast(1.2);
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Aharada Education logo */
.logo-brand--ae {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ae-logo-icon {
  color: var(--green-400);
  flex-shrink: 0;
}

.ae-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.ae-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-400);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 10, 24, 0.94) 0%,
      rgba(10, 17, 40, 0.82) 40%,
      rgba(15, 27, 61, 0.55) 100%);
  z-index: 1;
}

/* Animated grid lines in hero */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.grid-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(0, 230, 118, 0.06), transparent);
  animation: grid-sweep 8s ease-in-out infinite;
}

.grid-line--1 {
  width: 1px;
  height: 100%;
  left: 20%;
  animation-delay: 0s;
}

.grid-line--2 {
  width: 1px;
  height: 100%;
  left: 50%;
  animation-delay: 2s;
}

.grid-line--3 {
  width: 1px;
  height: 100%;
  left: 80%;
  animation-delay: 4s;
}

.grid-line--4 {
  width: 100%;
  height: 1px;
  top: 60%;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.06), transparent);
  animation-delay: 6s;
}

@keyframes grid-sweep {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero__content {
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-400);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(0, 230, 118, 0.08);
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green-400), #4fc3f7, var(--green-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.stat-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-med);
  min-width: 140px;
}

.stat-card:hover {
  border-color: rgba(0, 230, 118, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-400);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ===================================================
   PROGRAMS
   =================================================== */
.programs {
  padding: var(--section-py) 0;
  background: var(--navy-900);
  position: relative;
}

.programs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Program Card */
.program-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
  position: relative;
}

.program-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 230, 118, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
  z-index: 0;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 118, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 200, 83, 0.08);
}

.program-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.program-card:hover .program-card__image img {
  transform: scale(1.08);
}

.program-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 27, 61, 0.8) 100%);
  pointer-events: none;
}

.program-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 200, 83, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.program-card__body {
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}

.program-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.program-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.program-card__highlights {
  margin-bottom: 24px;
}

.program-card__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 5px 0;
}

.program-card__highlights li svg {
  flex-shrink: 0;
  color: var(--green-400);
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-us {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-med);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-400), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 230, 118, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
  color: var(--green-400);
  margin-bottom: 20px;
  transition: all var(--transition-med);
}

.why-card:hover .why-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.25), rgba(0, 200, 83, 0.1));
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===================================================
   CAREER OPPORTUNITIES
   =================================================== */
.careers {
  padding: var(--section-py) 0;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.careers::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.careers__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.career-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.career-pill:hover {
  background: rgba(0, 200, 83, 0.1);
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.career-pill__icon {
  color: var(--green-400);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.careers__cta {
  text-align: center;
}

/* ===================================================
   ELIGIBILITY
   =================================================== */
.eligibility {
  padding: var(--section-py) 0;
  background: var(--navy-900);
}

.eligibility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.elig-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.elig-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.elig-card:hover::after {
  opacity: 1;
}

.elig-card:hover {
  border-color: rgba(0, 230, 118, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.elig-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
  color: var(--green-400);
  margin-bottom: 20px;
  transition: all var(--transition-med);
}

.elig-card:hover .elig-card__icon {
  transform: scale(1.1);
}

.elig-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.elig-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.elig-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
}

/* ===================================================
   APPLICATION FORM SECTION
   =================================================== */
.apply-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative;
}

.apply-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.apply-section__info {
  padding-top: 20px;
}

.apply-section__info .section-tag {
  margin-bottom: 18px;
}

.apply-section__info .section-title {
  margin-bottom: 18px;
}

.apply-section__info>p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.apply-section__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.perk:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.perk svg {
  color: var(--green-400);
  flex-shrink: 0;
}

/* Form Card */
.apply-section__form {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.apply-section__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300), #4fc3f7);
  background-size: 200% auto;
  animation: gradient-bar 3s linear infinite;
}

@keyframes gradient-bar {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.form__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.form__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.req {
  color: var(--green-400);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7a99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-700);
  color: var(--text-primary);
}

.form-group input.error,
.form-group select.error {
  border-color: #ff5252;
  box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.12);
}

.form-group input.success,
.form-group select.success {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.08);
}

.error-msg {
  display: block;
  font-size: 0.78rem;
  color: #ff5252;
  margin-top: 6px;
  min-height: 18px;
}

.form__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: success-pop 0.5s var(--ease-out);
}

@keyframes success-pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  color: var(--green-400);
  margin-bottom: 16px;
  animation: success-check 0.6s var(--ease-out) 0.2s both;
}

@keyframes success-check {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: var(--section-py) 0;
  background: var(--navy-900);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--surface-glass);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
  border-color: rgba(0, 230, 118, 0.2);
  background: rgba(0, 230, 118, 0.03);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--green-400);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-med);
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--green-400);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  padding: 60px 0 0;
  background: var(--navy-800);
  border-top: 1px solid var(--surface-glass-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand .logo-group--footer {
  margin-bottom: 16px;
}

.footer .logo-img--fu {
  height: 60px;
  width: auto;
}

.footer .logo-img--ae {
  height: 120px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 300px;
}

.footer__links h4,
.footer__programs h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links a,
.footer__programs a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer__links a:hover,
.footer__programs a:hover {
  color: var(--green-400);
  transform: translateX(4px);
}

.footer__contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact p svg {
  color: var(--green-400);
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), #00a844);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--green-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 30px var(--green-glow);
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="slide-right"] {
  transform: translateX(-40px);
}

[data-animate="scale-up"] {
  transform: scale(0.9);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
}

.particle--green {
  background: rgba(0, 230, 118, 0.2);
}

.particle--blue {
  background: rgba(79, 195, 247, 0.15);
}

.particle--white {
  background: rgba(255, 255, 255, 0.08);
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(40px) rotate(360deg);
    opacity: 0;
  }
}

/* Tilt effect for cards */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ===================================================
   AVIATION DECORATIVE ELEMENTS
   =================================================== */

/* ---------- CLOUD LAYERS ---------- */
.hero__clouds {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.cloud--1 {
  width: 500px;
  height: 120px;
  top: 15%;
  left: -100px;
  animation: cloud-drift 35s linear infinite;
}

.cloud--2 {
  width: 400px;
  height: 100px;
  top: 45%;
  right: -200px;
  animation: cloud-drift-reverse 45s linear infinite;
  animation-delay: -10s;
}

.cloud--3 {
  width: 600px;
  height: 140px;
  bottom: 20%;
  left: 40%;
  animation: cloud-drift 55s linear infinite;
  animation-delay: -20s;
  opacity: 0.5;
}

@keyframes cloud-drift {
  0% { transform: translateX(-200px); }
  100% { transform: translateX(calc(100vw + 200px)); }
}

@keyframes cloud-drift-reverse {
  0% { transform: translateX(200px); }
  100% { transform: translateX(calc(-100vw - 200px)); }
}

/* ---------- FLYING AIRPLANE + CONTRAIL ---------- */
.hero__airplane {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  animation: airplane-fly 12s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  animation-delay: 2s;
  opacity: 0;
}

.airplane__svg {
  filter: drop-shadow(0 0 12px rgba(0, 230, 118, 0.4));
  transform: rotate(-15deg);
}

.airplane__contrail {
  position: absolute;
  right: 50px;
  top: 50%;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
  transform: translateY(-50%);
  border-radius: 2px;
}

@keyframes airplane-fly {
  0% {
    left: -150px;
    top: 65%;
    opacity: 0;
    transform: scale(0.6);
  }
  5% {
    opacity: 0.9;
  }
  50% {
    top: 25%;
    opacity: 0.9;
    transform: scale(1);
  }
  95% {
    opacity: 0.9;
  }
  100% {
    left: calc(100% + 150px);
    top: 15%;
    opacity: 0;
    transform: scale(0.7);
  }
}

/* ---------- RADAR DISPLAY ---------- */
.hero__radar {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 180px;
  height: 180px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.15;
}

.radar__circle {
  position: absolute;
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.radar__circle--1 {
  width: 100%;
  height: 100%;
}

.radar__circle--2 {
  width: 66%;
  height: 66%;
}

.radar__circle--3 {
  width: 33%;
  height: 33%;
}

.radar__sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 230, 118, 0.6), transparent);
  transform-origin: 0 50%;
  animation: radar-spin 4s linear infinite;
}

.radar__sweep::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: conic-gradient(from -10deg at 0% 50%, rgba(0,230,118,0.12), transparent 40deg);
  transform-origin: 0 50%;
}

@keyframes radar-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-400);
  border-radius: 50%;
  animation: radar-blink 4s ease-in-out infinite;
}

.radar__dot--1 {
  top: 25%;
  left: 60%;
  animation-delay: 0.5s;
}

.radar__dot--2 {
  top: 55%;
  left: 72%;
  animation-delay: 1.5s;
}

.radar__dot--3 {
  top: 40%;
  left: 35%;
  animation-delay: 2.5s;
}

@keyframes radar-blink {
  0%, 80%, 100% { opacity: 0; transform: scale(0); }
  85% { opacity: 1; transform: scale(1.5); }
  90% { opacity: 0.5; transform: scale(1); }
}

/* ---------- RUNWAY DIVIDER ---------- */
.runway-divider {
  padding: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  position: relative;
  overflow: hidden;
}

.runway-divider__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 16px 0;
  position: relative;
}

.runway-divider__line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 90%);
}

.runway-light {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  opacity: 0.15;
  position: relative;
  z-index: 1;
  animation: runway-glow 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(0, 230, 118, 0.3);
}

.runway-light:nth-child(1) { animation-delay: 0s; }
.runway-light:nth-child(2) { animation-delay: 0.2s; }
.runway-light:nth-child(3) { animation-delay: 0.4s; }
.runway-light:nth-child(4) { animation-delay: 0.6s; }
.runway-light:nth-child(5) { animation-delay: 0.8s; }
.runway-light:nth-child(6) { animation-delay: 1.0s; }
.runway-light:nth-child(7) { animation-delay: 1.2s; }

@keyframes runway-glow {
  0%, 100% {
    opacity: 0.15;
    box-shadow: 0 0 4px rgba(0, 230, 118, 0.2);
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    box-shadow: 0 0 14px rgba(0, 230, 118, 0.6), 0 0 28px rgba(0, 230, 118, 0.2);
    transform: scale(1.3);
  }
}

/* ---------- FLIGHT PATH DIVIDER ---------- */
.flight-path-divider {
  position: relative;
  overflow: hidden;
  height: 60px;
}

.flight-path-svg {
  display: block;
}

.flight-path-line {
  animation: dash-flow 8s linear infinite;
}

@keyframes dash-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -56; }
}

.flight-path-plane {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: path-plane-fly 6s ease-in-out infinite;
}

.flight-path-plane--reverse {
  animation: path-plane-fly-reverse 6s ease-in-out infinite;
}

@keyframes path-plane-fly {
  0% { left: -30px; }
  100% { left: calc(100% + 30px); }
}

@keyframes path-plane-fly-reverse {
  0% { right: -30px; left: auto; }
  100% { right: calc(100% + 30px); left: auto; }
}

/* ---------- AVIATION DECORATIONS ---------- */
.aviation-deco {
  position: absolute;
  pointer-events: none;
  color: var(--text-primary);
  z-index: 0;
}

.aviation-deco--compass {
  top: 80px;
  right: 5%;
  animation: slow-rotate 60s linear infinite;
}

.aviation-deco--altimeter {
  bottom: 40px;
  left: 3%;
  animation: slow-rotate-reverse 45s linear infinite;
}

.aviation-deco--plane-bg {
  top: 50%;
  right: -50px;
  transform: translateY(-50%) rotate(-20deg);
}

.aviation-deco--footer-plane {
  position: absolute;
  top: 20px;
  right: 5%;
  transform: rotate(15deg);
  color: var(--text-primary);
  pointer-events: none;
}

.altimeter-needle {
  transform-origin: 70px 70px;
  animation: needle-wobble 6s ease-in-out infinite;
}

@keyframes slow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slow-rotate-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes needle-wobble {
  0%, 100% { transform: rotate(-20deg); }
  25% { transform: rotate(45deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(60deg); }
}

/* ---------- BOARDING PASS HEADER ---------- */
.boarding-pass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin: -40px -36px 24px;
  background: rgba(0, 230, 118, 0.06);
  border-bottom: 1px dashed rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.boarding-pass-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.boarding-pass-header__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green-400);
  text-transform: uppercase;
}

.boarding-pass-header__code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

html {
  overflow-x: hidden;
}

/* Tablet */
@media (max-width: 1024px) {
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eligibility__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero__stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  /* Container full width on mobile */
  .container {
    padding: 0 16px;
  }

  /* Header mobile */
  .header__inner {
    padding: 0 16px;
    height: 64px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-800);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 20px;
    transition: right var(--transition-med);
    border-left: 1px solid var(--surface-glass-border);
    z-index: 1000;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav .nav-link {
    font-size: 1.1rem;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Logo mobile — prevent overflow */
  .logo-group {
    gap: 8px;
  }

  .logo-img--fu {
    height: 32px;
  }

  .logo-img--ae {
    height: 80px;
  }

  .logo-divider {
    height: 28px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 100px 16px 60px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero__cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .trust-item {
    font-size: 0.82rem;
  }

  .hero__stats {
    gap: 12px;
  }

  .stat-card {
    padding: 14px 18px;
    min-width: 100px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 36px;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 5px 14px;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  /* Programs */
  .programs__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-card__image {
    height: 200px;
  }

  .program-card__body {
    padding: 20px 18px;
  }

  .program-card__title {
    font-size: 1.15rem;
  }

  .program-card__desc {
    font-size: 0.85rem;
  }

  /* Why us — single column on mobile */
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .why-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .why-card h3 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  /* Eligibility */
  .eligibility__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .elig-card {
    padding: 24px 20px;
  }

  .elig-card h3 {
    font-size: 1.05rem;
  }

  .elig-card ul li {
    font-size: 0.85rem;
  }

  /* Careers — pills wrap properly */
  .careers__grid {
    gap: 10px;
  }

  .career-pill {
    font-size: 0.8rem;
    padding: 8px 14px;
    gap: 6px;
  }

  .career-pill__icon {
    width: 14px;
    height: 14px;
  }

  .career-pill__icon svg {
    width: 14px;
    height: 14px;
  }

  /* Form */
  .apply-section__inner {
    gap: 28px;
  }

  .apply-section__info {
    padding-top: 0;
  }

  .apply-section__info .section-title {
    font-size: 1.4rem;
  }

  .apply-section__info > p {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .apply-section__perks {
    gap: 10px;
    margin-bottom: 20px;
  }

  .perk {
    font-size: 0.85rem;
  }

  .apply-section__form {
    padding: 24px 18px;
  }

  .form__title {
    font-size: 1.25rem;
  }

  .form__subtitle {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  /* FAQ */
  .faq__list {
    max-width: 100%;
  }

  .faq-item__question {
    padding: 16px 18px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-item__answer p {
    padding: 0 18px 16px;
    font-size: 0.85rem;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }

  .footer .logo-img--fu {
    height: 40px;
  }

  .footer .logo-img--ae {
    height: 80px;
  }

  .footer__tagline {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer__links h4,
  .footer__programs h4,
  .footer__contact h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .footer__links a,
  .footer__programs a {
    font-size: 0.85rem;
  }

  .footer__contact p {
    font-size: 0.82rem;
  }

  .footer__bottom {
    padding: 16px 0;
  }

  .footer__bottom p {
    font-size: 0.75rem;
  }

  /* Back to top - smaller on mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  /* Aviation elements mobile */
  .hero__radar {
    display: none;
  }

  .hero__airplane .airplane__contrail {
    width: 150px;
  }

  .hero__airplane .airplane__svg {
    width: 36px;
    height: 36px;
  }

  .aviation-deco--compass,
  .aviation-deco--altimeter,
  .aviation-deco--plane-bg {
    display: none;
  }

  .runway-divider__line {
    gap: 18px;
  }

  .runway-light {
    width: 6px;
    height: 6px;
  }

  .flight-path-divider {
    height: 40px;
  }

  .boarding-pass-header {
    margin: -24px -18px 18px;
    padding: 8px 12px;
  }

  .boarding-pass-header__label {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  .boarding-pass-header__code {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .cloud--3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero__inner {
    padding: 90px 14px 50px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .btn--lg {
    padding: 13px 24px;
    font-size: 0.88rem;
  }

  .program-card__image {
    height: 170px;
  }

  .hero__stats {
    flex-direction: column;
  }

  .stat-card {
    min-width: auto;
  }

  .career-pill {
    font-size: 0.75rem;
    padding: 7px 12px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.show {
  display: block;
}