/* ============================================================
   FLY EAGLE SPORT — Global Stylesheet
   Dark / Oxblood / Silver palette
   flyeaglesport.com | KGEU Glendale, AZ
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --black:       #080808;
  --dark:        #0F0F0F;
  --dark-2:      #141414;
  --dark-3:      #222222;
  --dark-4:      #242424;
  --dark-5:      #303030;

  /* Silvers */
  --silver-dk:   #5A6270;
  --silver:      #8E9BAC;
  --silver-lt:   #D4D9E0;
  --silver-pale: #EAECF0;

  /* Oxblood — primary accent */
  --ox:          #7B1F1F;
  --ox-hover:    #922424;
  --ox-dark:     #5C1515;
  --ox-glow:     rgba(123,31,31,0.35);

  /* Amber gold accent — Arizona palette */
  --sa:          #C9A84C;
  --sa-hover:    #B8963D;

  /* Gold — same amber, kept as alias for milestones, redbird, pro-pilot pages */
  --gold:        #C9A84C;
  --gold-hover:  #B8963D;

  /* Text */
  --white:       #FFFFFF;
  --w90:         rgba(255,255,255,0.90);
  --w70:         rgba(255,255,255,0.70);
  --w50:         rgba(255,255,255,0.50);
  --w20:         rgba(255,255,255,0.20);
  --w10:         rgba(255,255,255,0.10);
  --w06:         rgba(255,255,255,0.06);

  /* Borders */
  --border:      #363636;
  --border-lt:   #484848;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius:    5px;
  --radius-lg: 10px;
  --shadow:    0 2px 16px rgba(0,0,0,0.45);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.65);
  --shadow-ox: 0 4px 20px rgba(123,31,31,0.35);

  --nav-height:     68px;
  --utility-height: 38px;
  --max-width:      1200px;
  --section-pad:    88px;
  --section-pad-sm: 52px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

/* ── Skip Navigation (WCAG 2.4.1) ──────────────────────── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--ox);
  color: #fff;
  padding: 10px 18px;
  z-index: 10000;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.38rem); }
p  { line-height: 1.7; color: #E2E5EA; }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
/* Primary — oxblood */
.btn-primary {
  background: var(--ox);
  color: var(--white);
  border: 2px solid var(--ox);
}
.btn-primary:hover {
  background: var(--ox-hover);
  border-color: var(--ox-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-ox);
}
/* Accent — same oxblood family */
.btn-accent {
  background: var(--ox);
  color: var(--white);
  border: 2px solid var(--ox);
}
.btn-accent:hover {
  background: var(--ox-hover);
  border-color: var(--ox-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-ox);
}
/* White outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--w50);
}
.btn-outline:hover {
  background: var(--w10);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}
/* Dark outline (for light sections) */
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark-5);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
/* Silver accent */
.btn-silver {
  background: var(--sa);
  color: var(--dark);
  border: 2px solid var(--sa);
  font-weight: 800;
}
.btn-silver:hover {
  background: var(--sa-hover);
  border-color: var(--sa-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,190,200,0.25);
}
/* Alias — btn-gold kept for HTML compatibility */
.btn-gold {
  background: var(--sa);
  color: var(--dark);
  border: 2px solid var(--sa);
  font-weight: 800;
}
.btn-gold:hover {
  background: var(--sa-hover);
  border-color: var(--sa-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,190,200,0.25);
}
/* nav outline alias */
.btn-outline-navy {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-lt);
}
.btn-outline-navy:hover {
  background: var(--w06);
  border-color: var(--silver-lt);
  color: var(--white);
}
.btn-sm  { padding: 10px 20px; font-size: 0.87rem; }
.btn-lg  { padding: 16px 34px; font-size: 1rem; }

/* ── Section Label ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sa);
  margin-bottom: 12px;
}
.section-label--silver { color: var(--silver-pale); }

/* ── Section Heading ──────────────────────────────────────── */
.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.section-heading h2 { margin-bottom: 12px; }
.section-heading p  { font-size: 1.07rem; }

/* ── Utility Bar ──────────────────────────────────────────── */
.utility-bar {
  background: var(--black);
  height: var(--utility-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.utility-bar__left,
.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utility-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--silver-lt);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.utility-bar__item:hover { color: var(--white); }
.utility-bar__item svg  { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.55; }
.utility-bar__divider   { width: 1px; height: 14px; background: var(--border-lt); }
.utility-bar__item--phone {
  color: var(--sa);
  font-weight: 700;
  white-space: nowrap;
}
.utility-bar__item--phone:hover { color: var(--white); }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.site-nav .container {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 42px; width: auto; filter: invert(1); }
.footer-logo img { filter: invert(1); }
.nav-logo__text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo__text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-lt);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  position: relative;
  letter-spacing: 0.03em;
}
.nav-link:hover {
  color: var(--white);
  background: var(--w06);
}
.nav-link.active {
  color: var(--sa);
  font-weight: 700;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--sa);
  border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-3);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 6px 0 8px; /* 6px top padding replaces the gap so hover zone is continuous */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item.active .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-lt);
  transition: all 0.15s;
}
.nav-dropdown a:hover {
  background: var(--w06);
  color: var(--white);
  padding-left: 24px;
}
.nav-dropdown__divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* Discovery Flight CTA in nav */
.nav-cta {
  margin-left: 10px;
  background: var(--ox) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  transition: all 0.2s !important;
  border: 1.5px solid var(--ox) !important;
}
.nav-cta:hover {
  background: var(--ox-hover) !important;
  border-color: var(--ox-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-ox) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver-lt);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 11px 24px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--silver-lt);
  transition: all 0.15s;
}
.nav-mobile a:hover { color: var(--white); background: var(--w06); }
.nav-mobile .nav-mobile-section {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dk);
  padding: 14px 24px 5px;
}
.nav-mobile .nav-mobile-cta {
  margin: 12px 24px 4px;
  background: var(--ox);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-align: center;
  padding: 13px 24px !important;
}
.nav-mobile .nav-mobile-cta:hover {
  background: var(--ox-hover) !important;
}

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-lt);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { height: 38px; width: auto; filter: invert(1); }
.footer-logo__name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.footer-logo__name span {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--silver-dk);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.93rem;
  color: var(--silver);
  margin-bottom: 20px;
  line-height: 1.65;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.91rem;
  color: var(--silver);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact-item svg { width: 13px; height: 13px; opacity: 0.5; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--silver); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sa);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.93rem;
  color: var(--silver);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p { font-size: 0.78rem; color: var(--silver-dk); }
.footer-bottom a { color: var(--silver-dk); transition: color 0.2

/* ── Who We Train Section ─────────────────────────────────── */
.who-we-train {
  background: var(--dark-3);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wwt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.wwt-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.wwt-card:hover {
  border-color: var(--ox);
  transform: translateY(-3px);
}

.wwt-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.wwt-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.wwt-card p {
  font-size: 0.93rem;
  color: var(--silver-lt);
  line-height: 1.65;
  margin: 0;
}

.wwt-cta {
  margin-top: 48px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.wwt-cta p {
  font-size: 1.05rem;
  color: var(--silver-lt);
  margin-bottom: 20px;
}

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

@media (max-width: 560px) {
  .wwt-grid { grid-template-columns: 1fr; }
}

/* ── Video Break Section ──────────────────────────────────── */
.video-break {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-break__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.55) 60%,
    rgba(8,8,8,0.35) 100%
  );
}

.video-break .container {
  position: relative;
  z-index: 2;
}

.video-break__content {
  max-width: 560px;
  padding: 40px 0;
}

.video-break__content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0 16px;
}

.video-break__content p {
  font-size: 1.05rem;
  color: var(--silver-lt);
  line-height: 1.65;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .video-break { height: 420px; }
  .video-break__content { padding: 32px 0; }
}

/* ── Footer Social Icons ──────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--silver);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  color: var(--white);
  border-color: var(--border-lt);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   METALLIC EFFECTS LAYER — v3 (clearly visible)
   ============================================================ */

/* ── 1. Button shimmer sweep ──────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
}
/* Persistent diagonal highlight bar (always visible, not just on hover) */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.00) 50%,
    rgba(0,0,0,0.12)       100%
  );
  pointer-events: none;
  z-index: 1;
}
/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 70%;
  height: 140%;
  background: linear-gradient(
    115deg,
    transparent               0%,
    rgba(255,255,255,0.10)   30%,
    rgba(255,255,255,0.55)   50%,
    rgba(255,255,255,0.10)   70%,
    transparent              100%
  );
  transform: skewX(-20deg);
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}
.btn:hover::after {
  left: 160%;
}

/* Oxblood buttons — raised metal look */
.btn-primary,
.btn-accent,
.nav-cta {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.40),
    0 4px 20px rgba(123,31,31,0.35) !important;
}
.btn-primary:hover,
.btn-accent:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -2px 0 rgba(0,0,0,0.45),
    0 8px 32px rgba(123,31,31,0.55) !important;
}

/* ── 2. Metallic gradient text on hero headings ───────────── */
.metallic-text,
.aircraft-hero h1,
.df-hero h1,
.hero__title,
.video-break__content h2 {
  background: linear-gradient(
    160deg,
    #8A96A8   0%,
    #CDD4DC  20%,
    #FFFFFF  45%,
    #E8EDF2  60%,
    #9AA4B2  80%,
    #C8D0D8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 3. Card top-edge silver rim ──────────────────────────── */
/* Real border (visible) + subtle glow on hover               */
.card,
.wwt-card,
.specs-card,
.fleet-card,
.use-card,
.program-card {
  border-top: 1px solid rgba(192,200,212,0.35) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.30);
}
.card:hover,
.wwt-card:hover,
.fleet-card:hover {
  border-top-color: rgba(210,220,232,0.65) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    var(--shadow-lg);
}

/* ── 4. Metallic section dividers ─────────────────────────── */
.divider,
hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent  0%,
    #484848      10%,
    #C8D0D8      50%,
    #484848      90%,
    transparent 100%
  );
  opacity: 0.75;
  margin: 0;
}

.divider-metallic {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8E9BAC     15%,
    #DDE2E8     50%,
    #8E9BAC     85%,
    transparent 100%
  );
  opacity: 0.75;
  margin: 0;
}

/* ── 5. Nav bar depth ─────────────────────────────────────── */
.site-nav {
  background: linear-gradient(180deg, #1A1A1A 0%, #131313 100%);
}
.site-nav.scrolled {
  box-shadow:
    0 4px 24px rgba(0,0,0,0.75),
    0 1px 0 rgba(123,31,31,0.30);
}


/* ============================================================
   ATMOSPHERIC BACKGROUND — subtle smoke / glow texture
   Applied sitewide on dark sections. Pure CSS, no images.
   ============================================================ */

/* Dark sections get a very faint radial red ember in the corner */
body {
  background-color: var(--black);
}

/* Main page body — faint deep-red glow at bottom-left corner */
body::before {
  content: '';
  position: fixed;
  bottom: -20vh;
  left: -10vw;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(
    ellipse at center,
    rgba(100,18,18,0.14) 0%,
    rgba(60,10,10,0.06)  45%,
    transparent          70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Secondary glow — top-right, cooler silver tone */
body::after {
  content: '';
  position: fixed;
  top: -15vh;
  right: -10vw;
  width: 50vw;
  height: 50vh;
  background: radial-gradient(
    ellipse at center,
    rgba(80,90,110,0.07) 0%,
    rgba(40,50,65,0.03)  50%,
    transparent          70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ensure content containers always sit above .atmo glows */
.cta-strip .container,
.about-mission .container,
.video-break .container,
.video-showcase .container,
.aircraft-cta .container,
.df-cta .container,
.about-cta .container,
.who-we-train .container,
.values .container,
.time-builders .container {
  position: relative;
  z-index: 2;
}

/* ── Accessibility ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .btn::after,
  .btn::before { transition: none; }
  body::before,
  body::after  { display: none; }
}

/* ============================================================
   MOBILE & RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── 900px — Nav collapses to hamburger ───────────────────── */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links     { display: none; }
  /* Hide nav subtitle so logo stays compact next to hamburger */
  .nav-logo__text span { display: none; }
  /* Simplify utility bar at same breakpoint — address text overflows at tablet */
  .utility-bar__left { display: none; }
}

/* ── 640px — misc ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Section padding tighter on small screens */
  :root { --section-pad: 56px; }
}

/* ── Footer grid — responsive ─────────────────────────────── */
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   MOTION & MICRO-INTERACTIONS
   ============================================================ */

/* ── Nav link animated underline ─────────────────────────── */
/* .nav-link already has position:relative — we just add the ::after */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--ox);
  transition: width 0.22s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; background: var(--sa); }
/* Don't underline the CTA button */
.nav-link.nav-cta::after { display: none; }

/* ── CFI card photo hover — subtle scale ─────────────────── */
.cfi-card__photo {
  overflow: hidden;
}
.cfi-card__photo img {
  display: block;
  width: 100%;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cfi-card:hover .cfi-card__photo img {
  transform: scale(1.05);
}

/* ── Aircraft card image hover ───────────────────────────── */
.aircraft-card {
  overflow: hidden;
}
.aircraft-card img {
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.aircraft-card:hover img {
  transform: scale(1.04);
}

/* ── Program card image hover ────────────────────────────── */
.program-card__img {
  overflow: hidden;
}
.program-card__img img {
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.program-card:hover .program-card__img img {
  transform: scale(1.04);
}

/* ── Section label — subtle entrance color pulse ─────────── */
.section-label {
  transition: color 0.3s ease;
}

/* ── Footer links — smooth underline on hover ────────────── */
.footer-links a {
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sa);
  transition: width 0.2s ease;
}
.footer-links a:hover::after { width: 100%; }

/* ── prefers-reduced-motion — silence all motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  /* Existing */
  .btn::after,
  .btn::before { transition: none; }
  body::before,
  body::after  { display: none; }

  /* New micro-interactions */
  .nav-link::after,
  .footer-links a::after { display: none; }

  .cfi-card__photo img,
  .aircraft-card img,
  .program-card__img img { transition: none; }
}
