/* ===========================================================
   ABDUL MALIK CONSULTANCY — SHARED STYLESHEET
   Theme: "Boarding Pass / Departure Board"
   NOTE: swap --amber / --teal / --navy and the logo mark
   once real brand colors + logo are supplied.
   =========================================================== */

:root{
  --navy:#0B1330;
  --navy-2:#131B3F;
  --navy-3:#1B2550;
  --amber:#F2A93B;
  --amber-dim:#C98A2E;
  --teal:#4FB8AA;
  --paper:#F7F3E9;
  --paper-2:#EFE7D4;
  --ink:#1B2238;
  --ink-soft:#565C7C;
  --stamp-red:#C1473A;
  --line-on-navy:rgba(247,243,233,0.14);
  --line-on-paper:rgba(27,34,56,0.14);

  /* One typeface across the site. --mono is kept as a variable name only so the
     existing references still resolve; it is no longer a monospace face. */
  --display:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw:1200px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:var(--display);margin:0;line-height:1.08;letter-spacing:-0.01em;}
p{margin:0;}
ul{margin:0;padding:0;list-style:none;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
section{position:relative;}
::selection{background:var(--amber);color:var(--navy);}
:focus-visible{outline:2px solid var(--teal);outline-offset:3px;}
section.pad{padding:96px 0;}

.eyebrow{
  font-family:var(--mono);
  font-size:12.5px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{content:"";width:18px;height:1px;background:currentColor;opacity:0.6;}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--mono);font-size:13.5px;letter-spacing:0.04em;text-transform:uppercase;
  padding:14px 26px;border-radius:3px;border:1px solid transparent;cursor:pointer;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--amber);color:var(--navy);}
.btn-primary:hover{background:#FFC163; transform:translateY(-2px);}
.btn-ghost{border-color:currentColor;color:inherit;}
.btn-ghost:hover{background:rgba(255,255,255,0.08); transform:translateY(-2px);}
.btn-ghost.on-paper{color:var(--ink); border-color:var(--ink-soft);}
.btn-ghost.on-paper:hover{background:rgba(27,34,56,0.06);}
.btn[disabled]{opacity:0.55; cursor:not-allowed; transform:none !important;}

.reveal{
  opacity:0; transform:translateY(18px);
  transition:opacity .65s ease, transform .65s cubic-bezier(.22,.61,.36,1);
  transition-delay:var(--reveal-delay, 0ms);
  will-change:opacity, transform;
}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal.in{will-change:auto;}
/* never let an un-triggered animation hide content on paper */
@media print{ .reveal{opacity:1 !important; transform:none !important;} }
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

/* ====================== TOP BAR ====================== */
.topbar{background:var(--navy); color:rgba(247,243,233,0.75); font-family:var(--mono); font-size:12px; letter-spacing:0.03em;}
.topbar .wrap{display:flex; justify-content:space-between; align-items:center; padding:14px 28px; flex-wrap:wrap; gap:10px;}
.topbar a:hover{color:var(--amber);}
.topbar-left{display:flex; gap:30px; flex-wrap:wrap;}
.topbar-right{display:flex; align-items:center; gap:22px;}

/* Top-bar social icons.
   The bar's text is 12px, so 15px icons read as a peer of the text rather
   than shouting over it. The 26px link box gives a usable target without
   making the bar taller than its 14px padding already does. */
.topbar-social{display:flex; align-items:center; gap:4px;}
.topbar-social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:50%;
  color:rgba(247,243,233,0.72);
  transition:color .2s ease, background .2s ease;
}
.topbar-social svg{width:15px; height:15px; fill:currentColor; display:block;}
.topbar-social a:hover{color:var(--amber); background:rgba(247,243,233,0.1);}

/* ====================== NAV ====================== */
/* Header bar runs wider than the 1200px content wrap so the centred links
   clear the action buttons. Topbar matches it so the two bars align. */
.topbar .wrap, header.site .wrap{max-width:1320px;}
/* Floating capsule nav.
   The sticky strip carries a dark translucent ground; the pill inside it is a
   shade lighter with a hairline border, so it reads as floating on the hero
   rather than as a bar welded to the top. `.scrolled` (added by main.js past
   20px) firms both up so the nav stays legible over the light sections. */
header.site{
  position:sticky; top:0; z-index:60;
  /* Solid at rest so the strip merges into the navy top bar above and the
     dark hero below — the pill then reads as floating on the hero rather
     than as a second bar. */
  background:var(--navy);
  border-bottom:1px solid transparent;
  padding:14px 0;
  transition:background .3s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease;
}
header.site.scrolled{
  /* Once the page moves, the strip disappears entirely and only the capsule
     floats over the content. The glass therefore has to move onto the pill
     itself — see `header.site.scrolled nav.wrap` below. */
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
  padding:10px 0;
}
/* Links are absolutely centred on the bar rather than laid out between the
   logo and the buttons — a grid/flex middle column gets pushed off-centre
   because the button side is wider than the logo side and neither track can
   shrink past its content. */
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  position:relative; padding:11px 14px 11px 26px; color:var(--paper); gap:34px;
  background:rgba(247,243,233,0.07);
  border:1px solid rgba(247,243,233,0.22);
  border-radius:999px;
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
header.site.scrolled nav.wrap{
  /* Dark glass, not the light tint used at rest: with the strip gone the pill
     sits directly on the cream/white sections, and a light fill would leave
     the white nav text unreadable. */
  background:rgba(13,21,52,0.86);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  backdrop-filter:blur(18px) saturate(160%);
  border-color:rgba(247,243,233,0.14);
  box-shadow:0 16px 40px -16px rgba(9,14,35,0.55);
}
nav.wrap > .navlinks{margin:0;}
nav.wrap > .nav-actions{display:flex; align-items:center; gap:12px; margin-left:auto;}
/* the duplicated CTAs inside the <ul> are for the mobile panel only */
.nav-inline-cta{display:none;}
.logo{display:flex; align-items:center; gap:11px; font-family:var(--display); font-weight:700; font-size:17px; color:var(--paper); flex-shrink:0;}
.logo .mark{
  width:36px;height:36px;border-radius:50%; border:1.5px solid var(--amber);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--mono); font-size:11.5px; font-weight:700; color:var(--amber);
  position:relative;
}
.logo .mark::after{content:""; position:absolute; inset:4px; border:1px dashed rgba(242,169,59,0.45); border-radius:50%;}
.logo small{display:block; font-family:var(--mono); font-weight:400; font-size:9px; letter-spacing:0.13em; color:var(--teal); margin-top:2px;}

/* Brand logo. The SVG is 533x158 (~3.37:1); height drives the size and the
   width follows, so the header row height stays predictable. */
.logo img{height:40px; width:auto; display:block;}
footer .logo img{height:44px;}
@media (max-width:600px){ .logo img{height:34px;} }

.navlinks{display:flex; gap:24px; align-items:center;}
.navlinks > li{position:relative;}
.navlinks a{font-size:13.5px; letter-spacing:0.02em; padding:11px 0; position:relative; color:rgba(247,243,233,0.85); display:inline-block;}
.navlinks a:hover, .navlinks a.active{color:var(--paper);}
.navlinks > li > a::after{content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px; background:var(--amber); transform:scaleX(0); transform-origin:left; transition:transform .25s ease;}
.navlinks > li > a:hover::after, .navlinks > li > a.active::after{transform:scaleX(1);}
/* Nav CTA. Listed twice on purpose: the desktop button lives in .nav-actions,
   the mobile copy lives inside .navlinks — and there the bare `.nav-cta`
   selector loses to `.navlinks a` (0,1,1), which would strip the colour and
   padding back to a plain nav link. */
.nav-cta,
.navlinks a.nav-cta{
  margin-left:0;
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--navy);
  padding:12px 26px;
  /* same pill treatment as .v-btn across the site, scaled for the nav bar */
  font-size:14.5px; font-weight:700; letter-spacing:0.01em; text-transform:none;
  border:2px solid var(--amber); border-radius:999px;
  box-shadow:0 2px 14px -6px rgba(242,169,59,0.9);
}
.nav-cta:hover,
.navlinks a.nav-cta:hover{
  background:#FFC163; color:var(--navy);
  transform:translateY(-1px);
  box-shadow:0 6px 18px -6px rgba(242,169,59,0.95);
}
/* the sliding amber underline makes no sense under a solid amber block */
.navlinks > li > a.nav-cta::after{display:none;}

/* secondary nav button — outlined, quieter than the amber CTA */
.nav-secondary,
.navlinks a.nav-secondary{
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--paper); background:transparent;
  border:2px solid rgba(247,243,233,0.4);
  padding:12px 24px; border-radius:999px;
  font-size:14.5px; font-weight:700; letter-spacing:0.01em;
  text-transform:none;
}
.nav-secondary:hover,
.navlinks a.nav-secondary:hover{
  border-color:var(--paper); background:rgba(247,243,233,0.1);
  color:var(--paper); transform:translateY(-1px);
}
.nav-secondary.active{border-color:var(--amber); color:var(--amber);}

/* Only wide enough from 1281px up — below that the links sit in normal flow
   between the logo and the buttons, and below 1080 the burger takes over. */
@media (min-width:1281px){
  nav.wrap > .navlinks{position:absolute; left:50%; transform:translateX(-50%); white-space:nowrap;}
}
@media (max-width:1280px){
  .navlinks{gap:20px;}
  nav.wrap{gap:22px;}
}


.has-dropdown > a .caret{font-size:9px; margin-left:4px; opacity:0.7;}
.dropdown{
  position:absolute; top:100%; left:50%; transform:translate(-50%,6px);
  background:var(--navy-2); border:1px solid var(--line-on-navy); border-radius:6px;
  min-width:200px; padding:8px; opacity:0; pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  box-shadow:0 20px 40px -16px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{opacity:1; pointer-events:auto; transform:translate(-50%,2px);}
.dropdown a{display:block; padding:9px 12px; border-radius:4px; font-size:13px; white-space:nowrap;}
.dropdown a:hover{background:rgba(255,255,255,0.06); color:var(--amber);}
.dropdown a::after{display:none;}

.burger{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
.burger span{width:22px; height:2px; background:var(--paper); display:block;}

/* ====================== PAGE HERO (inner pages) ====================== */
.page-hero{
  background:radial-gradient(ellipse at 85% -10%, rgba(242,169,59,0.12), transparent 50%), var(--navy);
  color:var(--paper); padding:64px 0 56px; border-bottom:1px solid var(--line-on-navy);
}
.page-hero .crumb{font-family:var(--mono); font-size:11.5px; letter-spacing:0.08em; color:rgba(247,243,233,0.5); margin-bottom:16px; text-transform:uppercase;}
.page-hero .crumb a:hover{color:var(--amber);}
.page-hero h1{font-size:clamp(30px,4.2vw,46px); margin-bottom:14px;}
.page-hero p{color:rgba(247,243,233,0.72); max-width:56ch; font-size:16px;}

/* ====================== HERO (home) ====================== */
.hero{background:radial-gradient(ellipse at 18% -10%, rgba(79,184,170,0.16), transparent 55%), radial-gradient(ellipse at 85% 10%, rgba(242,169,59,0.10), transparent 50%), var(--navy); color:var(--paper); padding:80px 0 76px; overflow:hidden;}
.hero .wrap{position:relative;}
#heroCanvas{position:absolute; top:-40px; right:-60px; width:560px; height:420px; max-width:60vw; opacity:0.55; pointer-events:none;}
.hero-grid{display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;}
.board-tag{display:inline-flex; align-items:center; gap:10px; font-family:var(--mono); font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--teal); border:1px solid rgba(79,184,170,0.4); background:rgba(79,184,170,0.07); padding:7px 13px; border-radius:3px; margin-bottom:26px;}
.board-tag .dot{width:6px;height:6px;border-radius:50%;background:var(--teal); box-shadow:0 0 0 3px rgba(79,184,170,0.25);}
.hero h1{font-size:clamp(34px, 5.2vw, 58px); font-weight:700; margin-bottom:22px;}
.hero h1 em{font-style:normal; color:var(--amber);}
.hero p.lede{font-size:17.5px; color:rgba(247,243,233,0.78); max-width:46ch; margin-bottom:34px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px;}

.ticker-board{border:1px solid var(--line-on-navy); border-radius:6px; background:linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)); padding:18px 20px; max-width:480px; position:relative; z-index:2;}
.ticker-row{display:flex; align-items:baseline; gap:14px; font-family:var(--mono);}
.ticker-row .label{font-size:11.5px; letter-spacing:0.14em; color:rgba(247,243,233,0.5); text-transform:uppercase;}
.flap-window{position:relative; height:30px; overflow:hidden; flex:1; min-width:0;}
.flap-word{position:absolute; inset:0; display:flex; align-items:center; font-size:21px; font-weight:700; letter-spacing:0.05em; color:var(--amber); text-shadow:0 0 18px rgba(242,169,59,0.35); transform:translateY(110%); opacity:0; transition:transform .55s cubic-bezier(.4,0,.2,1), opacity .4s ease;}
.flap-word.active{transform:translateY(0); opacity:1;}
.flap-word.leaving{transform:translateY(-110%); opacity:0;}
.ticker-divider{height:1px; background:var(--line-on-navy); margin:14px 0;}
.ticker-meta{display:flex; justify-content:space-between; font-family:var(--mono); font-size:11px; color:rgba(247,243,233,0.45); letter-spacing:0.05em;}

.hero-visual{position:relative; height:420px;}
.pass-float{position:absolute; width:320px; max-width:80vw; background:var(--paper); color:var(--ink); border-radius:8px; box-shadow:0 30px 60px -20px rgba(0,0,0,0.55);}
.pass-float.back{top:8px; right:6px; transform:rotate(6deg); opacity:0.55; z-index:1;}
.pass-float.front{top:46px; right:46px; transform:rotate(-4deg); z-index:2;}
.pass-mini-top{display:flex; justify-content:space-between; align-items:center; padding:16px 18px 10px;}
.pass-mini-top .air{font-family:var(--mono); font-size:11px; letter-spacing:0.1em; color:var(--ink-soft);}
.pass-mini-top .seat{font-family:var(--mono); font-size:11px; color:var(--stamp-red); font-weight:700;}
.pass-mini-route{display:flex; align-items:center; gap:12px; padding:6px 18px 16px;}
.pass-mini-route .city{font-family:var(--display); font-weight:700; font-size:22px;}
.pass-mini-route .plane{flex:1; height:1px; background:repeating-linear-gradient(90deg, var(--ink-soft) 0 6px, transparent 6px 11px); position:relative;}
.pass-mini-stub{border-top:1.5px dashed var(--line-on-paper); padding:12px 18px 16px; display:flex; justify-content:space-between; align-items:center;}
.barcode{display:flex; gap:2px; height:22px; align-items:flex-end;}
.barcode span{width:2px; background:var(--ink); display:block;}

/* ====================== STATS STRIP ====================== */
.stats{background:var(--paper-2); border-top:1px solid var(--line-on-paper); border-bottom:1px solid var(--line-on-paper);}
.stats .wrap{display:grid; grid-template-columns:repeat(4,1fr);}
.stat{padding:34px 22px; border-left:1px dashed var(--line-on-paper); position:relative;}
.stat:first-child{border-left:none;}
.stat .num{font-family:var(--display); font-weight:700; font-size:clamp(26px,3.4vw,38px); color:var(--ink);}
.stat .lbl{font-family:var(--mono); font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft); margin-top:6px;}

/* ====================== SECTION HEADERS ====================== */
.sec-head{max-width:640px; margin-bottom:52px;}
.sec-head .eyebrow{color:var(--stamp-red); margin-bottom:14px;}
.on-navy .sec-head .eyebrow{color:var(--teal);}
.sec-head h2{font-size:clamp(28px,3.6vw,42px); margin-bottom:14px;}
.sec-head p{color:var(--ink-soft); font-size:16px; max-width:54ch;}
.on-navy .sec-head p{color:rgba(247,243,233,0.65);}
.sec-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.sec-head.center .eyebrow{justify-content:center;}
.sec-head.center p{margin-left:auto; margin-right:auto;}

/* ====================== DESTINATIONS (passport stamps) ====================== */
.stamp-row{display:grid; grid-template-columns:repeat(5,1fr); gap:28px;}
.stamp{text-align:center; padding:8px;}
.stamp-circle{
  width:128px; height:128px; margin:0 auto 16px; border-radius:50%;
  border:2.5px solid var(--c, var(--stamp-red));
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  position:relative; color:var(--c, var(--stamp-red));
  transform:rotate(var(--r, -4deg)); transition:transform .3s ease;
}
.stamp:hover .stamp-circle{transform:rotate(0deg) scale(1.04);}
.stamp-circle::before{content:""; position:absolute; inset:7px; border:1px dashed var(--c, var(--stamp-red)); border-radius:50%; opacity:0.55;}
.stamp-circle .country{font-family:var(--display); font-weight:700; font-size:14px; letter-spacing:0.02em; padding:0 10px;}
.stamp-circle .entry{font-family:var(--mono); font-size:8.5px; letter-spacing:0.14em; margin-top:5px; opacity:0.8;}
.stamp .more-lbl{font-family:var(--mono); font-size:11.5px; color:var(--ink-soft);}
a.stamp-link{display:block;}

/* destination detail cards (destinations.php) */
.dest-cards{display:grid; grid-template-columns:repeat(2,1fr); gap:26px;}
.dest-card{background:var(--paper); border:1px solid var(--line-on-paper); border-radius:10px; overflow:hidden;}
.dest-card .dc-head{display:flex; align-items:center; gap:16px; padding:24px 26px; border-bottom:1.5px dashed var(--line-on-paper);}
.dest-card .dc-head .stamp-circle{width:64px; height:64px; margin:0; flex-shrink:0;}
.dest-card .dc-head .stamp-circle .country{font-size:9.5px;}
.dest-card .dc-head .stamp-circle .entry{display:none;}
.dest-card .dc-head h3{font-size:21px;}
.dest-card .dc-body{padding:22px 26px;}
.dest-card .dc-row{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line-on-paper); font-size:13.5px;}
.dest-card .dc-row:last-of-type{border-bottom:none;}
.dest-card .dc-row span:first-child{font-family:var(--mono); font-size:10.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-soft);}
.dest-card .dc-foot{padding:18px 26px 24px;}

/* ====================== ABOUT ====================== */
.about{background:var(--navy); color:var(--paper);}
.about .wrap{display:grid; grid-template-columns:0.95fr 1.05fr; gap:64px; align-items:start;}
.about h2{font-size:clamp(28px,3.6vw,40px); margin-bottom:22px;}
.about p{color:rgba(247,243,233,0.72); margin-bottom:18px; font-size:15.5px;}
.about-cities{display:flex; gap:10px; flex-wrap:wrap; margin-top:28px;}
.city-chip{font-family:var(--mono); font-size:11.5px; letter-spacing:0.06em; border:1px solid var(--line-on-navy); padding:7px 13px; border-radius:3px; color:rgba(247,243,233,0.75);}
.open-pass{background:var(--paper); color:var(--ink); border-radius:10px; padding:34px 30px; box-shadow:0 30px 70px -28px rgba(0,0,0,0.6);}
.open-pass .top{display:flex; justify-content:space-between; align-items:flex-start; padding-bottom:18px; border-bottom:1.5px dashed var(--line-on-paper); margin-bottom:18px;}
.open-pass .top .doc-type{font-family:var(--mono); font-size:11px; letter-spacing:0.12em; color:var(--ink-soft); text-transform:uppercase;}
.open-pass .top .doc-no{font-family:var(--mono); font-size:11px; color:var(--stamp-red);}
.open-pass h4{font-family:var(--display); font-size:19px; margin-bottom:14px;}
.open-pass .row{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--line-on-paper); font-size:13.5px;}
.open-pass .row span:first-child{color:var(--ink-soft); font-family:var(--mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase;}
.open-pass .row:last-child{border-bottom:none;}

/* why-us reasons (about.php) */
.reasons{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.reason{background:var(--paper); border:1px solid var(--line-on-paper); border-radius:8px; padding:26px 22px;}
.reason .ico{width:42px; height:42px; border-radius:50%; border:1.5px solid var(--stamp-red); color:var(--stamp-red); display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-weight:700; margin-bottom:16px;}
.reason h4{font-size:15.5px; margin-bottom:8px;}
.reason p{font-size:13px; color:var(--ink-soft); line-height:1.55;}

/* ====================== PROCESS ====================== */
.process{background:var(--paper-2);}
.steps{display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative;}
.steps::before{content:""; position:absolute; top:23px; left:0; right:0; height:1px; background:repeating-linear-gradient(90deg, var(--ink-soft) 0 7px, transparent 7px 13px); opacity:0.5;}
.step{position:relative; padding:0 16px;}
.step .n{width:46px;height:46px;border-radius:50%; background:var(--navy); color:var(--amber); font-family:var(--mono); font-weight:700; font-size:14px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; position:relative; z-index:1;}
.step h4{font-size:16.5px; margin-bottom:9px;}
.step p{font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

/* ====================== SUCCESS STORIES (boarding passes) ====================== */
.ticket-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px;}
.ticket{background:var(--navy); color:var(--paper); border-radius:10px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 18px 40px -22px rgba(11,19,48,0.5); transition:transform .3s ease, box-shadow .3s ease;}
.ticket:hover{transform:translateY(-6px); box-shadow:0 26px 50px -20px rgba(11,19,48,0.6);}
.ticket-photo{height:170px; overflow:hidden; position:relative;}
.ticket-photo img{width:100%; height:100%; object-fit:cover; object-position:top center;}
.ticket-photo .badge{position:absolute; top:10px; right:10px; font-family:var(--mono); font-size:9.5px; letter-spacing:0.08em; background:rgba(242,169,59,0.95); color:var(--navy); padding:4px 8px; border-radius:3px; font-weight:700;}
.ticket-body{padding:16px 18px 14px;}
.ticket-body h4{font-size:16px; margin-bottom:4px;}
.ticket-route{display:flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; color:rgba(247,243,233,0.6); margin-top:8px;}
.ticket-route .line{flex:1; height:1px; background:repeating-linear-gradient(90deg, rgba(247,243,233,0.45) 0 4px, transparent 4px 8px); position:relative;}
.ticket-route .line::after{content:"✈"; position:absolute; top:-7px; left:50%; transform:translateX(-50%); font-size:10px;}
.ticket-stub{border-top:1.5px dashed var(--line-on-navy); padding:12px 18px 16px; display:flex; justify-content:space-between; align-items:center;}
.ticket-stub .code{font-family:var(--mono); font-size:10.5px; color:rgba(247,243,233,0.55); letter-spacing:0.05em;}
.stub-barcode{display:flex; gap:2px; height:18px; align-items:flex-end;}
.stub-barcode span{width:2px; background:rgba(247,243,233,0.7); display:block;}
.stories-foot{display:flex; justify-content:center; margin-top:44px;}

/* ====================== TEAM ====================== */
.team-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.person{background:var(--paper); border-radius:8px; overflow:hidden; border:1px solid var(--line-on-paper);}
.person img{width:100%; height:280px; object-fit:cover; object-position:top center;}
.person-info{padding:18px 20px;}
.person-info .role{font-family:var(--mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--stamp-red);}
.person-info h4{font-size:17px; margin:6px 0 8px;}
.person-info a.mail{font-family:var(--mono); font-size:12px; color:var(--ink-soft);}
.person-info a.mail:hover{color:var(--ink);}

/* ====================== TESTIMONIALS ====================== */
.testimonials{background:var(--navy); color:var(--paper);}
.quote-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.quote-card{border:1px solid var(--line-on-navy); border-radius:8px; padding:28px 26px; background:rgba(255,255,255,0.02);}
.quote-card .mark{font-family:var(--display); font-size:32px; color:var(--amber); line-height:1; margin-bottom:14px; display:block;}
.quote-card p.q{font-size:15.5px; color:rgba(247,243,233,0.85); margin-bottom:18px;}
.quote-card .who{display:flex; align-items:center; gap:10px; font-family:var(--mono); font-size:12px; color:rgba(247,243,233,0.55);}
.quote-card .who b{color:var(--paper); font-family:var(--body); font-weight:700; font-size:13.5px;}

/* ====================== COURSES (Find a Course) ====================== */
.course-filters{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; padding:20px; background:var(--paper-2); border:1px solid var(--line-on-paper); border-radius:8px;}
.course-filters select,
.course-filters input[type="search"]{
  font-family:var(--mono); font-size:13px; padding:10px 14px; border-radius:4px;
  border:1px solid var(--line-on-paper); background:var(--paper); color:var(--ink); cursor:pointer;
}
.course-filters input[type="search"]{cursor:text; min-width:230px; flex:1 1 230px;}
.course-filters input[type="search"]:focus{outline:none; border-color:var(--ink-soft);}
.course-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.course-card{background:var(--paper); border:1px solid var(--line-on-paper); border-radius:8px; padding:24px; transition:transform .25s ease, box-shadow .25s ease;}
.course-card:hover{transform:translateY(-4px); box-shadow:0 18px 34px -20px rgba(11,19,48,0.35);}
.course-card .tag{display:inline-flex; gap:8px; font-family:var(--mono); font-size:10.5px; letter-spacing:0.07em; text-transform:uppercase; color:var(--stamp-red); margin-bottom:14px;}
.course-card h4{font-size:17px; margin-bottom:8px; line-height:1.3;}
.course-card .uni{font-size:13px; color:var(--ink-soft); margin-bottom:16px;}
.course-card .meta{display:flex; justify-content:space-between; font-family:var(--mono); font-size:11px; color:var(--ink-soft); border-top:1px dashed var(--line-on-paper); padding-top:14px;}
.course-card .cc-foot{margin-top:18px;}
.course-card .cc-foot a{font-family:var(--mono); font-size:12px; color:var(--teal-on-paper, var(--stamp-red)); display:inline-flex; align-items:center; gap:6px;}
.course-card .cc-foot a:hover{text-decoration:underline;}
.course-card[hidden]{display:none;}
.course-empty{display:none; text-align:center; padding:60px 20px; color:var(--ink-soft); font-family:var(--mono); font-size:13px;}
.course-empty.show{display:block;}

/* ====================== VIDEOS (Learn From Our Videos) ====================== */
.video-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.video-card{background:var(--navy); border-radius:8px; overflow:hidden; cursor:pointer; position:relative;}
.video-thumb{position:relative; aspect-ratio:16/9; background:linear-gradient(135deg, var(--navy-3), var(--navy)); display:flex; align-items:center; justify-content:center;}
.video-thumb .play{
  width:54px;height:54px;border-radius:50%; background:rgba(242,169,59,0.95); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:18px;
  transition:transform .25s ease;
}
.video-card:hover .play{transform:scale(1.1);}
.video-info{padding:16px 18px 20px; color:var(--paper);}
.video-info h4{font-size:14.5px; margin-bottom:6px; line-height:1.35;}
.video-info span{font-family:var(--mono); font-size:10.5px; color:rgba(247,243,233,0.5); text-transform:uppercase; letter-spacing:0.06em;}

.video-modal{position:fixed; inset:0; background:rgba(11,19,48,0.92); z-index:200; display:none; align-items:center; justify-content:center; padding:24px;}
.video-modal.open{display:flex;}
.video-modal .frame-wrap{width:100%; max-width:880px; aspect-ratio:16/9; background:#000; position:relative;}
.video-modal iframe{width:100%; height:100%; border:0;}
.video-modal .close-modal{position:absolute; top:-44px; right:0; color:var(--paper); font-family:var(--mono); font-size:13px; background:none; border:1px solid var(--line-on-navy); padding:8px 14px; border-radius:4px; cursor:pointer;}
.video-modal .close-modal:hover{border-color:var(--amber); color:var(--amber);}

/* ====================== PARTNER PAGE ====================== */
.partner-benefits{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:60px;}
.benefit{padding:26px; border:1px solid var(--line-on-paper); border-radius:8px; background:var(--paper);}
.benefit .num{font-family:var(--mono); font-size:11px; color:var(--stamp-red); margin-bottom:12px;}
.benefit h4{font-size:16px; margin-bottom:10px;}
.benefit p{font-size:13.5px; color:var(--ink-soft); line-height:1.55;}

/* ====================== FORMS (contact / apply / partner) ====================== */
.form-card{background:var(--navy); color:var(--paper); border-radius:12px; padding:44px 46px; position:relative; overflow:hidden;}
.form-card::before{content:""; position:absolute; inset:0; background:radial-gradient(ellipse at 90% 0%, rgba(242,169,59,0.10), transparent 55%); pointer-events:none;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px 22px; position:relative;}
.form-grid .full{grid-column:1 / -1;}
.field{display:flex; flex-direction:column; gap:8px;}
.field label{font-family:var(--mono); font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(247,243,233,0.6);}
.field input, .field select, .field textarea{
  font-family:var(--body); font-size:14.5px; padding:12px 14px; border-radius:5px;
  border:1px solid var(--line-on-navy); background:rgba(255,255,255,0.04); color:var(--paper);
  width:100%;
}
.field select{font-family:var(--body);}
.field select option{color:#000;}
.field input::placeholder, .field textarea::placeholder{color:rgba(247,243,233,0.32);}
.field input:focus, .field select:focus, .field textarea:focus{outline:none; border-color:var(--amber); background:rgba(255,255,255,0.07);}
.field textarea{resize:vertical; min-height:110px;}
.form-foot{display:flex; align-items:center; gap:18px; margin-top:30px; flex-wrap:wrap; position:relative;}
.form-note{font-family:var(--mono); font-size:11px; color:rgba(247,243,233,0.45);}

.form-banner{padding:16px 20px; border-radius:6px; font-family:var(--mono); font-size:13px; margin-bottom:28px; display:flex; align-items:center; gap:10px;}
.form-banner.success{background:rgba(79,184,170,0.12); border:1px solid rgba(79,184,170,0.4); color:var(--teal);}
.form-banner.error{background:rgba(193,71,58,0.12); border:1px solid rgba(193,71,58,0.4); color:var(--stamp-red);}

/* ====================== CONTACT / GATE PANEL ====================== */
.gate-panel{background:var(--navy); color:var(--paper); border-radius:12px; padding:54px 50px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px; align-items:center; position:relative; overflow:hidden;}
.gate-panel::before{content:""; position:absolute; inset:0; background:radial-gradient(ellipse at 90% 0%, rgba(242,169,59,0.12), transparent 55%); pointer-events:none;}
.gate-panel h2{font-size:clamp(26px,3.4vw,36px); margin-bottom:16px;}
.gate-panel p{color:rgba(247,243,233,0.7); margin-bottom:28px; max-width:48ch;}
.gate-info{border:1px solid var(--line-on-navy); border-radius:8px; padding:24px 26px; position:relative;}
.gate-info .row{display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px dashed var(--line-on-navy); font-size:13.5px;}
.gate-info .row:last-child{border-bottom:none;}
.gate-info .row span:first-child{font-family:var(--mono); font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(247,243,233,0.5);}
.gate-info .row span:last-child{text-align:right; color:var(--paper);}
.gate-info .row a:hover{color:var(--amber);}

/* ====================== FOOTER ====================== */
footer{background:var(--navy-2); color:rgba(247,243,233,0.7); padding:64px 0 28px; border-top:1px solid var(--line-on-navy);}
.foot-grid{display:grid; grid-template-columns:1.3fr 0.85fr 0.85fr 0.85fr 1.1fr; gap:36px; margin-bottom:48px;}
.foot-grid h5{font-family:var(--mono); font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(247,243,233,0.45); margin-bottom:16px;}
.foot-grid ul li{margin-bottom:10px;}
.foot-grid ul a:hover{color:var(--amber);}
.foot-about p{font-size:13.5px; color:rgba(247,243,233,0.6); margin-top:14px; max-width:32ch;}
.foot-quote{font-family:var(--display); font-style:normal; font-size:15px; color:var(--paper); border-left:2px solid var(--amber); padding-left:14px; margin-top:8px;}
.foot-bottom{border-top:1px solid var(--line-on-navy); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:12.5px; color:rgba(247,243,233,0.45);}
.foot-social{display:flex; gap:10px; flex-wrap:wrap;}
.foot-social a{
  border:1px solid var(--line-on-navy); width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:rgba(247,243,233,0.75);
  transition:color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.foot-social svg{width:17px; height:17px; fill:currentColor; display:block;}
.foot-social a:hover{
  border-color:var(--amber); color:var(--amber);
  background:rgba(242,169,59,0.1); transform:translateY(-2px);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width:1080px){
  /* header keeps real vertical padding on small screens, with a 20px gutter
     that matches the content wrap */
  .topbar .wrap{padding:12px 20px;}
  nav.wrap{padding:9px 10px 9px 18px; gap:16px;}
  .topbar-left{gap:20px;}
  .topbar-right{gap:20px;}
  nav.wrap{grid-template-columns:1fr auto;}
  nav.wrap > .nav-actions{display:none;}
  nav.wrap > .burger{grid-column:2;}
  .nav-inline-cta{display:block;}
  .navlinks{display:none;}
  .burger{display:flex;}
  .navlinks.mobile-open{
    display:flex; flex-direction:column; align-items:stretch; gap:2px;
    position:absolute; top:calc(100% + 10px); left:0; right:0;
    background:rgba(11,19,48,0.97);
    -webkit-backdrop-filter:blur(14px);
    backdrop-filter:blur(14px);
    padding:16px 22px 24px; border:1px solid rgba(247,243,233,0.16);
    border-radius:22px;
    box-shadow:0 24px 40px -20px rgba(0,0,0,0.55);
  }
  .navlinks.mobile-open > li{width:100%;}
  .navlinks.mobile-open > li > a{padding:12px 0; width:100%;}
  .navlinks.mobile-open a.nav-cta,
  .navlinks.mobile-open a.nav-secondary{display:flex; justify-content:center; width:100%;}
  .navlinks.mobile-open a.nav-secondary{margin:12px 0 0;}
  .navlinks.mobile-open a.nav-cta{margin:10px 0 0;}
  .navlinks.mobile-open .dropdown{
    position:static; opacity:1; pointer-events:auto; transform:none;
    background:none; border:none; box-shadow:none; padding:0 0 0 14px; margin-bottom:6px; display:none;
  }
  .navlinks.mobile-open .has-dropdown.open .dropdown{display:block;}
  .navlinks.mobile-open .dropdown a{padding:9px 0; font-size:13px; color:rgba(247,243,233,0.7);}
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{display:none;}
  #heroCanvas{display:none;}
  .stats .wrap{grid-template-columns:repeat(2,1fr);}
  .stat:nth-child(3){border-left:none;}
  .stamp-row{grid-template-columns:repeat(3,1fr); row-gap:30px;}
  .about .wrap{grid-template-columns:1fr;}
  .steps{grid-template-columns:repeat(2,1fr); row-gap:36px;}
  .steps::before{display:none;}
  .ticket-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .quote-grid{grid-template-columns:1fr;}
  .gate-panel{grid-template-columns:1fr; padding:38px 28px;}
  .foot-grid{grid-template-columns:1fr 1fr 1fr; row-gap:32px;}
  .dest-cards{grid-template-columns:1fr;}
  .reasons{grid-template-columns:repeat(2,1fr);}
  .course-grid{grid-template-columns:repeat(2,1fr);}
  .video-grid{grid-template-columns:repeat(2,1fr);}
  .partner-benefits{grid-template-columns:1fr;}
  .form-card{padding:32px 26px;}
}
@media (max-width:560px){
  section.pad{padding:64px 0;}
  .stamp-row{grid-template-columns:repeat(2,1fr);}
  .ticket-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .stats .wrap{grid-template-columns:1fr 1fr;}
  .steps{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr;}
  .topbar{font-size:11.5px;}
  .topbar .wrap{padding:10px 20px;}
  /* Top bar is phone + email on the left, social icons on the right. */
  .topbar-right{gap:0;}
  .topbar-left{gap:14px;}
  .topbar .wrap{justify-content:space-between; flex-wrap:nowrap;}
  /* Six icons plus the phone/email block is tight at 390px — trim the icon
     boxes and let the left block shrink so nothing runs past the gutter. */
  .topbar-social{gap:2px;}
  .topbar-social a{width:22px; height:22px;}
  .topbar-social svg{width:14px; height:14px;}
  .topbar-left{min-width:0; flex:0 1 auto;}
  .topbar-right{flex:0 0 auto;}
  .form-grid{grid-template-columns:1fr;}
  .course-grid{grid-template-columns:1fr;}
  .video-grid{grid-template-columns:1fr;}
  .reasons{grid-template-columns:1fr;}
}
