/* ============================================================
   DESIGN TOKENS — Navy + Blue + Amber
============================================================ */
:root {
  --navy:        #0A1628;
  --navy-light:  #122040;
  --blue:        #0066CC;
  --blue-hover:  #0052A3;
  --blue-pale:   #EBF3FF;
  --blue-mid:    #D0E4F7;
  --amber:       #F5A623;
  --amber-dark:  #D4891A;
  --white:       #FFFFFF;
  --grey-bg:     #F4F7FA;
  --text:        #1A2332;
  --text-light:  #3D4F63;
  --muted:       #6B7A8D;
  --border:      #DDE4EE;
  --green-wa:    #25D366;
  --shadow-sm:   0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:   0 6px 28px rgba(10,22,40,0.12);
  --shadow-lg:   0 16px 48px rgba(10,22,40,0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;
  --transition:  0.28s ease;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section { padding: 88px 0; }
.bg-white { background: var(--white); }
.bg-grey  { background: var(--grey-bg); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; color: var(--navy); }
h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); }
h4 { font-size: 0.85rem; font-weight: 600; }

.eyebrow-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.eyebrow-label--light { color: #7FB8F0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 0.8rem; }
.section-sub { color: var(--muted); font-size: 1rem; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-amber {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-blue {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--blue);
  transition: background var(--transition), color var(--transition);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-link-blue {
  display: inline-block;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.8rem;
  transition: color var(--transition);
}
.btn-link-blue:hover { color: var(--blue-hover); }

.btn-nav-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--amber-dark); }

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,0.1);
  padding: 12px 0;
}

.nav-inner {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* invert white logo to show on transparent hero; becomes normal on scrolled white navbar */
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.navbar.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--amber); }
.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--blue); }

.btn-nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.80) 55%,
    rgba(10,22,40,0.50) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-highlight {
  color: var(--amber);
  display: inline;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero image — angled clip */
.hero-image { position: relative; }
.hero-img-clip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08);
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}
.hero-img-clip img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}
.hero-stat {
  text-align: center;
  padding: 0 3rem;
  flex: 1;
}
.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.hero-stat span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 1.5rem;
}
.marquee-track .sep { color: var(--amber); padding: 0 0.3rem; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TWO-COL LAYOUT
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col--reverse .col-text { order: 1; }
.two-col--reverse .founder-img-col { order: 2; }

/* ============================================================
   ABOUT
============================================================ */
.about-img-wrap {
  position: relative;
  display: flex;
}
.about-img-wrap .blue-bar {
  width: 5px;
  background: var(--blue);
  border-radius: 4px;
  margin-right: 16px;
  flex-shrink: 0;
}
.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-stats-row {
  display: flex;
  gap: 0;
  margin-top: 20px;
  background: var(--navy);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mini-stat {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
}
.mini-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber);
}
.mini-stat span {
  font-size: 0.68rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.col-text h2 { margin-bottom: 1rem; }
.col-text > p { color: var(--text-light); margin-bottom: 1.4rem; font-size: 0.95rem; line-height: 1.8; }

.check-list { margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   HOW TO BECOME A PILOT — STEPS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.8rem; }
.step-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   DGCA REQUIREMENTS
============================================================ */
.dgca-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.dgca-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  min-width: 160px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.dgca-stat:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.dgca-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.dgca-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  max-width: 130px;
}
.dgca-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dgca-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.45);
}
.dgca-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px 40px;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
}
.dgca-banner-text h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.dgca-banner-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.2rem;
}
.dgca-banner-text strong { color: var(--amber); }

/* ============================================================
   COURSES
============================================================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: columns;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.course-img { overflow: hidden; }
.course-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .course-img img { transform: scale(1.05); }
.course-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.course-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}
.course-tag--adv   { color: #7C3AED; background: #F3EEFF; }
.course-tag--cadet { color: #059669; background: #ECFDF5; }
.course-tag--career{ color: #DC6803; background: #FFF7ED; }
.course-body h3 { font-size: 0.98rem; margin-bottom: 0.5rem; }
.course-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.8rem; flex: 1; }
.course-feats { margin-bottom: 0.2rem; }
.course-feats li {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.course-feats li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--blue);
  font-size: 0.7rem;
}

/* ============================================================
   CADET PROGRAMS
============================================================ */
.cadet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.cadet-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cadet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.cadet-img { overflow: hidden; }
.cadet-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cadet-card:hover .cadet-img img { transform: scale(1.04); }
.cadet-body { padding: 24px 26px; }
.cadet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.airline-logo {
  height: 32px; width: auto;
  object-fit: contain;
}
.cadet-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.cadet-badge--indigo { background: #1B1F9E; }
.cadet-body h3 { margin-bottom: 0.6rem; }
.cadet-body p { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.7; }
.eligibility-box {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 1.4rem;
}
.eligibility-box strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.eligibility-box li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 4px 0 4px 18px;
  position: relative;
}
.eligibility-box li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.72rem;
}
.partner-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  flex-wrap: wrap;
}
.partner-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.partners {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.partners img { height: 24px; width: auto; object-fit: contain; opacity: 0.65; }
.partners span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

/* ============================================================
   FOUNDER
============================================================ */
.founder-img-wrap {
  display: flex;
  position: relative;
}
.founder-img-wrap .blue-bar {
  width: 5px;
  background: var(--blue);
  border-radius: 4px;
  margin-right: 16px;
  flex-shrink: 0;
}
.founder-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.founder-quote {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--navy);
  border-radius: var(--radius-md);
}
.founder-quote p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.col-text > p + p { margin-top: -0.4rem; }
.cred-list { margin: 1.5rem 0 2rem; }
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-light);
}
.cred-item:last-child { border-bottom: none; }
.cred-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 32px 26px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.why-icon-wrap {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  background: var(--navy);
  padding: 88px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cta-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.cta-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.8; }
.contact-list { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
}
.contact-item:hover {
  border-color: var(--amber);
  background: rgba(245,166,35,0.06);
}
.contact-icon { font-size: 1.3rem; }
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: 0.85rem; color: var(--white); font-family: 'Poppins', sans-serif; }
.contact-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.cta-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.cta-form h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.form-group { margin-bottom: 1rem; }
.cta-form input,
.cta-form select {
  width: 100%;
  background: var(--grey-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form input:focus,
.cta-form select:focus { border-color: var(--blue); background: var(--white); }
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.2rem;
}
.social-row { display: flex; gap: 0.5rem; }
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.social-row a:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--amber); }
.footer-col address p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.footer-col address a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col address a:hover { color: var(--amber); }
.dgca-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
  transition: opacity var(--transition);
}
.dgca-link:hover { opacity: 0.75; }
.footer-bottom { padding: 18px 0; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--amber); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .cta-inner { gap: 3rem; }
}

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

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 270px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; color: rgba(255,255,255,0.85) !important; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 100px 0 60px; }
  .hero-image { display: none; }
  .hero-img-clip img { height: 280px; }
  .hero-stats-inner { flex-wrap: wrap; gap: 0; }
  .hero-stat { padding: 12px 1.5rem; min-width: 50%; }
  .hero-stat-sep { display: none; }

  /* Grids */
  .two-col, .cadet-grid, .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse .col-text { order: 1; }
  .two-col--reverse .founder-img-col { order: 2; }
  .steps-grid, .courses-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* About image */
  .about-img-wrap img { height: 300px; }
  .founder-img-wrap img { height: 300px; }

  /* DGCA */
  .dgca-stats-row { gap: 0.7rem; }
  .dgca-stat { min-width: 140px; padding: 20px 20px; }
  .dgca-banner img { height: 280px; }
  .dgca-banner-text { padding: 24px; }

  .cta-form { padding: 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-ctas { flex-direction: column; }
  .btn-amber, .btn-outline-white { text-align: center; width: 100%; }
  .dgca-stats-row { flex-direction: column; align-items: stretch; }
  .dgca-stat { min-width: 0; }
  .partner-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
