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

:root {
  --cyan:       #00B4FF;
  --cyan-dark:  #0099DD;
  --grey:       #6E6E6E;
  --sand:       #D99D5E;
  --gray-light: #f5f7fa;
  --text:       #333;
  --white:      #fff;
  --font: 'Arca Majora 3', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  padding: 14px 48px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  padding: 12px 36px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--cyan); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--cyan);
  padding: 14px 48px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: 100%;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-nav {
  background: var(--cyan);
  color: var(--white) !important;
  padding: 10px 28px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--cyan-dark); }

/* ===== UNDERLINE ACCENT ===== */
.underline {
  width: 48px;
  height: 3px;
  background: var(--sand);
  margin: 12px 0 24px;
  border-radius: 2px;
}
.underline.centered { margin: 12px auto 40px; }

/* ===== LOGO ===== */
.logo-svg       { height: 52px; width: auto; display: block; }
.logo-svg-footer{ height: 40px; }
/* Exact PNG logo */
.logo-img        { height: 46px; width: auto; display: block; }
.logo-img-footer { height: 44px; filter: brightness(0) invert(1); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== OUTLINE BUTTON ===== */
.btn-outline {
  display: inline-block;
  border: 2px solid var(--grey);
  color: var(--grey);
  padding: 12px 36px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--cyan) 1.5px, transparent 1.5px);
  background-size: 48px 48px;
  opacity: 0.18;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--grey);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
  max-width: 540px;
  margin-bottom: 36px;
}

/* ===== PARTNERS HIGHLIGHT ===== */
.partners-highlight {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.plane-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.plane-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.plane-image.no-image {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.partners-card {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 55%;
  background: var(--cyan);
  padding: 40px 52px;
  border-radius: 0 24px 0 0;
}
.partners-card p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-dots {
  position: absolute;
  right: -60px;
  top: 0;
  width: 340px;
  height: 100%;
  background-image: radial-gradient(circle, var(--cyan) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.12;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 0.01em;
}
.about-text p {
  color: var(--grey);
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 400;
}
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image.no-image {
  background: linear-gradient(135deg, #e8f4fd 0%, #bee3f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 80px 0;
  background: var(--gray-light);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mv-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.mv-icon { margin-bottom: 16px; }
.mv-icon svg { width: 40px; height: 40px; }
.mv-card h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.mv-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== AIRLINES ===== */
.airlines {
  padding: 80px 0;
  background: var(--white);
}
.airlines h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
}
.airlines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.airline-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.airline-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0,180,255,0.1);
}
.airline-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.airline-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ===== OFFICES ===== */
.offices {
  padding: 80px 0;
  background: var(--gray-light);
}
.offices h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
}
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,180,255,0.1);
}
.office-flag { font-size: 2rem; margin-bottom: 8px; }
.office-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 4px;
}
.office-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.office-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.office-contact {
  display: block;
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 400;
  margin-bottom: 4px;
  word-break: break-all;
  transition: color 0.2s;
}
.office-contact:hover { color: var(--cyan); }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--gray-light);
}
.services h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.01em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,180,255,0.14);
}
.service-icon svg { width: 48px; height: 48px; }
.service-body h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.service-body p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.65;
}
.services-cta { text-align: center; margin-top: 48px; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: var(--cyan);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.contact-text > p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-form form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255,255,255,0.95);
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.5); }
.contact-form textarea { resize: vertical; }
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--grey);
  background: rgba(255,255,255,0.95);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.contact-form select:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.5); }
.form-status {
  margin-top: 4px;
  min-height: 1.2em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 0;
  transition: padding 0.2s;
}
.form-status:not(:empty) { padding: 12px 16px; }

/* ===== FOOTER ===== */
.footer { background: #111; padding: 32px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: #888; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ========================================================== */
/* ============  MULTI-PAGE COMPONENTS (added)  ============= */
/* ========================================================== */

/* ---- Section heading helper ---- */
.section { padding: 100px 0; }
.section.alt { background: var(--gray-light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-head p { margin-top: 16px; color: var(--grey); font-weight: 400; font-size: 0.98rem; }
.section-head .underline { background: var(--sand); }

/* ---- Dropdown nav ---- */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 6px;
  color: var(--grey);
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-radius: 12px;
  padding: 10px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  z-index: 120;
}
.nav-links .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s;
}
.dropdown a:hover { background: var(--gray-light); color: var(--cyan); }
.nav-links a.active { color: var(--cyan); }
.nav-flyer {
  border: 1.5px solid var(--cyan);
  color: var(--cyan) !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  transition: all 0.2s;
}
.nav-flyer:hover { background: var(--cyan); color: #fff !important; }
.nav-flyer::before { content: "\2193  "; font-weight: 900; }

/* ---- IMAGE HERO (home) ---- */
.hero-img {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-img .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-img .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,30,45,0.86) 0%, rgba(10,30,45,0.55) 45%, rgba(0,120,170,0.30) 100%);
  z-index: 1;
}
.hero-img .container { position: relative; z-index: 2; }
.hero-img .hero-content { max-width: 720px; }
.hero-img .hero-eyebrow { color: #ffffff; }

/* ===== GALLERY STRIP (auto-scroll marquee) ===== */
.gallery-strip { padding: 80px 0; background: var(--white); overflow: hidden; }
.marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 220px; width: auto; border-radius: 12px; object-fit: cover; box-shadow: 0 10px 28px rgba(0,0,0,0.12); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 680px){ .marquee-track img { height: 150px; } .gallery-strip { padding: 56px 0; } }
.hero-img h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-img .hero-sub { color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 580px; }
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 12px 36px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--white); color: var(--cyan); border-color: var(--white); }

/* ---- PAGE BANNER (inner pages) ---- */
.page-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.page-banner .banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.page-banner .banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,30,45,0.85), rgba(0,90,135,0.55));
  z-index: 1;
}
.page-banner .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }
.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.page-banner p { color: rgba(255,255,255,0.88); max-width: 560px; font-weight: 400; }
.breadcrumb {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--sand); }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }

/* ---- INTRO SPLIT (text + image) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1.18;
}
.split-text p { color: var(--grey); font-weight: 400; margin-bottom: 16px; font-size: 0.96rem; }
.split-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin: 18px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5 9-10' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- STATS BAR ---- */
.stats {
  background: var(--cyan);
  background-image: linear-gradient(120deg, var(--cyan) 0%, #0079B8 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num .suffix { color: var(--sand); }
.stat-label {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
}

/* ---- PILLARS (why) ---- */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.pillar:last-child { margin-bottom: 0; }
.pillar.reverse .pillar-media { order: 2; }
.pillar-media { border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.14); aspect-ratio: 3/2; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; }
.pillar-tag {
  display: inline-block;
  background: rgba(0,180,255,0.12);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pillar-text h3 { font-size: 1.5rem; font-weight: 900; color: var(--text); margin-bottom: 14px; }
.pillar-text p { color: var(--grey); font-weight: 400; font-size: 0.95rem; margin-bottom: 14px; }

/* ---- DETAILED SERVICE BLOCKS ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #eee;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .sd-media { order: 2; }
.sd-media { border-radius: 14px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,0.12); aspect-ratio: 3/2; }
.sd-media img { width: 100%; height: 100%; object-fit: cover; }
.sd-text .sd-no {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--sand);
  letter-spacing: 0.1em;
}
.sd-text h3 { font-size: 1.4rem; font-weight: 900; color: var(--text); margin: 6px 0 14px; }
.sd-text p { color: var(--grey); font-weight: 400; font-size: 0.95rem; margin-bottom: 14px; }

/* ---- NEWS CARDS ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,180,255,0.14); }
.news-thumb { height: 200px; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-date {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}
.news-body h3 { font-size: 1.02rem; font-weight: 900; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.news-body p { font-size: 0.88rem; color: var(--grey); font-weight: 400; line-height: 1.6; flex: 1; }
.news-more {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-transform: uppercase;
}
.news-more::after { content: ' →'; }

/* ---- CTA BAND (image) ---- */
.cta-band {
  position: relative;
  padding: 96px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.cta-band .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-band .cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(8,28,42,0.82), rgba(0,90,135,0.7)); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 32px; font-weight: 400; }

/* ---- FEATURE CARDS (home services teaser) ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 30px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.06);
  border-top: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,180,255,0.14); border-top-color: var(--cyan); }
.feature-card .f-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(0,180,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-card .f-icon svg { width: 32px; height: 32px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 900; color: var(--text); margin-bottom: 12px; }
.feature-card p { font-size: 0.9rem; color: var(--grey); font-weight: 400; line-height: 1.65; }

/* ---- RICH FOOTER ---- */
.footer-rich { background: #0f1419; color: #aaa; padding-top: 64px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-about p { font-size: 0.88rem; line-height: 1.7; margin: 18px 0; color: #9aa3ab; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.86rem; color: #9aa3ab; transition: color 0.18s; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--cyan); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--cyan); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #777;
}
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--cyan); }

/* ---- FLEET SHOWCASE ---- */
.fleet {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8,40,60,0.55), rgba(0,120,170,0.35)),
    linear-gradient(120deg, #0a2a3c 0%, #0079B8 60%, #00B4FF 100%);
  background-size: cover;
  background-position: center;
}
.fleet .section-head h2,
.fleet .section-head .eyebrow { color: var(--white); }
.fleet .section-head .eyebrow { color: var(--sand); }
.fleet .section-head p { color: rgba(255,255,255,0.9); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: end;
}
.fleet-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 24px 16px 18px;
  text-align: center;
  backdrop-filter: blur(2px);
  transition: transform 0.2s, background 0.2s;
}
.fleet-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.fleet-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fleet-img img { max-height: 90px; width: auto; object-fit: contain; }
.fleet-fallback {
  display: none;
  color: rgba(255,255,255,0.85);
  font-size: 2.6rem;
  line-height: 90px;
}
.fleet-img.no-image img { display: none; }
.fleet-img.no-image .fleet-fallback { display: block; }
.fleet-card h3 {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
}
.fleet-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- FOCUS AREA ---- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.focus-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.06);
  border-left: 4px solid var(--cyan);
  transition: transform 0.2s, box-shadow 0.2s;
}
.focus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,180,255,0.14); }
.focus-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: rgba(0,180,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.focus-icon svg { width: 28px; height: 28px; stroke: var(--cyan); fill: none; }
.focus-card h3 { font-size: 1rem; font-weight: 900; color: var(--text); margin-bottom: 10px; letter-spacing: 0.01em; }
.focus-card p { font-size: 0.86rem; color: var(--grey); font-weight: 400; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .airlines-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid,
  .mv-grid,
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .partners-card { width: 100%; border-radius: 0; position: relative; }
  .partners-highlight { display: flex; flex-direction: column; }
  .plane-image { height: 280px; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px 24px;
    gap: 16px;
    z-index: 99;
  }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .about, .services, .contact-cta, .offices, .airlines, .mission-vision { padding: 60px 0; }
  .services-grid,
  .mv-grid,
  .offices-grid,
  .airlines-grid,
  .focus-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
