/* =========================================================
   Sheba Aviation — Design System
   ========================================================= */

:root {
  /* Brand blue, sampled from the Sheba logo */
  --blue-950: #050D18;
  --blue-900: #081A2E;
  --blue-850: #0B2340;
  --blue-800: #0F2E52;
  --blue-700: #143C68;
  --blue-600: #1B5A93;
  --brand: #2487C5;
  --brand-light: #5FB6EA;
  --brand-pale: #DCEFFC;
  --sky-100: #F2F8FD;
  --white: #FFFFFF;
  --ink: #0B1B2B;
  --ink-soft: #4B6376;
  --line: #E3EDF4;

  --font-head: 'Clash Display', 'Satoshi', sans-serif;
  --font-body: 'Satoshi', 'Clash Display', sans-serif;

  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --shadow-soft: 0 20px 60px -20px rgba(8,26,46,.25);
  --shadow-lift: 0 30px 70px -25px rgba(8,26,46,.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(28px, 3.6vw, 44px); color: var(--ink); max-width: 760px; }

/* =================== PRELOADER =================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue-950);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }

.preloader__mark { position: relative; display: flex; align-items: center; justify-content: center; }
.preloader__mark img {
  height: 46px; width: auto;
  filter: brightness(0) invert(1);
  animation: preloaderPulse 1.6s ease-in-out infinite;
  position: relative; z-index: 1;
}
.preloader__ring {
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.12);
  border-top-color: var(--brand-light);
  border-right-color: var(--brand-light);
  animation: preloaderSpin 1.3s linear infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: .55; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--blue-600) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(36,135,197,.55);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(36,135,197,.65); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }

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

/* =================== ANNOUNCEMENT BAR =================== */
/* Fixed at the very top, but slides away (not "sticky") as soon as the
   page is scrolled — see the .bar-hidden toggle in main.js. The nav below
   it is completely untouched: still position:fixed;top:0 like before,
   just shifted down by --announcement-h while the bar is showing. */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: var(--announcement-h, 30px);
  background: var(--blue-950);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  display: flex; align-items: center;
  transition: transform .4s var(--ease);
}
body.bar-hidden .announcement-bar { transform: translateY(-100%); }

.announcement-bar__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: announcement-scroll 30s linear infinite;
  will-change: transform;
}
.announcement-bar__track span {
  display: inline-flex; align-items: center;
  padding: 0 36px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar__track { animation: none; }
}

/* =================== NAV / FLOATING ISLAND =================== */
.nav-wrap {
  position: fixed; top: var(--announcement-h, 30px); left: 0; right: 0; z-index: 1000;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 18px;
  transition: padding .5s var(--ease), top .4s var(--ease);
}
body.bar-hidden .nav-wrap { top: 0; }

.nav {
  width: calc(100% - 56px);
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 12px 16px 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(8, 26, 46, .0);
  transition: all .55s var(--ease);
}

/* scrolled state: island */
.nav-wrap.is-scrolled { padding-top: 12px; }
.nav-wrap.is-scrolled .nav {
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(8, 26, 46, .62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 20px 45px -18px rgba(5,13,24,.55), inset 0 1px 0 rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px 10px 8px 18px;
}

.nav__brand { flex-shrink: 0; }
.nav__brand img { height: 48px; width: auto; filter: brightness(0) invert(1); transition: height .4s var(--ease); }
.nav-wrap.is-scrolled .nav__brand img { height: 34px; }

/* scrolled state: hide the CTA and tighten link spacing/type so the extra nav items fit without crowding the logo */
.nav-wrap.is-scrolled .nav__cta { display: none; }
.nav-wrap.is-scrolled .nav__links { gap: 0; flex-wrap: nowrap; }
.nav-wrap.is-scrolled .nav__links a {
  padding: 8px 10px;
  font-size: 12.5px;
  gap: 4px;
  white-space: nowrap;
}
.nav-wrap.is-scrolled .nav__links a i { font-size: 9px; }

/* On the (dark) hero, logo stays white. Once we leave dark contexts elsewhere this still reads fine on the island. */

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > li { position: relative; }
.nav__links a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14.5px; font-weight: 600;
  color: rgba(255,255,255,.82);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__links a i { font-size: 10px; opacity: .7; }
.nav__links a:hover, .nav__links a.is-active { background: rgba(255,255,255,.12); color: var(--white); }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: all .3s var(--ease);
  z-index: 20;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink); font-size: 14px; font-weight: 600; }
.dropdown a:hover { background: var(--sky-100); color: var(--brand); }

.nav__cta {
  background: var(--white);
  color: var(--blue-900);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  flex-shrink: 0;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(0,0,0,.35); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  flex-shrink: 0;
}
.nav__burger span { width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  max-width: 920px;
  margin: 10px auto 0;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease);
}
.mobile-menu.is-open { max-height: 420px; opacity: 1; }
.mobile-menu {
  display: none;
}

/* =================== HERO =================== */
body { background: var(--white); }

.hero {
  position: relative;
  height: calc(100vh - 32px);
  min-height: 640px;
  margin: 16px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--blue-950);
  box-shadow: 0 30px 80px -30px rgba(8,26,46,.5);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  transform: scale(1.04);
}
.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(3,10,20,.82) 0%, rgba(3,10,20,.35) 30%, rgba(3,10,20,0) 52%),
    linear-gradient(180deg, rgba(3,10,20,.55) 0%, rgba(3,10,20,0) 22%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 100%, black, transparent);
}

.hero__inner {
  position: absolute; z-index: 2; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px 52px;
}

.hero__content { max-width: 640px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 0 4px rgba(95,182,234,.3); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
  color: var(--white);
  font-size: clamp(32px, 4.4vw, 54px);
  display: flex; flex-direction: column; gap: 0;
  text-wrap: balance;
}
.hero__title--accent {
  background: linear-gradient(100deg, var(--brand-light), #9ED8F7 45%, var(--white));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero__stats {
  display: flex; gap: 0;
  flex-shrink: 0;
}
.stat { padding: 0 22px; text-align: right; position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(255,255,255,.2);
}
.stat__num { display: block; font-family: var(--font-head); font-size: clamp(24px,2.6vw,34px); font-weight: 700; color: var(--white); }
.stat__label { display: block; margin-top: 2px; font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .02em; white-space: nowrap; }

/* =================== REVEAL ANIMATION =================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =================== AIRLINES STRIP =================== */
.airlines-strip {
  padding: 100px 0 110px;
  text-align: center;
  background: var(--white);
}
.airlines-strip .section-title { margin: 0 auto 56px; }

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.airline-card {
  display: flex; align-items: center; justify-content: center;
  padding: 28px 18px;
  border-radius: var(--radius-md);
  background: var(--sky-100);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  min-height: 108px;
}
.airline-card img { max-height: 46px; width: auto; object-fit: contain; }
.airline-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; background: var(--white); }

/* =================== SERVICES PILLARS =================== */
.services-pillars {
  padding: 110px 0 100px;
  background: linear-gradient(180deg, #DCEFFC 0%, #BFE2F7 45%, #E4F3FC 100%);
  position: relative;
  overflow: hidden;
}
.services-pillars::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 15% 10%, rgba(255,255,255,.7) 0%, transparent 70%),
    radial-gradient(40% 35% at 90% 85%, rgba(255,255,255,.5) 0%, transparent 70%);
}
.services-pillars .container { position: relative; z-index: 1; }
.services-pillars .section-title { margin-bottom: 20px; }

/* Desktop: plane-centered split layout */
.pillars-layout {
  display: none;
  grid-template-columns: 1fr minmax(340px, 560px) 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 52px;
}
.pillars-col { display: flex; flex-direction: column; gap: 18px; z-index: 2; position: relative; }

.pillars-plane {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  pointer-events: none;
}
.pillars-plane img {
  width: 100%;
  filter: drop-shadow(0 60px 60px rgba(15,50,90,.3));
  opacity: 0;
  transform: translateY(280px) scale(.8);
  will-change: transform, opacity;
}

/* Mobile / tablet fallback grid */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }

/* Compact cards: icon left, copy middle, arrow right — sized to stack 3-per-column in one screen */
.pillar-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); background: var(--white); }
.pillar-card__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white); font-size: 19px;
  transition: transform .4s var(--ease);
}
.pillar-card:hover .pillar-card__icon { transform: rotate(-8deg) scale(1.06); }
.pillar-card__body { flex: 1; min-width: 0; }
.pillar-card h3 { font-size: 16.5px; margin-bottom: 4px; color: var(--ink); line-height: 1.3; }
.pillar-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.pillar-card__arrow {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(36,135,197,.1);
  color: var(--brand); font-size: 12px;
  transition: all .3s var(--ease);
}
.pillar-card:hover .pillar-card__arrow { background: var(--brand); color: var(--white); transform: translateX(3px); }

@media (min-width: 1081px) {
  .pillars-layout { display: grid; }
  .services-pillars .pillars-grid { display: none; }
}

/* =================== WHY SECTION =================== */
.why-section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  background: var(--blue-950);
}
.why-section__bg { position: absolute; inset: 0; z-index: 0; }
.why-section__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.why-section__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(3,10,20,.94) 0%, rgba(3,10,20,.86) 30%, rgba(5,20,38,.5) 55%, rgba(5,20,38,.12) 78%, rgba(5,20,38,.05) 100%),
    linear-gradient(0deg, rgba(3,10,20,.55) 0%, rgba(3,10,20,0) 30%);
}

.why-section .container { position: relative; z-index: 1; }
.why-copy { max-width: 620px; }
.why-section .eyebrow { color: var(--brand-light); }
.why-section .section-title { color: var(--white); }
.why-copy__text { margin: 20px 0 26px; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; max-width: 540px; }
.why-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; color: var(--white); }
.why-list i { color: var(--brand-light); font-size: 17px; }

/* Anti-spam honeypot field, shared by every form on the site */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* =================== COMING SOON (Line Maintenance teaser) =================== */
.coming-soon { position: relative; padding: 80px 0; overflow: hidden; }
.coming-soon__bg { position: absolute; inset: 0; z-index: 0; }
.coming-soon__bg img { width: 100%; height: 100%; object-fit: cover; }
.coming-soon__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,13,24,.92) 0%, rgba(5,13,24,.88) 60%, rgba(5,13,24,.94) 100%);
}
.coming-soon__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.coming-soon__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  color: var(--white); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 18px;
}
.coming-soon__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-light); box-shadow: 0 0 0 4px rgba(95,182,234,.25); animation: pulse 2s infinite; }
.coming-soon__inner h2 { color: var(--white); font-size: clamp(24px,2.8vw,34px); margin-bottom: 14px; }
.coming-soon__inner p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }

.coming-soon__form { display: flex; gap: 12px; align-items: stretch; }
.coming-soon__field {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 0 16px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.coming-soon__field:focus-within { border-color: var(--brand-light); background: rgba(255,255,255,.12); }
.coming-soon__field i { color: rgba(255,255,255,.55); font-size: 14px; flex-shrink: 0; }
.coming-soon__field input { background: none; border: none; outline: none; color: var(--white); font-size: 14.5px; width: 100%; padding: 14px 0; }
.coming-soon__field input::placeholder { color: rgba(255,255,255,.45); }
.coming-soon__form .btn { flex-shrink: 0; white-space: nowrap; }
.coming-soon__msg { margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.75); min-height: 1.2em; }
.coming-soon__msg.is-error { color: #FF9B9B; }
.coming-soon__msg.is-success { color: #7EE0A8; }

@media (max-width: 640px) {
  .coming-soon__form { flex-direction: column; }
}

/* =================== CTA SPLIT =================== */
/* Plain grid, no absolute positioning — the browser handles vertical centering
   between the two columns natively via align-items, so it can't drift or clip. */
.cta-split { background: var(--white); padding: 110px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }

.cta-split__visual { display: flex; justify-content: center; }
.cta-split__visual img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 40px 45px rgba(15,50,90,.16));
}

.cta-split__content { max-width: 540px; width: 100%; }
.cta-split__content .eyebrow { color: var(--brand); }
.cta-split__content h2 { font-size: clamp(26px,3vw,38px); color: var(--ink); margin-bottom: 18px; }
.cta-split__content h2 .accent { color: var(--brand); }
.cta-split__text { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 480px; margin-bottom: 34px; }

/* Centered intro used above the map+form grid on pages that embed the contact block inline (e.g. homepage) */
.cta-split__intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.cta-split__intro .eyebrow { color: var(--brand); justify-content: center; }
.cta-split__intro h2 { font-size: clamp(26px,3vw,38px); color: var(--ink); margin-bottom: 14px; }
.cta-split__intro h2 .accent { color: var(--brand); }
.cta-split__intro p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 560px; margin: 0 auto; }

.cta-form {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--sky-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 40px 70px -40px rgba(15,50,90,.2);
}
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form__field {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 2px 6px rgba(15,50,90,.05);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.cta-form__field:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(36,135,197,.12); }
.cta-form__field i { color: var(--brand); font-size: 14px; flex-shrink: 0; }
.cta-form__field input { background: none; border: none; outline: none; color: var(--ink); font-size: 14.5px; width: 100%; }
.cta-form__field input::placeholder { color: var(--ink-soft); }

.cta-form__field--textarea { align-items: flex-start; padding-top: 14px; }
.cta-form__field--textarea i { margin-top: 3px; }
.cta-form__field textarea {
  background: none; border: none; outline: none; color: var(--ink); font-size: 14.5px; width: 100%;
  font-family: inherit; line-height: 1.6; resize: vertical; min-height: 96px;
}
.cta-form__field textarea::placeholder { color: var(--ink-soft); }
.contact-form__msg { margin-top: 4px; font-size: 13.5px; min-height: 1.2em; }
.contact-form__msg.is-error { color: #C0392B; }
.contact-form__msg.is-success { color: #1E7A3D; }

/* Shared map + form layout, used on the Contact page and reused wherever the contact block appears inline */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); min-height: 480px; position: relative; }
.contact-map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-form-card {
  background: var(--sky-100); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.contact-form-card h2 { font-size: clamp(24px,2.6vw,32px); color: var(--ink); margin-bottom: 10px; }
.contact-form-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 26px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 340px; }
}

/* =================== FOOTER =================== */
.footer { background: var(--blue-950); padding: 80px 0 0; color: rgba(255,255,255,.6); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { height: 34px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer__col h4 { color: var(--white); font-size: 14px; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; }
.footer__col a, .footer__col span { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 12px; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--brand-light); }
.footer__col i { color: var(--brand-light); width: 14px; }

.footer__bottom { display: flex; justify-content: space-between; padding: 26px 0; font-size: 13px; }

/* =================== FLOAT CALL BUTTON =================== */
.float-call {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 16px 30px -10px rgba(36,135,197,.6);
  animation: floatPulse 2.6s ease-in-out infinite;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 16px 30px -10px rgba(36,135,197,.6); }
  50% { box-shadow: 0 16px 30px -10px rgba(36,135,197,.9), 0 0 0 10px rgba(36,135,197,.08); }
}

/* =================== PAGE HERO (subpages) =================== */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 440px;
  margin: 16px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--blue-950);
  box-shadow: 0 30px 80px -30px rgba(8,26,46,.5);
  display: flex;
  align-items: flex-end;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(3,10,20,.92) 0%, rgba(3,10,20,.82) 32%, rgba(5,20,38,.4) 58%, rgba(5,20,38,.08) 82%, rgba(5,20,38,.02) 100%),
    linear-gradient(0deg, rgba(3,10,20,.5) 0%, rgba(3,10,20,0) 40%);
}
.page-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 48px 52px;
}
.page-hero__title { color: var(--white); font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 14px; }
.page-hero__sub { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; max-width: 560px; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.85); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--brand-light); }
.breadcrumb i { font-size: 9px; opacity: .6; }
.breadcrumb span { color: var(--brand-light); }

/* =================== STORY SECTION =================== */
.story-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-100) 100%);
  position: relative;
  overflow: hidden;
}
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; position: relative; z-index: 1; }

.story-visual-wrap { position: relative; }
.story-visual__blob {
  position: absolute;
  top: -12%; left: -14%;
  width: 65%; height: 65%;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  filter: blur(60px);
  opacity: .35;
  border-radius: 50%;
  z-index: 0;
}
.story-visual { position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--sky-100); box-shadow: var(--shadow-lift); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .8s var(--ease); }
.story-visual-wrap:hover .story-visual img { transform: scale(1.05); }

.story-badge {
  position: absolute; z-index: 2;
  left: -8%; bottom: -8%;
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-lift);
}
.story-badge__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white); font-size: 18px;
}
.story-badge strong { display: block; font-size: 14.5px; color: var(--ink); }
.story-badge span { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

.story-copy__text { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 22px; max-width: 560px; }

/* =================== MISSION / VISION =================== */
.mv-section { position: relative; padding: 110px 0; background: var(--blue-950); overflow: hidden; }
.mv-section__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 20%, black, transparent);
}
.mv-section .container { position: relative; z-index: 1; }
.mv-section .eyebrow { color: var(--brand-light); }
.mv-section .section-title { color: var(--white); margin-bottom: 56px; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mv-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.mv-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.mv-card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white); font-size: 21px;
  margin-bottom: 24px;
}
.mv-card h3 { color: var(--white); font-size: 21px; margin-bottom: 14px; }
.mv-card p { color: rgba(255,255,255,.68); font-size: 15.5px; line-height: 1.75; }

/* =================== ABOUT STATS ================= */
.about-stats {
  padding: 90px 0;
  background: linear-gradient(180deg, #DCEFFC 0%, #BFE2F7 45%, #E4F3FC 100%);
  position: relative;
  overflow: hidden;
}
.about-stats::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 45% at 12% 15%, rgba(255,255,255,.7) 0%, transparent 70%),
    radial-gradient(40% 40% at 92% 90%, rgba(255,255,255,.5) 0%, transparent 70%);
}
.about-stats__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat--light {
  text-align: center; padding: 30px 16px; border-bottom: none;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.stat--light:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-soft); }
.stat--light::after { display: none; }
.stat--light .stat__num { color: var(--brand); font-size: clamp(22px, 2.4vw, 32px); }
.stat--light .stat__label { color: var(--ink-soft); }

/* =================== VALUES ================= */
.values-section { padding: 100px 0 120px; background: var(--white); position: relative; overflow: hidden; }
.values-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(35% 45% at 88% 8%, rgba(36,135,197,.08) 0%, transparent 70%),
    radial-gradient(35% 40% at 6% 95%, rgba(36,135,197,.06) 0%, transparent 70%);
}
.values-section .container { position: relative; z-index: 1; }
.values-section .section-title { margin-bottom: 48px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: var(--sky-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); background: var(--white); border-color: transparent; }
.value-card__icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white); font-size: 19px;
  margin-bottom: 20px;
  transition: transform .4s var(--ease);
}
.value-card:hover .value-card__icon { transform: rotate(-8deg) scale(1.06); }
.value-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* =================== SERVICES LIST (About page) =================== */
.services-list-section { padding: 100px 0 110px; background: var(--sky-100); position: relative; overflow: hidden; }
.services-list-section .section-title { margin-bottom: 48px; }
.services-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.services-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(11,27,43,.07);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.services-list-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.services-list-item__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white);
  font-size: 16px;
}
.services-list-item span { font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* =================== LEADERSHIP (About page) =================== */
.leadership-section { padding: 110px 0 120px; background: var(--white); }
.leadership-section .section-title { margin-bottom: 48px; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.leader-card {
  display: flex;
  gap: 22px;
  background: var(--sky-100);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(11,27,43,.06);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.leader-card__avatar {
  flex-shrink: 0;
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--blue-600));
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-head);
}
.leader-card__body h3 { font-size: 19px; color: var(--ink); margin-bottom: 2px; }
.leader-card__role { display: block; font-size: 13px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.leader-card__body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* =================== CORPORATE STATEMENT (About page) =================== */
.corp-statement { padding: 90px 0; background: var(--blue-950); position: relative; overflow: hidden; }
.corp-statement::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(36,135,197,.18) 0%, transparent 70%);
}
.corp-statement .container { position: relative; z-index: 1; max-width: 880px; text-align: center; margin: 0 auto; }
.corp-statement .eyebrow { color: var(--brand-light); justify-content: center; }
.corp-statement blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  margin: 20px 0 0;
}

@media (max-width: 860px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { flex-direction: column; }
}

/* =================== FLOATING CTA (About page) =================== */
.floating-cta-wrap { padding: 40px 0 110px; background: var(--white); }
.floating-cta {
  position: relative;
  margin: 0 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
  box-shadow: 0 40px 80px -30px rgba(15,50,90,.35);
}
.floating-cta__bg { position: absolute; inset: 0; z-index: 0; }
.floating-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.floating-cta__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(11,45,79,.96) 0%, rgba(20,64,105,.9) 38%, rgba(36,135,197,.7) 75%, rgba(95,182,234,.55) 100%);
}
.floating-cta__content { position: relative; z-index: 1; max-width: 620px; padding: 64px; }
.floating-cta__content .eyebrow { color: var(--brand-light); }
.floating-cta__content h2 { color: var(--white); font-size: clamp(26px,3vw,38px); margin-bottom: 16px; }
.floating-cta__content p { color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.75; margin-bottom: 30px; max-width: 480px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1080px) {
  .airlines-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { padding: 100px 0; }
  .why-section__gradient {
    background:
      linear-gradient(180deg, rgba(3,10,20,.9) 0%, rgba(3,10,20,.8) 55%, rgba(5,20,38,.55) 100%);
  }
  .cta-split { padding: 70px 0 90px; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-split__visual img { max-width: 340px; margin: 0 auto; }
  .cta-split__content { max-width: 560px; margin: 0 auto; text-align: center; }
  .cta-split__text { margin-left: auto; margin-right: auto; }
  .cta-form { text-align: left; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual img { aspect-ratio: 16/10; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mobile-menu { display: block; width: calc(100% - 40px); background: rgba(8,26,46,.9); backdrop-filter: blur(18px); border-radius: 22px; border: 1px solid rgba(255,255,255,.1); }
  .mobile-menu a { display: block; padding: 14px 22px; color: rgba(255,255,255,.85); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.06); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu__cta { color: var(--brand-light) !important; }

  .hero { height: auto; min-height: 560px; }
  .hero__inner { flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 28px; padding: 0 32px 40px; }
  .hero__stats { gap: 0; }
  .stat { padding: 0 18px 0 0; text-align: left; }

  .page-hero { height: auto; min-height: 400px; }
  .page-hero__inner { padding: 0 32px 40px; }

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

  .floating-cta { margin: 0 20px; min-height: auto; }
  .floating-cta__content { padding: 44px 32px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav { width: calc(100% - 28px); }
  .hero { margin: 10px; border-radius: 22px; min-height: 520px; }
  .hero__inner { padding: 0 22px 32px; }
  .hero__stats { flex-direction: column; gap: 14px; }
  .stat { padding: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 12px; text-align: left; }
  .stat:not(:last-child)::after { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .airlines-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero { margin: 10px; border-radius: 22px; min-height: 460px; }
  .page-hero__inner { padding: 0 22px 32px; }
  .about-stats__grid { grid-template-columns: 1fr; row-gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
