/* ============================================================
   SKYRISE AIR — STYLESHEET
   Design system: dark navy + electric blue + gold accent
   Fonts: Montserrat (headings) + Inter (body)
   ============================================================ */

/* ---- CSS TOKENS ---- */
:root {
  --bg:          #050B18;
  --bg-alt:      #070F1F;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-h:   rgba(255,255,255,0.07);
  --primary:     #2563EB;
  --primary-h:   #1D4ED8;
  --primary-dim: rgba(37,99,235,0.14);
  --accent:      #E8A61B;
  --accent-h:    #D4921A;
  --accent-dim:  rgba(232,166,27,0.14);
  --text:        #F0F4FF;
  --text-muted:  #94A3B8;
  --text-dim:    #4A5A72;
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.14);
  --ff-head:     'Montserrat', sans-serif;
  --ff-body:     'Inter', sans-serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --t:           0.28s;
  --section-py:  96px;
  --max-w:       1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.accent-text { color: var(--accent); }
.body-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 18px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.mt-8 { margin-top: 32px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 13px; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-h); box-shadow: 0 8px 28px rgba(37,99,235,.38); }

.btn-accent { background: var(--accent); color: #0A0A10; font-weight: 700; }
.btn-accent:hover { background: var(--accent-h); box-shadow: 0 8px 28px rgba(232,166,27,.38); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-dim); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.45); }

.btn-lg { font-size: 15px; padding: 15px 34px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: padding var(--t) var(--ease),
              background var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(5,11,24,.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,.28);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
  /* Smooth size on nav scroll */
  transition: width var(--t) var(--ease), height var(--t) var(--ease);
}
.navbar.scrolled .logo-img {
  width: 36px;
  height: 36px;
}
.logo-img-footer {
  width: 52px;
  height: 52px;
}
.nav-logo em { color: var(--accent); font-style: normal; }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.68);
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color var(--t);
}
.nav-phone i { color: var(--accent); font-size: 11px; }
.nav-phone:hover { color: #fff; }
.nav-cta { font-size: 13px; padding: 10px 20px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Sky gradient — dark night at top, warm dawn at horizon */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #010711 0%,
    #020C1E 8%,
    #031628 18%,
    #051F3C 30%,
    #082E57 44%,
    #0A3D70 58%,
    #0E5490 70%,
    #7A3810 80%,
    #C4600E 87%,
    #E8921A 93%,
    #F5C840 100%
  );
  z-index: 0;
}

#starsCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero-horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: radial-gradient(ellipse 70% 90% at 50% 100%, rgba(240,140,20,.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-haze {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 24%;
  background: linear-gradient(to top, rgba(5,11,24,.5), transparent);
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 130px 32px 110px;
  margin-left: max(32px, calc((100vw - 1200px) / 2 + 32px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
  padding: 7px 16px;
  border-radius: 40px;
  font-family: var(--ff-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-headline .accent-text { display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,.68);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 38px;
}

.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.hstat { display: flex; flex-direction: column; }
.hstat strong { font-family: var(--ff-head); font-size: 17px; font-weight: 800; color: #fff; }
.hstat span { font-size: 11.5px; color: rgba(255,255,255,.48); font-weight: 500; letter-spacing: .03em; margin-top: 2px; }
.hstat-divider { width: 1px; height: 34px; background: rgba(255,255,255,.14); }

/* ── Cessna 150 PNG — right panel of hero ── */
.hero-plane {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-52%);
  width: min(340px, 28vw);
  z-index: 5;
  pointer-events: none;  /* enabled by JS after fly-in */
  overflow: visible;
}

/* In cursor-follow mode the plane goes position:fixed so it can
   roam anywhere on the page. Body class hides the cursor. */
body.plane-follow { cursor: none !important; }
body.plane-follow * { cursor: none !important; }

.hero-plane-float {
  animation:
    hpFlyIn  4.4s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    hpFloat  10s  ease-in-out infinite 4.7s;
  filter:
    drop-shadow(0 28px 56px rgba(0,0,0,0.70))
    drop-shadow(0 0 60px rgba(37,99,235,0.15));
}

.hero-plane-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────────────────────
   FLY-IN  (runs once on page load)
───────────────────────────────────────────────────────────── */
@keyframes hpFlyIn {
  0% {
    transform: translateX(900px) translateY(-20px) scale(0.25) rotate(5deg);
    opacity: 0;
  }
  6%  { opacity: 1; }
  100% {
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────
   FLOAT  (loops after fly-in)
   More visible altitude change: ±30 px vertical travel with
   gentle pitch & scale to mimic a real phugoid oscillation.
───────────────────────────────────────────────────────────── */
@keyframes hpFloat {
  0%   { transform: translateY(0px)   scale(1)      rotate(0deg);    }
  15%  { transform: translateY(-12px) scale(1.011)  rotate(-0.9deg); }
  38%  { transform: translateY(-30px) scale(1.024)  rotate(0.5deg);  }
  55%  { transform: translateY(-22px) scale(1.017)  rotate(1.0deg);  }
  78%  { transform: translateY(-8px)  scale(1.006)  rotate(-0.5deg); }
  100% { transform: translateY(0px)   scale(1)      rotate(0deg);    }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-hint span {
  font-size: 10.5px;
  font-family: var(--ff-head);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.scroll-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  animation: bobDown 2.2s ease-in-out infinite;
}
@keyframes bobDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
   ============================================================ */
.fade-in-down {
  opacity: 0;
  animation: fadeInDown .9s var(--ease) var(--delay, 0s) forwards;
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp .9s var(--ease) var(--delay, 0s) forwards;
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  position: relative;
  z-index: 10;
}
.sbar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sbar-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.sbar-val {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}
.sbar-val small { font-size: 1.4rem; font-weight: 700; }
.sbar-label { font-size: 12.5px; color: var(--text-muted); font-weight: 500; letter-spacing: .02em; }
.sbar-sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}
.check-list li i { color: var(--accent); font-size: 16px; flex-shrink: 0; }

/* About visual card */
.about-visual { display: flex; justify-content: center; }
.av-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
.av-sky {
  background: linear-gradient(180deg, #010C1E 0%, #0A2645 65%, #112F54 100%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.av-compass {
  width: 160px; height: 160px;
  animation: spinCompass 30s linear infinite;
}
@keyframes spinCompass { to { transform: rotate(360deg); } }

.av-info { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; }
.av-badge {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--accent);
  font-size: 17px;
}
.av-badge > div { display: flex; flex-direction: column; gap: 2px; }
.av-badge strong { font-family: var(--ff-head); font-size: 13.5px; font-weight: 700; color: var(--text); }
.av-badge span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-section { background: var(--bg-alt); }

/* 3×2 uniform grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Program card base */
.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background var(--t), border-color var(--t), transform var(--t) var(--ease), box-shadow var(--t);
}
.prog-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* Featured */
.prog-featured {
  background: linear-gradient(145deg, rgba(37,99,235,.13) 0%, rgba(37,99,235,.05) 100%);
  border-color: rgba(37,99,235,.28);
}
.prog-featured:hover { border-color: rgba(37,99,235,.5); box-shadow: 0 20px 60px rgba(37,99,235,.18); }

/* Discovery */
.prog-discovery { border-color: rgba(232,166,27,.2); }
.prog-discovery:hover { border-color: rgba(232,166,27,.4); box-shadow: 0 20px 60px rgba(232,166,27,.12); }

.prog-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--ff-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
}

/* Icons */
.prog-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 22px;
}
.prog-icon-blue { background: var(--primary-dim); color: #60A5FA; }
.prog-icon-subtle { background: rgba(255,255,255,.07); color: var(--text-muted); }
.prog-icon-gold { background: var(--accent-dim); color: var(--accent); }

.prog-card h3 {
  font-family: var(--ff-head);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 10px;
}
.prog-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.prog-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  flex: 1;
}
.prog-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(240,244,255,.74);
}
.prog-features li i {
  font-size: 10px;
  color: var(--primary);
  width: 14px;
  flex-shrink: 0;
}
.prog-featured .prog-features li i { color: #60A5FA; }
.prog-discovery .prog-features li i { color: var(--accent); }

.prog-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 13px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: 22px;
}
.prog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-head);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.prog-meta span i { color: var(--accent); font-size: 10px; }

.discovery-pull {
  font-size: 13.5px;
  color: var(--accent);
  font-style: italic;
  text-align: center;
  padding: 14px;
  background: var(--accent-dim);
  border-radius: 9px;
  margin-bottom: 22px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   AIRCRAFT
   ============================================================ */
.aircraft-section { background: var(--bg); }
.aircraft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Aircraft photo layout */
.ac-visual { display: flex; justify-content: center; }

.ac-photos {
  position: relative;
  width: 100%;
  max-width: 500px;
  /* Extra bottom padding so the floating secondary card doesn't clip */
  padding-bottom: 60px;
}

/* Main photo */
.ac-photo-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  aspect-ratio: 4/3;
}
.ac-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .6s var(--ease);
}
.ac-photos:hover .ac-photo-main img { transform: scale(1.03); }

/* Bottom gradient overlay + badge */
.ac-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  pointer-events: none;
}
.ac-photo-badge {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.ac-tail {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .06em;
}
.ac-loc {
  font-family: var(--ff-head);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.ac-loc i { color: var(--accent); margin-right: 3px; font-size: 10px; }

/* Floating secondary photo */
.ac-photo-secondary {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 46%;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  aspect-ratio: 3/4;
}
.ac-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s var(--ease);
}
.ac-photos:hover .ac-photo-secondary img { transform: scale(1.04); }
.ac-photo-sec-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 10px 9px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  font-family: var(--ff-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-align: center;
  pointer-events: none;
}

/* Specs */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 34px;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 16px;
  transition: border-color var(--t), background var(--t);
}
.spec-item:hover { border-color: rgba(37,99,235,.3); background: rgba(37,99,235,.05); }
.spec-icon {
  width: 34px; height: 34px;
  background: var(--primary-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #60A5FA;
  flex-shrink: 0;
}
.spec-item > div { display: flex; flex-direction: column; gap: 2px; }
.spec-item strong { font-family: var(--ff-head); font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.3; }
.spec-item span { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   WHY SKYRISE AIR
   ============================================================ */
.why-section { background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  transition: background var(--t), border-color var(--t), transform var(--t) var(--ease), box-shadow var(--t);
}
.why-card:hover {
  background: var(--bg-card-h);
  border-color: rgba(37,99,235,.26);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.32);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--primary-dim);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 18px;
  transition: background var(--t), color var(--t);
}
.why-card:hover .why-icon { background: var(--primary); color: #fff; }
.why-card h4 { font-family: var(--ff-head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.why-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020D1E 0%, #0B2550 40%, #0D3268 70%, #020D1E 100%);
}
#ctaCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}
.cta-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 32px;
}
.cta-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.74;
  margin-bottom: 38px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 44px;
  align-items: start;
}
.loc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.loc-icon {
  width: 40px; height: 40px;
  background: var(--primary-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primary);
  flex-shrink: 0;
}
.loc-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.loc-item p { font-size: 14.5px; color: var(--text); line-height: 1.65; }
.loc-item a { color: var(--primary); transition: color var(--t); }
.loc-item a:hover { color: #93C5FD; }

.loc-airport { border-top: 1px solid var(--border); padding-top: 22px; }
.airport-row { display: flex; align-items: center; gap: 16px; }
.airport-icao {
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .04em;
  line-height: 1;
}
.airport-row strong { display: block; font-family: var(--ff-head); font-size: 14px; font-weight: 700; color: var(--text); }
.airport-row span { font-size: 12px; color: var(--text-muted); }

/* Map card */
.loc-map { display: flex; align-items: stretch; }
.map-card {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #010C1E 0%, #092440 50%, #081C30 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-ripple {
  position: absolute;
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ripplePulse 3.5s ease-out infinite;
}
.r1 { width: 120px; height: 120px; }
.r2 { width: 210px; height: 210px; animation-delay: 1.1s; }
.r3 { width: 320px; height: 320px; animation-delay: 2.2s; border-color: rgba(37,99,235,.08); }
@keyframes ripplePulse {
  0%   { opacity:.7; transform: translate(-50%,-50%) scale(.85); }
  100% { opacity:0;  transform: translate(-50%,-50%) scale(1.2); }
}
.map-body {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px;
}
.map-icon { font-size: 48px; color: var(--accent); margin-bottom: 6px; }
.map-body h4 { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; }
.map-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}
.contact-left p { margin-top: 12px; }

.contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t);
}
.contact-link:hover { color: var(--primary); }
.clink-icon {
  width: 38px; height: 38px;
  background: var(--primary-dim);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.contact-link:hover .clink-icon { background: var(--primary); color: #fff; }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group .opt { font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 10px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 15px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(37,99,235,.05);
}
.form-group select option { background: #0A1628; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 86px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #020810;
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo em { color: var(--accent); font-style: normal; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.72; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.fsoc {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t) var(--ease);
}
.fsoc:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

.footer h4 {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul li a { font-size: 13.5px; color: var(--text-muted); transition: color var(--t); }
.footer ul li a:hover { color: var(--primary); }

.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 11px;
}
.footer-contact-col i { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-col a { color: var(--text-muted); transition: color var(--t); }
.footer-contact-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.25); }
.footer-cert { color: rgba(255,255,255,.18) !important; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger siblings */
.programs-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(3) { transition-delay: .08s; }
.programs-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(4),
.why-grid .reveal:nth-child(5) { transition-delay: .16s; }
.programs-grid .reveal:nth-child(4) { transition-delay: .24s; }
.programs-grid .reveal:nth-child(5) { transition-delay: .32s; }
.programs-grid .reveal:nth-child(6) { transition-delay: .40s; }
.why-grid .reveal:nth-child(6) { transition-delay: .3s; }

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

  .about-grid, .aircraft-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-py: 68px; }
  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,11,24,.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .nav-menu.open .nav-link { font-size: 22px; letter-spacing: .04em; }

  .hero-content { padding: 110px 24px 80px; margin: 0; }
  .hero-plane { display: none; }
  .hero-stats { gap: 18px; }

  .sbar-grid { flex-wrap: wrap; justify-content: center; }
  .sbar-item { min-width: 45%; padding: 8px 16px; }
  .sbar-sep { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 22px; }
  .specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .hstat-divider { display: none; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .prog-meta { flex-direction: column; gap: 8px; }
  .sbar-val { font-size: 1.7rem; }
  .programs-grid { grid-template-columns: 1fr; }
}
