@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --black: #e8f2fb;
  --black-2: #ffffff;
  --black-3: #d0e6f6;
  --white: #0a1e38;
  --muted: #4a6a8a;
  --line: rgba(10,30,56,.13);
  --gold: #c8a84b;
  --blue: #1a5ea8;
  --panel: rgba(255,255,255,.90);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.cursor-light {
  position: fixed;
  inset: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(26,94,168,.09), rgba(200,168,75,.05), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(232,242,251,.88);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1240px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover { color: var(--white); }

.nav-email {
  color: #ffffff !important;
  background: #0f3a6b;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 28px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 130px 24px 80px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(26,94,168,.28), transparent 38%),
    linear-gradient(90deg, rgba(8,22,46,.92), rgba(8,22,46,.55), rgba(8,22,46,.16)),
    linear-gradient(0deg, rgba(8,22,46,.88), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  font-size: clamp(48px, 8vw, 105px);
  line-height: .91;
  letter-spacing: -.08em;
  margin-bottom: 26px;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary {
  background: #0f3a6b;
  color: #f0f6fc;
}

.ghost {
  background: rgba(255,255,255,.10);
  color: #f0f6fc;
  border-color: rgba(255,255,255,.28);
}

.full { width: 100%; }


@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  max-width: 1240px;
  margin: auto;
  padding: 110px 24px;
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading h2,
.aircraft-copy h2,
.quote-copy h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.065em;
  margin-bottom: 18px;
}

.section-heading p,
.aircraft-copy p,
.quote-copy p {
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--black-2), var(--black) 78%);
  text-align: center;
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}

.service-card:hover {
  border-color: rgba(212,175,106,.55);
  transform: translateY(-3px);
}

.service-icon {
  width: 100%;
  height: 200px;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 0;
  background: none;
  border: none;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card span {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 0 18px;
}

.service-card h3 {
  font-size: 18px;
  letter-spacing: -.025em;
  margin: 0 0 12px;
  padding: 0 18px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 13.5px;
  margin: 0 0 32px;
  padding: 0 18px;
}

/* aircraft section removed */

.aircraft-video {
  display: none;
}

.aircraft-video video {
  display: none;
}

.aircraft-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,22,46,.82), transparent 55%);
}

.aircraft-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.aircraft-caption span {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 10px;
}

.aircraft-caption strong {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -.04em;
}


.regions {
  position: relative;
}

.regions::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,175,106,.10), rgba(169,192,219,.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.world-map {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(160deg, var(--black-2), var(--black) 80%);
  padding: 28px 28px 18px;
  margin-bottom: 22px;
}

.world-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-land {
  fill: rgba(10,30,56,.06);
  stroke: rgba(10,30,56,.10);
  stroke-width: 1;
}

.map-land-active {
  fill: rgba(26,94,168,.14);
  stroke: rgba(26,94,168,.36);
}

.map-spokes path {
  fill: none;
  stroke: rgba(200,168,75,.55);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.map-pin circle {
  fill: var(--gold);
  stroke: rgba(232,242,251,.9);
  stroke-width: 2;
}

.map-pin text {
  fill: #0a1e38;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.map-hq-ring {
  fill: none;
  stroke: #0f3a6b;
  stroke-width: 2;
  opacity: .7;
}

.map-hq-dot {
  fill: #0f3a6b;
}

.map-legend {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.legend-hq i { background: var(--blue); }
.legend-region i { background: var(--gold); }

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.region-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  text-align: center;
  transition: border-color .25s ease, transform .25s ease;
}

.region-card:hover {
  border-color: rgba(169,192,219,.5);
  transform: translateY(-3px);
}

.region-card span {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
}

.process {
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(169,192,219,.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process {
  padding-top: 150px;
  padding-bottom: 150px;
  max-width: 1480px;
}

/* ─── Process — horizontal card grid ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-card {
  background: rgba(255,255,255,.92);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,30,56,.08);
  border: 1px solid rgba(10,30,56,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(10,30,56,.14);
}

.process-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 16px;
  background: rgba(26,94,168,.03);
  border-bottom: 1px solid rgba(10,30,56,.06);
}

.process-card-icon svg {
  width: 80px;
  height: 80px;
  transition: transform .35s ease;
}

.process-card:hover .process-card-icon svg {
  transform: scale(1.08);
}

/* Main Carriage — 2×2 quad of transport modes */
.process-card-icon--quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px;
}

.quad-mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 6px;
  border-radius: 10px;
  transition: background .2s;
}

.quad-mode:hover { background: rgba(26,94,168,.07); }

.quad-mode svg {
  width: 44px;
  height: 44px;
}

.quad-mode span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.process-card-body {
  padding: 20px 22px 24px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.process-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 7px;
  letter-spacing: -.02em;
}

.process-card-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.quote-section {
  max-width: 1240px;
  margin: auto;
  padding: 70px 24px 120px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: start;
}

.contact-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.04);
}

.contact-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.contact-card p:last-child { margin-bottom: 0; }

.contact-card strong { color: var(--white); }

.quote-form {
  background: var(--white);
  color: var(--black);
  border-radius: 32px;
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 13px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d7d7d0;
  background: #fff;
  color: var(--black);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}

textarea { resize: vertical; }

.hidden { display: none; }

.form-note {
  margin: 14px 0 0;
  color: #686862;
  line-height: 1.55;
  font-size: 12px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  background: var(--white);
  color: var(--black);
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}

.footer {
  max-width: 1240px;
  margin: auto;
  padding: 38px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
}

.footer p {
  max-width: 550px;
  line-height: 1.6;
  margin: 18px 0 0;
}

.footer-right {
  display: grid;
  gap: 10px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .nav-links { gap: 16px; font-size: 13px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-icon { width: 130px; height: 130px; }
  .service-icon svg { width: 64px; height: 64px; }
}

@media (max-width: 960px) {
  .menu-btn { display: block; }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--black-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
  }

  .nav-links.open { display: flex; }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-identity { gap: 14px; }
  .hero-brand-name { font-size: 30px; }
  .hero-slogan { font-size: 11px; }

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

  .map-pin text {
    display: none;
  }

  .world-map {
    padding: 20px 16px 14px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-right { text-align: left; }
}

@media (max-width: 620px) {
  .brand-text small { display: none; }

  h1 { font-size: 46px; }

  .section, .quote-section { padding-block: 72px; }

  #process { padding-block: 90px; }

  .flow-icon-tile { height: 220px; }

  .service-icon { width: 110px; height: 110px; margin: 36px auto 24px; }
  .service-icon svg { width: 56px; height: 56px; }

  .form-row,
  .service-grid,
  .service-grid-3,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .quote-form { padding: 24px; border-radius: 24px; }

  .aircraft-video,
  .aircraft-video video {
    min-height: 400px;
    height: 400px;
  }
}

/* ─── Ice Blue theme overrides ───────────────────────────── */

/* Hero — stays dark navy, so text must be light */
.hero-identity {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .92;
  flex-shrink: 0;
}
.hero-identity-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-brand-name {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .04em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.hero-slogan {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c8a84b;
  margin: 0;
  font-weight: 500;
}
.hero-content .eyebrow { color: #90bfe0; }
.hero-content h1 { color: #f0f6fc; }
.hero-copy { color: #7eaece; }

/* Aircraft caption lives on the dark video */
.aircraft-caption span { color: #90bfe0; }
.aircraft-caption strong { color: #f0f6fc; }

/* Contact info card — on light ice-blue page */
.contact-card {
  background: rgba(10,30,56,.04);
  border-color: rgba(10,30,56,.14);
}
.contact-card p { color: var(--muted); }
.contact-card strong { color: var(--white); }

/* Quote copy — light page, dark text, works via vars */
.quote-copy a { color: var(--blue); }

/* Quote form — flip to dark navy panel for contrast */
.quote-form {
  background: #0f2640;
  color: #f0f6fc;
}
.quote-form label { color: #c0d8f0; font-weight: 700; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
  color: #f0f6fc;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(255,255,255,.35); }
.quote-form .btn.primary {
  background: #1a5ea8;
  color: #ffffff;
}
.quote-form .form-note { color: #7aaece; }

/* WhatsApp bubble */
.whatsapp {
  background: #0f2640;
  color: #f0f6fc;
}

/* Footer — light bg, dark text */
.footer { color: var(--muted); }
.footer a:hover { color: var(--white); }

/* Service card hover — gold border still works */
.service-card:hover { border-color: rgba(200,168,75,.55); }

/* Process glow — adjust for light bg */
.process::before {
  background: radial-gradient(circle, rgba(26,94,168,.08), transparent 70%);
}

/* Regions glow — adjust */
.regions::before {
  background: radial-gradient(circle, rgba(200,168,75,.10), rgba(26,94,168,.06), transparent 70%);
}

/* ─── D3 World Map ─── */
#world-map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 16px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(10,30,56,.12);
  backdrop-filter: blur(8px);
}

#world-map-container svg {
  width: 100%;
  height: auto;
  display: block;
}

#world-map-container .country {
  fill: rgba(10,30,56,.06);
  stroke: rgba(10,30,56,.15);
  stroke-width: 0.4;
}

#world-map-container .country.served {
  fill: rgba(26,94,168,.18);
  stroke: rgba(26,94,168,.45);
  stroke-width: 0.6;
}

@keyframes pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 0; transform: scale(2.2); }
}

#world-map-container .hq-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  opacity: .7;
  transform-origin: center center;
  animation: pulse 2.4s ease-in-out infinite;
}

#world-map-container .hq-dot {
  fill: var(--gold);
}

#world-map-container .hq-label {
  fill: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Map legend dots */
.legend-hq i { background: var(--gold); }
.legend-region i { background: rgba(26,94,168,.4); border: 1px solid rgba(26,94,168,.7); }

/* Map legend text */
.map-legend { color: var(--muted); }

/* ─── Full-bleed photo background sections ───────────────── */

#services,
#process,
#regions {
  max-width: none;
  padding-inline: max(24px, calc(50% - 620px));
}

#process {
  padding-inline: max(24px, calc(50% - 740px));
  padding-block: 150px;
}

#services {
  background:
    linear-gradient(rgba(240,246,252,.78), rgba(240,246,252,.78)),
    url('https://images.unsplash.com/photo-1716718810773-d2a52b43602f?auto=format&fit=crop&w=1800&q=65') center/cover no-repeat;
}

#process {
  background:
    linear-gradient(rgba(240,246,252,.92), rgba(240,246,252,.92)),
    url('https://images.unsplash.com/photo-1513985387107-54ceab0ab3ee?auto=format&fit=crop&w=1800&q=65') center/cover no-repeat;
}

#regions {
  background:
    linear-gradient(rgba(240,246,252,.78), rgba(240,246,252,.78)),
    url('https://images.unsplash.com/photo-1759272840712-c7e5ea852367?auto=format&fit=crop&w=1800&q=65') center/cover no-repeat;
}

/* Kill the glow ::before on sections that now have photo backgrounds */
#process::before,
#regions::before {
  display: none;
}

/* ── Section headings inside light photo sections ── */
#services .eyebrow,
#process .eyebrow,
#regions .eyebrow { color: var(--blue); }

#services .section-heading h2,
#process .section-heading h2,
#regions .section-heading h2 { color: var(--white); }

#services .section-heading p,
#process .section-heading p,
#regions .section-heading p { color: var(--muted); }

/* ── Service group dividers ── */
.svc-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
}
.svc-divider--wide { margin-top: 56px; }
.svc-divider::before,
.svc-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10,30,56,.18);
}
.svc-divider-label {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.svc-divider-sub {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin: -10px 0 28px;
  font-style: italic;
}
.service-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Service cards on light bg ── */
#services .service-card {
  background: rgba(255,255,255,.82);
  border-color: rgba(10,30,56,.12);
  backdrop-filter: blur(8px);
}
#services .service-card:hover { border-color: rgba(200,168,75,.65); }
#services .service-icon {
  background: none;
  border: none;
}
#services .service-card span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .20em;
}
#services .service-card h3 {
  color: var(--white);
  font-size: 22px;
}
#services .service-card p {
  color: var(--muted);
  font-size: 15px;
}

/* ── Process steps on light bg ── */
#process .process-card-body h3 { color: var(--white); }
#process .process-card-body p { color: var(--muted); }

/* ── Regions on light bg ── */
#regions .world-map {
  background: rgba(255,255,255,.80);
  border-color: rgba(10,30,56,.12);
  backdrop-filter: blur(8px);
}
#regions .map-land { fill: rgba(10,30,56,.06); stroke: rgba(10,30,56,.10); }
#regions .map-land-active { fill: rgba(26,94,168,.14); stroke: rgba(26,94,168,.36); }
#regions .map-pin text { fill: #0a1e38; }
#regions .map-hq-ring { stroke: #0f3a6b; }
#regions .map-hq-dot { fill: #0f3a6b; }
#regions .map-spokes path { stroke: rgba(200,168,75,.55); }
#regions .map-legend { color: var(--muted); }

#regions .region-card {
  background: rgba(255,255,255,.82);
  border-color: rgba(10,30,56,.12);
  backdrop-filter: blur(8px);
}
#regions .region-card:hover { border-color: rgba(200,168,75,.65); }
#regions .region-card span { color: var(--white); }
