:root {
  --emerald-950: #002d24;
  --emerald-900: #003d31;
  --emerald-800: #005341;
  --emerald-700: #006b52;
  --emerald-600: #0b7f63;
  --gold-700: #9f731e;
  --gold-600: #bd8c2f;
  --gold-500: #d7aa4d;
  --gold-300: #ead18e;
  --ivory: #fbfaf6;
  --white: #ffffff;
  --ink: #15201d;
  --muted: #5d6965;
  --line: rgba(0, 61, 49, 0.14);
  --shadow: 0 22px 55px rgba(0, 45, 36, 0.14);
  --shadow-soft: 0 10px 30px rgba(0, 45, 36, 0.10);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--gold-600), var(--gold-300)); }
.display, h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p { margin: 0; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 720px; }
.section-heading { display: grid; gap: 18px; margin-bottom: 46px; }
.section-heading.center { text-align: center; justify-items: center; }
.section-heading.center .lead { margin-inline: auto; }

.topbar { background: var(--emerald-950); color: rgba(255,255,255,.9); font-size: .86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold-300); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,61,49,.08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,45,36,.10); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 218px; height: auto; }
.nav { display: flex; align-items: center; gap: 7px; }
.nav a { padding: 11px 13px; font-size: .9rem; font-weight: 750; color: #31403c; border-radius: 999px; transition: .2s; }
.nav a:hover, .nav a.active { color: var(--emerald-800); background: rgba(0,107,82,.08); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; border-radius: 12px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--emerald-900); margin: 5px auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 21px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; font-size: .93rem; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--emerald-700), var(--emerald-950)); box-shadow: 0 12px 25px rgba(0,83,65,.24); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(0,83,65,.30); }
.btn-gold { color: #21322c; background: linear-gradient(135deg, #f0d58f, var(--gold-500)); box-shadow: 0 12px 25px rgba(189,140,47,.22); }
.btn-outline { color: var(--emerald-900); border-color: rgba(0,83,65,.38); background: rgba(255,255,255,.75); }
.btn-light { color: var(--emerald-950); background: white; box-shadow: var(--shadow-soft); }

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
  background: var(--emerald-950);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(90deg, rgba(0,35,28,.91) 0%, rgba(0,45,36,.74) 35%, rgba(0,45,36,.16) 70%, rgba(0,45,36,.05) 100%), url('../images/hero-jet.webp');
  background-size: cover; background-position: center;
  transform: scale(1.01);
}
.hero::after { content:""; position:absolute; inset:auto -10% -220px -10%; height:360px; background:var(--ivory); border-radius:50% 50% 0 0; z-index:-1; opacity:.98; }
.hero-inner { padding: 105px 0 190px; }
.hero-content { max-width: 680px; display: grid; gap: 24px; }
.hero h1 span { color: var(--gold-300); }
.hero .lead { color: rgba(255,255,255,.84); max-width: 590px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-badge { display: inline-flex; gap: 9px; align-items: center; border: 1px solid rgba(255,255,255,.18); background: rgba(0,45,36,.35); backdrop-filter: blur(8px); padding: 9px 13px; border-radius: 999px; font-size: .83rem; }
.hero-badge i { width: 8px; height: 8px; background: var(--gold-300); border-radius: 50%; box-shadow: 0 0 0 4px rgba(234,209,142,.15); }

.trust-strip { margin-top: -120px; position: relative; z-index: 3; }
.trust-panel { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 25px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; }
.trust-item { padding: 18px 20px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.icon-ring { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--emerald-800); background: linear-gradient(135deg, rgba(215,170,77,.18), rgba(0,107,82,.1)); font-size: 1.25rem; }
.trust-item strong { display: block; color: var(--emerald-900); font-size: .93rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.grid-2 { display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; }
.media-collage { position: relative; min-height: 520px; }
.media-main { width: 84%; height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-small { position: absolute; width: 48%; height: 240px; right: 0; bottom: 0; object-fit: cover; border-radius: 20px; border: 10px solid var(--ivory); box-shadow: var(--shadow-soft); }
.gold-card { position: absolute; left: 6%; bottom: 26px; max-width: 235px; padding: 18px 20px; border-radius: 16px; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: #22322e; box-shadow: var(--shadow-soft); font-weight: 800; }
.copy-stack { display: grid; gap: 22px; }
.check-list { display: grid; gap: 13px; }
.check-list div { display: grid; grid-template-columns: 24px 1fr; gap: 11px; align-items: start; color: var(--muted); }
.check-list div::before { content:"✓"; width:22px; height:22px; display:grid; place-items:center; border-radius:50%; background: rgba(0,107,82,.12); color: var(--emerald-700); font-size:.75rem; font-weight:900; }

.bg-white { background: white; }
.bg-emerald { background: linear-gradient(135deg, var(--emerald-950), var(--emerald-800)); color: white; }
.bg-emerald .lead { color: rgba(255,255,255,.73); }
.bg-pattern { position: relative; overflow: hidden; }
.bg-pattern::before { content:""; position:absolute; width:520px; height:520px; border:1px solid rgba(215,170,77,.12); border-radius:50%; right:-200px; top:-220px; box-shadow:0 0 0 60px rgba(215,170,77,.03),0 0 0 120px rgba(215,170,77,.025); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,45,36,.05); transition: .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: rgba(189,140,47,.45); }
.service-card-image { height: 220px; width: 100%; object-fit: cover; }
.service-card-body { padding: 27px; display: grid; gap: 13px; }
.service-number { color: var(--gold-600); font-weight: 900; letter-spacing: .13em; font-size: .72rem; }
.service-card p { color: var(--muted); font-size: .94rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--emerald-700); font-weight: 850; font-size: .88rem; margin-top: 5px; }

.fleet-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fleet-card { position: relative; min-height: 410px; border-radius: 22px; overflow: hidden; color: white; box-shadow: var(--shadow-soft); isolation: isolate; background: var(--emerald-900); }
.fleet-card::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(to top, rgba(0,35,28,.96), rgba(0,45,36,.15) 66%); }
.fleet-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transition: transform .5s ease; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card-body { position:absolute; inset:auto 0 0; padding:28px 24px; display:grid; gap:8px; }
.fleet-card h3 { font-size: 1.55rem; }
.fleet-card p { color: rgba(255,255,255,.75); font-size:.9rem; }
.tag { display:inline-flex; width:max-content; padding:6px 10px; border:1px solid rgba(255,255,255,.22); border-radius:999px; background:rgba(0,45,36,.34); font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }

.livery { display:grid; grid-template-columns: 1fr 1fr; min-height: 560px; background:white; border-radius:30px; overflow:hidden; box-shadow:var(--shadow); }
.livery-image { min-height: 520px; background: linear-gradient(90deg, rgba(0,45,36,.05), rgba(0,45,36,.08)), url('../images/hero-jet.webp') center/cover; }
.livery-copy { padding: clamp(40px, 6vw, 76px); display:grid; align-content:center; gap:22px; }
.swatches { display:flex; gap:14px; }
.swatch { width:54px; height:54px; border-radius:50%; border:6px solid white; box-shadow:0 0 0 1px var(--line), var(--shadow-soft); }
.swatch.white { background:#fff; }
.swatch.emerald { background:linear-gradient(135deg,#008263,#003d31); }
.swatch.gold { background:linear-gradient(135deg,#f5e5b7,#bd8c2f); }

.network-section { position:relative; min-height:570px; display:grid; align-items:center; color:white; background:var(--emerald-950); overflow:hidden; }
.network-section::before { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,35,28,.98) 10%, rgba(0,45,36,.70) 55%, rgba(0,45,36,.05)), url('../images/network.webp') center/cover; }
.network-content { position:relative; max-width:590px; display:grid; gap:22px; padding:90px 0; }
.network-content .lead { color:rgba(255,255,255,.74); }

.quote-banner { position:relative; overflow:hidden; background:linear-gradient(135deg,var(--gold-300),var(--gold-500)); border-radius:28px; padding:50px; display:flex; align-items:center; justify-content:space-between; gap:30px; color:#23352f; box-shadow:var(--shadow); }
.quote-banner::after { content:"✦"; position:absolute; right:28%; top:-80px; font-size:200px; color:rgba(255,255,255,.16); }
.quote-banner h2 { font-size:clamp(2rem,4vw,3.2rem); max-width:760px; }

.page-hero { min-height:480px; display:grid; align-items:center; color:white; position:relative; isolation:isolate; overflow:hidden; background:var(--emerald-950); }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-2; background:linear-gradient(90deg,rgba(0,35,28,.95),rgba(0,45,36,.60),rgba(0,45,36,.14)), var(--hero-image, url('../images/hero-jet.webp')) center/cover; }
.page-hero::after { content:""; position:absolute; inset:auto 0 0; height:6px; background:linear-gradient(90deg,var(--emerald-700),var(--gold-300),var(--emerald-700)); }
.page-hero-content { max-width:760px; display:grid; gap:22px; padding:90px 0; }
.page-hero h1 { font-size:clamp(2.8rem,5vw,5rem); }
.breadcrumb { color:rgba(255,255,255,.70); font-size:.9rem; }
.breadcrumb a { color:var(--gold-300); }

.filter-bar { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:42px; }
.filter-btn { border:1px solid var(--line); background:white; color:var(--emerald-900); padding:10px 15px; border-radius:999px; font-weight:800; }
.filter-btn.active, .filter-btn:hover { color:white; background:var(--emerald-800); border-color:var(--emerald-800); }
.fleet-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.aircraft-card { background:white; border:1px solid var(--line); border-radius:22px; overflow:hidden; box-shadow:0 12px 32px rgba(0,45,36,.06); transition:.25s; }
.aircraft-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.aircraft-card[hidden] { display:none; }
.aircraft-photo { height:230px; position:relative; overflow:hidden; }
.aircraft-photo img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.aircraft-card:hover .aircraft-photo img { transform:scale(1.05); }
.aircraft-category { position:absolute; left:16px; top:16px; background:rgba(0,45,36,.85); color:white; padding:7px 11px; border-radius:999px; font-size:.72rem; font-weight:850; text-transform:uppercase; letter-spacing:.08em; backdrop-filter:blur(6px); }
.aircraft-body { padding:25px; display:grid; gap:12px; }
.aircraft-body p { color:var(--muted); font-size:.94rem; }
.aircraft-features { display:flex; flex-wrap:wrap; gap:8px; }
.aircraft-features span { padding:6px 9px; border-radius:8px; background:rgba(0,107,82,.07); color:var(--emerald-800); font-size:.75rem; font-weight:800; }
.availability { border-top:1px solid var(--line); padding-top:13px; display:flex; justify-content:space-between; color:var(--muted); font-size:.82rem; }
.availability strong { color:var(--gold-700); }
.disclaimer { margin-top:30px; padding:19px 22px; background:rgba(215,170,77,.12); border-left:4px solid var(--gold-600); border-radius:12px; color:#4e4a3a; font-size:.88rem; }

.service-detail { display:grid; grid-template-columns:.85fr 1.15fr; gap:50px; align-items:center; padding:38px; background:white; border:1px solid var(--line); border-radius:26px; box-shadow:0 12px 35px rgba(0,45,36,.05); }
.service-detail + .service-detail { margin-top:28px; }
.service-detail:nth-child(even) { grid-template-columns:1.15fr .85fr; }
.service-detail:nth-child(even) .service-detail-image { order:2; }
.service-detail-image { min-height:340px; width:100%; height:100%; object-fit:cover; border-radius:19px; }
.service-detail-copy { display:grid; gap:18px; }
.service-detail-copy ul { margin:0; padding-left:20px; color:var(--muted); display:grid; gap:8px; }

.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.value-card { padding:28px; background:white; border:1px solid var(--line); border-radius:18px; display:grid; gap:13px; }
.value-card strong { font-family:Georgia,serif; font-size:1.35rem; color:var(--emerald-900); }
.value-card p { color:var(--muted); font-size:.9rem; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:34px; align-items:start; }
.contact-panel { background:linear-gradient(145deg,var(--emerald-950),var(--emerald-800)); color:white; border-radius:26px; padding:40px; display:grid; gap:28px; position:sticky; top:120px; }
.contact-panel p { color:rgba(255,255,255,.72); }
.contact-method { display:grid; grid-template-columns:42px 1fr; gap:13px; align-items:center; }
.contact-method .icon-ring { background:rgba(255,255,255,.12); color:var(--gold-300); }
.contact-method strong { display:block; }
.contact-method span { color:rgba(255,255,255,.7); font-size:.9rem; }
.form-card { background:white; border:1px solid var(--line); border-radius:26px; padding:42px; box-shadow:var(--shadow-soft); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1/-1; }
label { color:var(--emerald-900); font-weight:800; font-size:.88rem; }
input, textarea, select { width:100%; padding:14px 15px; border:1px solid rgba(0,61,49,.20); border-radius:12px; background:#fff; color:var(--ink); outline:none; transition:.2s; }
input:focus, textarea:focus, select:focus { border-color:var(--gold-600); box-shadow:0 0 0 4px rgba(215,170,77,.14); }
textarea { min-height:150px; resize:vertical; }
.honeypot { position:absolute !important; left:-10000px !important; }
.form-note { color:var(--muted); font-size:.82rem; }
.alert { padding:16px 18px; border-radius:12px; margin-bottom:22px; }
.alert.success { background:#e8f5ef; color:#125f49; }
.alert.error { background:#fff0ee; color:#9b362a; }

.footer { background:var(--emerald-950); color:white; padding:70px 0 22px; }
.footer-grid { display:grid; grid-template-columns:1.35fr .8fr .8fr 1fr; gap:46px; }
.footer-brand img { width:230px; background:white; padding:8px 10px; border-radius:12px; }
.footer-brand p { margin-top:20px; color:rgba(255,255,255,.65); max-width:360px; }
.footer h4 { margin:0 0 18px; color:var(--gold-300); font-size:.82rem; text-transform:uppercase; letter-spacing:.15em; }
.footer-links { display:grid; gap:10px; color:rgba(255,255,255,.72); font-size:.9rem; }
.footer-links a:hover { color:var(--gold-300); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:52px; padding-top:20px; display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; color:rgba(255,255,255,.55); font-size:.78rem; }

.whatsapp-float { position:fixed; right:20px; bottom:20px; z-index:40; width:56px; height:56px; border-radius:50%; display:grid; place-items:center; color:white; font-weight:900; background:#1fa866; box-shadow:0 12px 30px rgba(0,0,0,.22); transition:.2s; }
.whatsapp-float:hover { transform:translateY(-3px) scale(1.03); }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1040px) {
  .nav { position:absolute; left:20px; right:20px; top:82px; display:none; flex-direction:column; align-items:stretch; background:white; padding:18px; border-radius:18px; box-shadow:var(--shadow); }
  .nav.open { display:flex; }
  .nav a { text-align:center; }
  .nav-cta { margin-left:0; }
  .menu-toggle { display:block; }
  .trust-panel { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .cards, .fleet-grid { grid-template-columns:repeat(2,1fr); }
  .fleet-preview { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:1/-1; }
}

@media (max-width: 760px) {
  .container { width:min(calc(100% - 28px), var(--container)); }
  .topbar { display:none; }
  .nav-wrap { min-height:74px; }
  .brand img { width:170px; }
  .nav { top:70px; left:14px; right:14px; }
  .hero { min-height:690px; }
  .hero::before { background-image:linear-gradient(90deg,rgba(0,35,28,.94),rgba(0,45,36,.67)),url('../images/hero-jet.webp'); background-position:58% center; }
  .hero-inner { padding:85px 0 170px; }
  .trust-strip { margin-top:-105px; }
  .trust-panel { grid-template-columns:1fr; padding:14px; }
  .trust-item, .trust-item:nth-child(2) { border-right:0; border-bottom:1px solid var(--line); }
  .trust-item:last-child { border-bottom:0; }
  .section { padding:70px 0; }
  .grid-2, .livery, .contact-grid, .service-detail, .service-detail:nth-child(even) { grid-template-columns:1fr; }
  .media-collage { min-height:410px; }
  .media-main { height:340px; width:90%; }
  .media-small { height:180px; }
  .cards, .fleet-grid, .fleet-preview, .values-grid { grid-template-columns:1fr; }
  .livery-image { min-height:340px; }
  .quote-banner { padding:34px 26px; flex-direction:column; align-items:flex-start; }
  .service-detail { padding:22px; gap:25px; }
  .service-detail:nth-child(even) .service-detail-image { order:0; }
  .service-detail-image { min-height:250px; }
  .contact-panel { position:static; }
  .form-card { padding:26px; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-grid > div:last-child { grid-column:auto; }
  .page-hero { min-height:420px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}
