/* =========================================================
   FLIGHTGATEWAY - LIGHT LUXURY AVIATION THEME  v3
   Ivory . Navy ink . Gold - matched to the serif logo
   ========================================================= */

:root {
  --paper: #FBFAF6;
  --paper-2: #F5F2EA;
  --paper-3: #EFEAE0;
  --white: #FFFFFF;
  --ink: #131922;
  --ink-2: #333C49;
  --ink-3: #5E6875;
  --navy: #12182A;
  --gold: #9A7A2E;
  --gold-2: #C9A85C;
  --gold-3: #E9DCC0;
  --wa: #128C4B;
  --line: rgba(28, 36, 51, 0.10);
  --line-soft: rgba(28, 36, 51, 0.06);
  --shadow: 0 24px 70px rgba(28, 36, 51, 0.10);
  --shadow-soft: 0 12px 40px rgba(28, 36, 51, 0.07);
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Jost', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(201, 168, 92, 0.3); color: var(--ink); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.14; color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
h4 { font-family: var(--font-sans); font-weight: 400; }

.micro {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}

section { position: relative; padding: 8.5rem 6vw; max-width: 1440px; margin: 0 auto; }

.sec-head { max-width: 780px; margin-bottom: 4rem; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin: 1.1rem 0 1.2rem; }
.sec-sub { color: var(--ink-2); font-size: 1.02rem; max-width: 640px; }
.sec-head--center .sec-sub { margin-left: auto; margin-right: auto; }

/* -- Buttons ------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.3rem;
  border-radius: 2px;
  transition: all 0.45s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--gold {
  background: linear-gradient(120deg, #A8863C, var(--gold-2) 55%, #D9BC7A);
  color: #FFFDF8;
  box-shadow: 0 10px 30px rgba(176, 141, 62, 0.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(176, 141, 62, 0.4); }
.btn--ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ink:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--wa {
  border-color: rgba(18, 140, 75, 0.35);
  color: var(--wa);
  background: rgba(18, 140, 75, 0.04);
}
.btn--wa:hover { background: var(--wa); border-color: var(--wa); color: #fff; transform: translateY(-2px); }
.btn--nav {
  padding: 0.6rem 1.3rem; font-size: 0.58rem; letter-spacing: 0.18em;
  background: transparent; color: var(--ink); border-color: rgba(19,25,34,0.35);
  box-shadow: none;
}
.btn--nav:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: none; box-shadow: none; }
.wa-ico { width: 15px; height: 15px; flex: none; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(ellipse 85% 70% at 50% 38%, #FFFFFF 0%, var(--paper) 55%, var(--paper-2) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.1rem;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-radar { position: relative; width: 160px; height: 160px; }
.pre-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(176, 141, 62, 0.3); }
.pre-ring--2 { inset: 22%; border-color: rgba(176, 141, 62, 0.22); }
.pre-ring--3 { inset: 42%; border-color: rgba(176, 141, 62, 0.16); }
.pre-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(201, 168, 92, 0.3), transparent 26%);
  animation: sweep 2.4s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.pre-jet {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  animation: preJetPulse 2.4s ease-in-out infinite;
}
.pre-jet svg { width: 30px; height: 30px; filter: drop-shadow(0 4px 10px rgba(28, 42, 68, 0.25)); }
@keyframes preJetPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

.pre-logo { width: min(440px, 78vw); height: auto; }
.pre-status { font-family: var(--font-sans); font-size: 0.64rem; letter-spacing: 0.4em; color: var(--ink-2); }
.pre-dots i { font-style: normal; animation: blink 1.2s infinite; }
.pre-dots i:nth-child(2) { animation-delay: 0.2s; }
.pre-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 100% { opacity: 0.1; } 50% { opacity: 1; } }
.pre-codes { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.3em; color: var(--ink-3); }

/* ============ NAV ============ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 4vw;
  transition: background 0.5s, border-color 0.5s, padding 0.5s, box-shadow 0.5s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(28, 36, 51, 0.05);
  padding: 0.5rem 4vw;
}
.nav-logo img { height: 62px; width: auto; display: block; transition: height 0.5s var(--ease); }
#nav.scrolled .nav-logo img { height: 50px; }

.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em;
  color: var(--ink-2); text-decoration: none; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 1.3rem; }
.nav-ops {
  font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.24em;
  color: var(--wa); text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  text-transform: uppercase;
}
.ops-dot { width: 7px; height: 7px; border-radius: 50%; background: #23A85D; box-shadow: 0 0 8px rgba(35, 168, 93, 0.7); animation: opsPulse 1.8s infinite; }
@keyframes opsPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.35s; display: block; }

/* ============ HERO ============ */
#hero {
  min-height: 100svh;
  max-width: none;
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 6vw 7rem;
  background:
    radial-gradient(ellipse 75% 60% at 74% 34%, rgba(201, 168, 92, 0.10) 0%, transparent 62%),
    radial-gradient(ellipse 60% 50% at 18% 85%, rgba(28, 42, 68, 0.05) 0%, transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 55%, var(--paper-2) 100%);
  overflow: hidden;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 760px) { #heroCanvas { opacity: 0.5; } }
.hero-codes span {
  position: absolute; font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.26em; color: rgba(28, 36, 51, 0.22);
  animation: floatCode 7s ease-in-out infinite; animation-delay: var(--d);
}
@keyframes floatCode {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-14px); opacity: 0.9; }
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; }
#hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  font-weight: 600;
  margin: 1.5rem 0 1.1rem;
}
.hero-strap {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--ink-2); margin-bottom: 1.2rem; font-weight: 400;
}
.hero-sub { color: var(--ink-2); max-width: 600px; font-size: 1rem; margin-bottom: 2.6rem; }
.hero-ctas { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.hero-ctas--center { justify-content: center; }

.hero-stats {
  display: flex; gap: 3.4rem; margin-top: 3.8rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1.9rem;
}
.hero-stats b { font-family: var(--font-sans); font-size: 1.55rem; font-weight: 300; color: var(--ink); display: block; line-height: 1.25; letter-spacing: 0.04em; }
.hero-stats span { font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 0.26em; color: var(--ink-3); text-transform: uppercase; }

.hero-scroll {
  position: absolute; bottom: 6.6rem; right: 6vw; z-index: 2;
  font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.34em; color: var(--ink-3);
  display: flex; align-items: center; gap: 0.8rem; text-transform: uppercase;
}
.hero-scroll span {
  width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent);
  display: block; animation: scrollHint 2s var(--ease) infinite;
}
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ============ TRUST STRIP ============ */
#strip {
  max-width: none; padding: 1.25rem 0;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  overflow: hidden; background: var(--white);
}
.strip-track {
  display: flex; gap: 2.8rem; white-space: nowrap; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-sans); font-size: 0.64rem; letter-spacing: 0.32em; color: var(--ink-3);
  align-items: center;
}
.strip-track i { color: var(--gold-2); font-style: normal; font-size: 0.5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SERVICES ============ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.svc {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 2.3rem 1.8rem 2rem;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s, background 0.5s;
}
.svc::after {
  content: ""; position: absolute; left: 1.8rem; right: 1.8rem; top: 4.6rem; height: 1px;
  background: linear-gradient(90deg, var(--gold-3), transparent);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 92, 0.5);
  background: linear-gradient(180deg, #FFFEFA, #FBF6EA);
}
.svc-num {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; font-style: italic;
  color: var(--gold); display: block; margin-bottom: 1.4rem; line-height: 1;
}
.svc h3 { font-size: 1.14rem; margin-bottom: 0.8rem; font-weight: 600; line-height: 1.3; }
.svc p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.7; }
.svc-note { margin-top: 2.6rem; font-size: 0.82rem; color: var(--ink-3); max-width: 720px; }
.svc-note b { color: var(--ink-2); font-weight: 400; }

/* ============ OPERATORS ============ */
#operators { background: var(--paper-2); max-width: none; }
#operators .sec-head, #operators .op-grid { max-width: 1440px; margin-left: auto; margin-right: auto; }
#operators .sec-head { margin-bottom: 3.4rem; }
.op-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.op {
  background: var(--paper-2);
  padding: 1.7rem 1.6rem;
  font-family: var(--font-serif); font-size: 1.02rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: baseline; gap: 0.9rem;
  transition: background 0.4s;
}
.op span { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 400; color: var(--gold); letter-spacing: 0.14em; }
.op:hover { background: var(--white); }

/* ============ INDIA GATEWAY ============ */
#gateway { background: var(--white); max-width: none; }
#gateway .gw-wrap { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 5rem; align-items: center; }
.gw-copy h2 { font-size: clamp(2rem, 3.7vw, 3rem); margin: 1.1rem 0 1.4rem; }
.gw-copy p { color: var(--ink-2); margin-bottom: 1.2rem; max-width: 560px; }
.gw-points { list-style: none; margin: 1.8rem 0 2.4rem; }
.gw-points li {
  padding: 0.9rem 0 0.9rem 2.1rem; position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink); font-size: 0.94rem;
}
.gw-points li::before {
  content: "\2708"; position: absolute; left: 0; top: 0.9rem;
  color: var(--gold); font-size: 0.85rem;
}
.gw-map { position: relative; text-align: center; }
#indiaMap { width: 100%; max-width: 470px; filter: drop-shadow(0 30px 60px rgba(28, 42, 68, 0.12)); }
.india-outline {
  fill: url(#mapFill);
  stroke: rgba(176, 141, 62, 0.55);
  stroke-width: 1;
  stroke-linejoin: round;
}
.arrivals path {
  fill: none; stroke: rgba(28, 42, 68, 0.30); stroke-width: 1;
  stroke-dasharray: 5 7; animation: arrivalFlow 3.2s linear infinite;
}
.arrivals path:nth-child(odd) { stroke: rgba(176, 141, 62, 0.45); }
@keyframes arrivalFlow { to { stroke-dashoffset: -48; } }
.node text { font-family: var(--font-sans); font-size: 10.5px; font-weight: 400; letter-spacing: 0.16em; fill: var(--ink-2); }
.node--minor circle { fill: #8D97A8; }
.node--minor text { fill: var(--ink-3); font-size: 9.5px; }
.node--major circle { fill: var(--gold); }
.node--major .halo { fill: url(#majGlow); animation: halo 3s ease-in-out infinite; }
.node--major text { fill: var(--ink); font-weight: 500; }
.node--dxn text { font-size: 10px; }
.node--del circle { fill: var(--gold); }
.node--del .del-glow { fill: url(#delGlow); animation: halo 2.4s ease-in-out infinite; }
.node--del .del-ring { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.6; animation: delRing 2.4s var(--ease) infinite; }
@keyframes delRing { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }
.node--del text { fill: var(--ink); font-size: 12.5px; font-weight: 500; letter-spacing: 0.18em; }
.del-sub { font-size: 7.5px !important; fill: var(--ink-3) !important; letter-spacing: 0.2em !important; font-weight: 400 !important; }
@keyframes halo { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.4); } }
.gw-legend {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem; flex-wrap: wrap;
  margin-top: 1.3rem;
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.22em; color: var(--ink-2);
  text-transform: uppercase;
}
.lg-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.lg-dot--gold { background: var(--gold); box-shadow: 0 0 8px rgba(176, 141, 62, 0.6); }
.lg-dot--navy { background: #8D97A8; margin-left: 1.4rem; }
.gw-cap { font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.3em; color: var(--ink-3); margin-top: 0.9rem; text-transform: uppercase; }

/* ============ PROCESS / STEPS ============ */
#process { max-width: none; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 50%, var(--paper) 100%); }
#process .sec-head, #process .steps, #process .steps-cta { max-width: 1100px; margin-left: auto; margin-right: auto; }
.steps { display: flex; flex-direction: column; gap: 5.2rem; padding: 2rem 0 3rem; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 29px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(176, 141, 62, 0.4) 8%, rgba(176, 141, 62, 0.4) 92%, transparent);
}
.step { position: relative; padding-left: 5.6rem; max-width: 720px; }
.step-tag { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 0.9rem; }
.step-num {
  position: absolute; left: 0; top: -0.4rem;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid rgba(176, 141, 62, 0.45);
  font-family: var(--font-sans); font-size: 1rem; font-weight: 300; letter-spacing: 0.06em; color: var(--gold);
  box-shadow: 0 0 0 8px var(--paper-2), var(--shadow-soft);
}
.step-phase { font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 0.34em; color: var(--ink-3); text-transform: uppercase; }
.step h3 { font-size: 1.5rem; margin-bottom: 0.7rem; font-weight: 600; }
.step p { color: var(--ink-2); font-size: 0.96rem; }
.steps-cta { text-align: center; padding-top: 2.5rem; }

/* ============ DASHBOARD MOCKUP ============ */
.dash {
  max-width: 780px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dash-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.dash-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.dash-dot:first-child { background: #E8AFA6; }
.dash-dot:nth-child(2) { background: #E9D3A0; }
.dash-dot:nth-child(3) { background: #B3D6BC; }
.dash-title { font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.26em; color: var(--ink-3); margin-left: 0.8rem; }
.dash-sample { margin-left: auto; font-family: var(--font-sans); font-size: 0.52rem; letter-spacing: 0.22em; color: var(--gold); border: 1px solid rgba(176, 141, 62, 0.4); padding: 0.2rem 0.7rem; border-radius: 20px; }
.dash-body { padding: 1.6rem 1.9rem; display: grid; gap: 0.15rem; }
.dash-row {
  display: grid; grid-template-columns: 190px 1fr; align-items: center;
  padding: 0.9rem 0.4rem; border-bottom: 1px solid var(--line-soft);
}
.dash-row label { font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 0.28em; color: var(--ink-3); }
.dash-row b { font-family: var(--font-sans); font-weight: 400; font-size: 0.98rem; letter-spacing: 0.02em; color: var(--ink); }
.dash-row--status b { color: #177542; display: flex; align-items: center; gap: 0.7rem; font-size: 0.76rem; letter-spacing: 0.18em; }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #23A85D;
  box-shadow: 0 0 10px rgba(35, 168, 93, 0.6); display: inline-block;
  animation: opsPulse 1.6s infinite;
}
.dash-foot { padding: 1rem 1.9rem 1.4rem; font-size: 0.74rem; color: var(--ink-3); font-style: italic; }

/* ============ TRUST ============ */
#trust { background: var(--paper-2); max-width: none; }
#trust .sec-head, .trust-grid, .trust-docs { max-width: 1200px; margin-left: auto; margin-right: auto; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tr {
  border: 1px solid var(--line-soft); border-radius: 4px; padding: 2rem 1.8rem;
  background: var(--white);
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.tr:hover { border-color: rgba(176, 141, 62, 0.4); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.tr h4 { font-family: var(--font-serif); font-size: 1.18rem; font-weight: 600; color: var(--ink); margin-bottom: 0.55rem; }
.tr p { font-size: 0.86rem; color: var(--ink-2); }
.trust-docs {
  margin-top: 3rem; border: 1px dashed rgba(176, 141, 62, 0.4); border-radius: 6px;
  padding: 2.1rem 2.3rem; background: #FDFBF5;
}
.trust-docs ul { list-style: none; margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; }
.trust-docs li { font-family: var(--font-sans); font-size: 0.76rem; color: var(--ink-2); padding-left: 1.2rem; position: relative; }
.trust-docs li::before { content: "\25B8"; position: absolute; left: 0; color: var(--gold); }
.trust-docs-note { margin-top: 1.2rem; font-size: 0.8rem; color: var(--ink-2); font-style: italic; }

/* ---- DGCA credential panel ---- */
.credential {
  max-width: 1200px; margin: 3rem auto 0;
  display: grid; grid-template-columns: auto 1fr; gap: 2.4rem; align-items: center;
  background: linear-gradient(135deg, #12182A 0%, #1B2440 100%);
  color: #F3EFE4;
  border: 1px solid rgba(201,168,92,0.35);
  border-radius: 8px;
  padding: 2.6rem 2.8rem;
  box-shadow: var(--shadow);
}
.cred-seal { color: var(--gold-2); width: 96px; height: 96px; flex: none; }
.cred-seal svg { width: 100%; height: 100%; }
.cred-body .micro { color: var(--gold-2); margin-bottom: 0.7rem; }
.cred-body h3 { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: #FFFFFF; margin-bottom: 0.7rem; }
.cred-lead { color: #CFD5E0; font-size: 0.95rem; max-width: 720px; margin-bottom: 1.5rem; }
.cred-meta { display: grid; grid-template-columns: repeat(3, auto); gap: 1.6rem 2.6rem; justify-content: start; }
.cred-meta div { display: flex; flex-direction: column; gap: 0.25rem; }
.cred-meta span { font-family: var(--font-sans); font-size: 0.54rem; letter-spacing: 0.24em; color: #8A93A6; text-transform: uppercase; }
.cred-meta b { font-family: var(--font-sans); font-weight: 500; font-size: 0.86rem; color: #F3EFE4; letter-spacing: 0.02em; }
.credential .trust-docs-note { color: #9AA3B4; margin-top: 1.4rem; }
@media (max-width: 760px) {
  .credential { grid-template-columns: 1fr; gap: 1.4rem; padding: 2rem 1.6rem; text-align: left; }
  .cred-seal { width: 72px; height: 72px; }
  .cred-meta { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============ CTA BAND ============ */
#cta-band {
  max-width: none; text-align: center;
  background:
    radial-gradient(ellipse 55% 90% at 50% 115%, rgba(201, 168, 92, 0.18) 0%, transparent 60%),
    var(--paper-2);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.cta-inner { max-width: 820px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); margin: 1.2rem 0 1.3rem; }
.cta-inner p { color: var(--ink-2); margin-bottom: 2.3rem; }

/* ============ REQUEST FORM ============ */
.req {
  max-width: 920px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.req-bar {
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.28em; color: #177542;
  padding: 1.05rem 2.1rem; border-bottom: 1px solid var(--line-soft);
  background: rgba(35, 168, 93, 0.05);
  display: flex; align-items: center; gap: 0.8rem; text-transform: uppercase;
}
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; padding: 2.4rem 2.4rem 0.6rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-sans); font-size: 0.56rem; letter-spacing: 0.3em; color: var(--ink-3); }
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-family: var(--font-sans); font-size: 0.94rem; font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
  width: 100%;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(176, 141, 62, 0.55);
  background: #FFFEF9;
  box-shadow: 0 0 0 3px rgba(201, 168, 92, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--docs p { font-size: 0.8rem; color: var(--ink-2); line-height: 1.6; margin: 0; border: 1px dashed rgba(176, 141, 62, 0.35); border-radius: 4px; padding: 0.9rem 1rem; background: #FDFBF5; }
.field--docs a { color: var(--wa); text-decoration: none; font-weight: 400; }
.req-actions { padding: 1.7rem 2.4rem 2.4rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.btn--submit { border: 0; }
.req-alt { font-size: 0.82rem; color: var(--ink-2); }
.req-alt a { color: var(--wa); text-decoration: none; font-weight: 400; }
.req-note { padding: 0 2.4rem 2rem; font-family: var(--font-sans); font-size: 0.76rem; letter-spacing: 0.12em; color: var(--gold); min-height: 1.4em; }
.req-note.ok { color: #177542; }
.req-note.err { color: #B3403A; }

/* ============ CONTACT ============ */
#contact { padding-bottom: 11rem; }
.ct-copy h2 { font-size: clamp(2rem, 3.7vw, 3rem); margin: 1.1rem 0 1rem; }
.ct-copy > p { color: var(--ink-2); max-width: 560px; margin-bottom: 2.4rem; }
.ct-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; max-width: 860px; }
.ct-card {
  border: 1px solid var(--line-soft); border-radius: 6px;
  padding: 1.7rem 1.8rem; text-decoration: none; display: block;
  background: var(--white);
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.ct-card:hover { border-color: rgba(176, 141, 62, 0.45); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.ct-card .micro { display: block; margin-bottom: 0.7rem; font-size: 0.54rem; }
.ct-card b { font-family: var(--font-serif); font-weight: 600; font-size: 1.12rem; color: var(--ink); display: flex; align-items: center; gap: 0.6rem; }
.wa-ico--card { width: 19px; height: 19px; color: var(--wa); flex: none; }
.ct-card--alert { border-color: rgba(179, 64, 58, 0.3); background: #FFFCFB; }
.ct-card--alert .micro { color: #B3403A; }
.ct-card--alert:hover { border-color: rgba(179, 64, 58, 0.55); }

/* ============ FOOTER SOCIAL ICONS ============ */
.ft-social { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.ft-social a {
  width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--ink-2); transition: all 0.35s var(--ease);
}
.ft-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.ft-social svg { width: 18px; height: 18px; }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--line-soft); background: var(--paper-2); padding: 4.5rem 6vw 9rem; }
.ft-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }
.ft-logo { width: 270px; max-width: 100%; height: auto; }
.ft-brand p { font-size: 0.84rem; color: var(--ink-2); margin-top: 1.3rem; max-width: 300px; }
.ft-col { display: flex; flex-direction: column; gap: 0.7rem; }
.ft-col .micro { margin-bottom: 0.5rem; }
.ft-col a { color: var(--ink-2); text-decoration: none; font-size: 0.86rem; transition: color 0.3s; }
.ft-col a:hover { color: var(--gold); }
.ft-ph { font-family: var(--font-sans); font-size: 0.68rem; color: var(--ink-3); margin-top: 0.6rem; }
.ft-legal { max-width: 1440px; margin: 3.5rem auto 0; border-top: 1px solid var(--line); padding-top: 1.8rem; }
.ft-legal p { font-size: 0.72rem; color: var(--ink-3); max-width: 900px; margin-bottom: 0.8rem; }
.ft-legal a { color: var(--ink-2); text-decoration: none; }

/* ============ SCROLL FLIGHT DECK (night apron) ============ */
#flightDeck {
  position: fixed; left: 0; right: 0; bottom: 0; height: 96px;
  z-index: 800; pointer-events: none;
  opacity: 0; transition: opacity 0.8s;
}
#flightDeck.on { opacity: 1; }
.fd-runway {
  position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(180deg, rgba(18,24,42,0) 0%, rgba(18,24,42,0.85) 42%, #0E1424 100%);
}
.fd-runway::before {
  content: ""; position: absolute; left: 0; right: 0; top: 19px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(201,168,92,0.9) 0 26px, transparent 26px 52px);
  animation: rwCenter 1.4s linear infinite;
  opacity: 0.9;
}
@keyframes rwCenter { to { background-position-x: -52px; } }
.fd-lights {
  position: absolute; left: 0; right: 0; top: 6px; height: 4px;
  background-image: radial-gradient(circle 2px at 12px 2px, rgba(255,225,150,0.95) 0, transparent 2.5px);
  background-size: 60px 4px;
  animation: rwLights 1.4s linear infinite;
  filter: drop-shadow(0 0 3px rgba(255,205,110,0.8));
}
@keyframes rwLights { to { background-position-x: -60px; } }
.fd-jet {
  position: absolute; bottom: 20px; left: 0;
  width: 176px; will-change: transform;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.55));
}
.fd-jet-svg { width: 100%; display: block; }
.fd-contrail {
  position: absolute; top: 46%; right: 92%; height: 2px; width: 0;
  background: linear-gradient(270deg, rgba(255,255,255,0.7), transparent);
  transition: width 0.6s var(--ease);
}
.fd-jet.flying .fd-contrail { width: 24vw; }
.fd-status {
  position: absolute; bottom: 46px; right: 4vw;
  font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.24em; color: #FBF6E9;
  display: flex; align-items: center; gap: 0.6rem; text-transform: uppercase;
  background: #12182A; border: 1px solid rgba(201,168,92,0.4);
  padding: 0.55rem 1.1rem; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.fd-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 10px rgba(201,168,92,0.9); animation: opsPulse 1.6s infinite; }

/* ============ WHATSAPP FLOAT ============ */
#waFloat {
  position: fixed; right: 1.6rem; bottom: 7rem; z-index: 850;
  width: 54px; height: 54px; border-radius: 50%;
  background: #23A85D;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(35, 168, 93, 0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
#waFloat svg { width: 26px; height: 26px; }
#waFloat:hover { transform: scale(1.1); box-shadow: 0 16px 44px rgba(35, 168, 93, 0.55); }

/* ============ LEGAL PAGES (privacy / terms) ============ */
body.legal { background: var(--paper); }
.nav--legal {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 6vw; background: rgba(251,250,246,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav--legal img { height: 54px; width: auto; display: block; }
.nav--legal .back {
  font-family: var(--font-sans); font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-2); text-decoration: none; transition: color 0.3s;
}
.nav--legal .back:hover { color: var(--gold); }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 3.5rem 6vw 5rem; }
.legal-wrap h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3rem); margin: 0.7rem 0 0.4rem; }
.legal-updated { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: 2.6rem; }
.legal-wrap h2 { font-family: var(--font-serif); font-weight: 600; font-size: 1.35rem; margin: 2.3rem 0 0.6rem; color: var(--ink); }
.legal-wrap p { color: var(--ink-2); font-size: 0.94rem; line-height: 1.78; margin-bottom: 0.9rem; }
.legal-wrap ul { margin: 0.4rem 0 1rem 1.2rem; }
.legal-wrap li { color: var(--ink-2); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0.45rem; }
.legal-wrap a { color: var(--gold); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-intro { font-size: 1.02rem; color: var(--ink); border-left: 2px solid var(--gold); padding-left: 1.1rem; }
.legal-foot { border-top: 1px solid var(--line-soft); padding: 2.2rem 6vw; text-align: center; font-size: 0.74rem; color: var(--ink-3); background: var(--paper-2); }
.legal-foot a { color: var(--ink-2); text-decoration: none; }

/* ============ REVEAL ANIMATION BASE ============ */
.reveal { opacity: 0; transform: translateY(34px); }
body.no-js .reveal, .reveal.shown { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .op-grid { grid-template-columns: repeat(3, 1fr); }
  #gateway .gw-wrap { grid-template-columns: 1fr; gap: 3.4rem; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-ops, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #nav.open .nav-links {
    display: flex; position: fixed; inset: 0; top: 64px;
    background: rgba(251, 250, 246, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.4rem;
  }
  #nav.open .nav-links a { font-size: 1rem; }
  #nav.open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  #nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  #nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-docs ul { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  section { padding: 5.5rem 6vw; }
  .svc-grid { grid-template-columns: 1fr; }
  .op-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: 1fr; padding: 1.8rem 1.4rem 0.4rem; }
  .req-actions, .req-note { padding-left: 1.4rem; padding-right: 1.4rem; }
  .ct-cards { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-stats { gap: 1.6rem 2.2rem; }
  .hero-scroll { display: none; }
  .dash-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .nav-logo img { height: 48px; }
  #nav.scrolled .nav-logo img { height: 42px; }
  .fd-jet { width: 92px; }
  .fd-status { right: 4vw; font-size: 0.5rem; letter-spacing: 0.16em; padding: 0.45rem 0.75rem; }
  #waFloat { bottom: 6.4rem; right: 1.1rem; width: 48px; height: 48px; }
  .steps::before { left: 21px; }
  .step { padding-left: 3.9rem; }
  .step-num { width: 44px; height: 44px; font-size: 0.85rem; }
  .pre-logo { width: 82vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
