* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

/* =========================
   Tokens (UPDATED)
========================= */
:root{
  /* Layout */;
  --header-h: 58px;

  /* Surfaces */
  --bg: #F9F9F9;                 /* off-white page */
  --card: rgba(255,255,255,.92); /* softened white */
  --surface: rgba(255,255,255,.78);

  /* Text */
  --text: #0b1b33;               /* tech navy */
  --muted:#5d6b7b;
  --navy:#0b1b33;
  --navy2:#10284f;

  /* Brand accents (use mostly as borders/highlights) */
  --gold:  #0b1b33;              /* refined champagne */
  --gold2: #0b1b33;              /* light gold */

  /* Lines + shadows */
  --line: rgba(15, 25, 40, .10);
  --line-strong: rgba(15, 25, 40, .16);
  --shadow: 0 18px 40px rgba(9, 16, 26, .10);
  --shadow2: 0 10px 26px rgba(9, 16, 26, .12);

  /* Radius */
  --radius: 0px;
  --radius2: 0px;

  /* Glass buttons (OFF-GREY / TRANSPARENT) */
  --btn-border-accent: rgba(8, 0, 114, 0.815);
  --btn-text: rgba(28,43,64);

  /* Glass strength */
  --glass-blur: 14px;
  --glass-sat: 140%;

  /* Focus */
  --focus: rgba(44, 45, 98, 0.888);
}

:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

body{
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(230,177,92,.12), transparent 55%),
    radial-gradient(900px 420px at 85% 10%, rgba(16,40,79,.10), transparent 58%),
    var(--bg);
  color: #191b31;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height: 1.45;
}

/* Accessibility */
.skip{
  position:absolute; left:-999px; top: 8px;
  padding:10px 12px; border-radius: 0px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  z-index: 9999;
}
.skip:focus{ left: 10px; }

/* Layout */
.container{
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* =========================
   Header
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header.is-scrolled{
  box-shadow: 0 10px 30px rgba(9,16,26,.10);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: px 0;                 /* slim tech header */
  min-height: var(--header-h);
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 74px; height: 74px;      /* fits slim header */
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}
.brand__text strong{
  display:block;
  font-size: 14.5px;
  letter-spacing: .2px;
}
.brand__text span{
  display:block;
  font-size: 12px;
  color: var(--muted);
}

/* Nav */
.nav-toggle{
  display:none;
  width: 40px; height: 40px;
  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.14);
  background: transparent;
  box-shadow: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-toggle:hover{
  background: rgba(11,27,51,.06);
  border-color: rgba(11,27,51,.22);
}
.nav-toggle:active{ transform: translateY(1px); }
.nav-toggle__bars{
  display:block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 0px;
  position: relative;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background: var(--navy);
  border-radius: 0px;
}
.nav-toggle__bars::before{ top:-6px; }
.nav-toggle__bars::after{ top: 6px; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav__link{
  font-size: 14px;
  color: rgba(25, 40, 62);
  padding: 4px 30px;
  border-radius: 0px;
  transition: background .18s ease, color .18s ease;
}
.nav__link:hover{ background: rgba(255,255,255,.10); color: #ffffff; }

.nav__dropdown{ position: relative; }
.nav__link--btn{
  display:flex;
  align-items:center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.chev{ fill: rgba(11,27,51,.7); }

.nav__menu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: var(--shadow2);
  border-radius: 0px;
  padding: 8px;
  display:none;
}
.nav__dropdown.is-open .nav__menu{ display:block; }
.nav__item{
  display:block;
  padding: 10px 12px;
  border-radius: 0px;
  color: var(--gold);
}
.nav__item:hover{ background: rgba(16,40,79,.08); }

.nav__lang{ position: relative; }
.lang{
  display:flex;
  align-items:center;
  gap: 8px;

  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.10);
  background: rgba(255,255,255,.78);
  cursor:pointer;
  color: rgba(11,27,51,.86);
}
.lang__menu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: var(--shadow2);
  border-radius: 0px;
  padding: 8px;
  display:none;
}
.nav__lang.is-open .lang__menu{ display:block; }
.lang__item{
  display:block;
  padding: 10px 12px;
  border-radius: 0px;
}
.lang__item:hover{ background: rgba(242,208,138,.18); }

/* =========================
   Buttons (UPDATED to glass)
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 0px;
  padding: 12px 18px;
  font-weight: 650;
  letter-spacing: .2px;

  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  color: var(--btn-text);
  box-shadow: var(--btn-shadow);

  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));

  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,0) 62%),
    radial-gradient(600px 220px at 20% 20%, rgba(242,208,138,.18), transparent 55%);
  pointer-events:none;
  opacity:.75;
}
.btn:active{ transform: translateY(1px); }

.btn:hover{
  background: var(--btn-bg-hover);
  border-color: var(--btn-border-accent);
  box-shadow: 0 18px 38px rgba(9,16,26,.14);
}

/* Primary now = glass with gold accent (NOT gold fill) */
.btn--primary{
  border-color: rgba(199, 169, 110, 0.628);
  box-shadow: 0 16px 36px rgba(242,208,138,.10), 0 14px 28px rgba(9,16,26,.12);
  color: rgba(11,27,51,.94);
}
.btn--primary:hover{
  border-color: rgba(242,208,138,.90);
  box-shadow: 0 18px 40px rgba(242,208,138,.14), 0 18px 38px rgba(9,16,26,.14);
}

/* Ghost stays subtle */
.btn--ghost{
  background: rgba(255,255,255,.50);
  border-color: rgba(15,25,40,.12);
  color: rgba(11,27,51,.86);
  box-shadow: 0 10px 26px rgba(9,16,26,.08);
}
.btn--ghost:hover{ background: rgba(255,255,255,.70); border-color: rgba(242,208,138,.55); }

.btn--sm{
  padding: 10px 14px;
  border-radius: 0px;
  font-size: 13px;
}

/* =========================
   Hero
========================= */
.hero{ padding: 18px 0 0; }
.hero__frame{
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: var(--shadow);
  position: relative;
}

/* Background image layer */
.hero__media{
  height: 360px;
  background-image:url-("../images/hero-takeoff.webp");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.12) contrast(1.03) brightness(1.08);
}

.hero__content{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  justify-content:center;
  padding: 42px 44px;
  max-width: 620px;
}

.hero__content h1{
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.05;
  font-size: clamp(34px, 4.1vw, 54px);
  color: #F9F9F9;
}
.hero__content p{
  margin: 14px 0 0;
  max-width: 520px;
  color: #F9F9F9;
  font-size: 15.5px;
}
.hero__cta{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Search panel */
.search{ margin-top: 18px; }
.search__title{
  margin: 18px 0 14px;
  text-align:center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.4px;
  color: var(--navy);
}

.search__bar{
  display:grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr 0.7fr auto;
  gap: 12px;
  align-items:end;
  padding: 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: 0 14px 30px rgba(9,16,26,.08);
}

.field__label{
  display:block;
  font-size: 12px;
  color: rgba(11,27,51,.65);
  margin: 0 0 6px;
}
.field__input{
  width:100%;
  height: 46px;
  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.10);
  background: rgba(255,255,255,.90);
  padding: 0 12px;
  color: rgba(11,27,51,.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.field__input::placeholder{ color: rgba(11,27,51,.40); }

.search__btn{ height: 46px; white-space: nowrap; }

/* =========================
   Sections + Cards
========================= */
.section{ padding: 28px 0; }
.section--soft{
  background: linear-gradient(180deg, rgba(16,40,79,.06), transparent 60%);
  border-top: 1px solid rgba(15,25,40,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.section-head{ text-align:center; margin-bottom: 16px; }
.section-head h2{
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: -0.4px;
  font-size: 34px;
  color: var(--navy);
}
.section-head p{
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(11,27,51,.72);
}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards-3–tight{ margin-top: 18px; }

.card{
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: 0 18px 40px rgba(9,16,26,.08);
}
.card--image{
  position: relative;
  min-height: 260px;
  display:block;
}
.card--image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.02) brightness(1.08);
  transform: scale(1.01);
}
.card__overlay{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  justify-content:flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.00), rgba(11,27,51,.62));
  color: #fff;
}
.card__overlay h3{
  margin: 0;
  font-size: 18px;
  letter-spacing: .2px;
}
.card__overlay p{
  margin: 6px 0 12px;
  font-size: 13px;
  color: rgba(255,255,255,.90);
}

.card--why img{
  width:100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.02) brightness(1.10);
}
.card__body{ padding: 16px 16px 18px; }
.card__body h3{ margin: 0; font-size: 16.5px; }
.card__body p{
  margin: 8px 0 0;
  color: rgba(11,27,51,.70);
  font-size: 13.8px;
}

/* =========================
   Story block
========================= */
.story{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.story__wide{
  position: relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: var(--shadow);
  min-height: 340px;
}
.story__wideMedia{
  position:absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,247,246,.92) 0%, rgba(247,247,246,.48) 42%, rgba(247,247,246,.06) 68%),
    url("../images/story-wide.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.14) contrast(1.02) brightness(1.10);
}
.story__wideContent{
  position:relative;
  z-index: 1;
  padding: 34px;
  max-width: 640px;
}
.story__wideContent h2{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 36px;
  letter-spacing: -0.5px;
  line-height: 1.08;
  color: var(--navy);
}
.story__wideContent p{
  margin: 10px 0 16px;
  color: rgba(11,27,51,.72);
  max-width: 560px;
}
.story__dots{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  align-items:center;
}
.story__dots span{
  width: 7px; height: 7px;
  border-radius: 0px;
  background: rgba(11,27,51,.22);
}
.story__dots .is-on{
  width: 18px;
  background: rgba(242,208,138,.95);
}

.story__side{
  display:grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}
.story__tile{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: 0 16px 34px rgba(9,16,26,.08);
  background: #fff;
}
.story__tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.02) brightness(1.12);
  transform: scale(1.01);
}

/* =========================
   Footer
========================= */
.footer{
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11,27,51,.96), rgba(8,18,35,.98));
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.08);
}


/* Subtle tech glow + grid */
.footer::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(800px 500px at 15% 0%, rgba(242,208,138,.18), transparent 62%),
    radial-gradient(900px 560px at 85% 15%, rgba(242,208,138,.12), transparent 65%),
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  opacity: .30;
  pointer-events:none;
}

.footer > .container{ position:relative; z-index:1; }

@keyframes footerDrift{
  from{ transform: scale(1.03) translateY(0px); }
  to  { transform: scale(1.07) translateY(-12px); }
}

@media (prefers-reduced-motion: reduce){
  .footer::before{ animation:none; }
}

.footer__grid{
  padding: 14px 0 20px;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 20px;
}
.footer__logoRow{ display:flex; align-items:center; gap: 12px; }
.footer__logo{ width: 40px; height: 40px; border-radius: 0px; object-fit: cover; }
.footer__brand strong{ display:block; }
.footer__brand span{ display:block; font-size: 12px; color: rgba(255,255,255,.68); }
.footer__muted{ color: rgba(255,255,255,.70); font-size: 13px; margin: 12px 0; }

.footer__col h3{ margin: 0 0 10px; font-size: 14px; letter-spacing: .2px; }
.footer__col a{ display:block; padding: 8px 0; color: rgba(255,255,255,.78); }
.footer__col a:hover{ color: #fff; }

.social{ display:flex; gap: 10px; margin-top: 10px; }
.social__btn{
  width: 40px; height: 40px;
  display:grid;
  place-items:center;
  border-radius: 0px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: transform .18s ease, background .18s ease;
}
.social__btn:hover{ transform: translateY(-1px); background: rgba(242,208,138,.18); }
.social__btn svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.86); }

.newsletter{ display:flex; gap: 10px; align-items:center; margin-top: 10px; }
.newsletter input{
  flex:1;
  height: 42px;
  border-radius: 0px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 12px;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.58); }

.footer__bottom{
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__bottom small{ color: rgba(255,255,255,.70); }
.footer__bottomLinks a{ color: rgba(255,255,255,.78); }
.footer__bottomLinks a:hover{ color: #fff; }
.footer__bottomLinks span{ margin: 0 8px; color: rgba(255,255,255,.35); }

/* Screen-reader only */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip: rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 820px){
  .search__bar{ grid-template-columns: 1fr 1fr; }
  .search__btn{ grid-column: 1 / -1; width: 100%; }
  .cards-3{ grid-template-columns: 1fr; }
  .story{ grid-template-columns: 1fr; }
  .story__side{ grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav{
    position: fixed;
    top: calc(var(--header-h) + 12px);
    left: 14px;
    right: 14px;
    background: rgba(239,239,239);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 0px;
    box-shadow: var(--shadow);
    padding: 12px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav.is-open{ display:flex; }
  .nav__menu, .lang__menu{
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0px;
    margin-top: 6px;
  }
  .nav__dropdown, .nav__lang{ width: 100%; }
  .nav__link{ width: 100%; }
  .lang{ width: 100%; justify-content: space-between; }
  .hero__content{ padding: 28px; }
  .hero__media{
    height: 420px;
    background-position: 70% center;
    background:
      linear-gradient(180deg, rgba(247,247,246,.92) 0%, rgba(247,247,246,.35) 45%, rgba(247,247,246,.10) 100%),
      url("../images/hero-about.webp");
    background-size: cover;
    filter: saturate(1.14) contrast(1.03) brightness(1.10);
  }
}

@media (max-width: 520px){
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .hero__content h1{ letter-spacing: -0.4px; }
  .search__title{ font-size: 26px; }
  .story__side{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}

/* Slim header tuning */
@media (max-width: 980px){
  :root{ --header-h: 54px; }
  .brand{ min-width: 160px; }
}
@media (max-width: 520px){
  :root{ --header-h: 50px; }
  .brand{ min-width: auto; }
}

/* =========================
   About — Option 2 layout
========================= */
.hero__media--about{
  background:url("../images/hero-about.webp");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.10) contrast(1.03) brightness(1.08);
}

.about-grid2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.aboutCard{ overflow:hidden; }

.aboutCard__head{ padding: 22px 22px 0; }
.aboutCard__head h3{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--navy);
}
.aboutCard__head p{
  margin: 10px 0 0;
  color: rgba(11,27,51,.70);
  max-width: 56ch;
}

.aboutList{
  list-style:none;
  margin: 16px 0 0;
  padding: 0 22px 18px;
  display:grid;
  gap: 12px;
}
.aboutList li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(11,27,51,.78);
}
.aboutList .dot{
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,208,138,.18);
  margin-top: 6px;
  flex: 0 0 auto;
}

.aboutCard__foot{
  padding: 0 22px 22px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.statsGrid{
  padding: 16px 22px 10px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.stat{
  border: 1px solid rgba(15,25,40,.10);
  background: rgba(255,255,255,.78);
  border-radius: 0px;
  padding: 14px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.70);
}
.stat strong{
  display:block;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.stat span{
  display:block;
  margin-top: 4px;
  color: rgba(11,27,51,.65);
  font-size: 13.5px;
}

.aboutCard__note{
  padding: 0 22px 22px;
  border-top: 1px solid rgba(15,25,40,.08);
  background: linear-gradient(180deg, rgba(16,40,79,.04), transparent 70%);
}
.aboutCard__note p{
  margin: 14px 0 0;
  color: rgba(11,27,51,.72);
  font-size: 14px;
}

.badgeRow{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
  margin: 18px 0 0;
}
.badge{
  border: 1px dashed rgba(15,25,40,.18);
  background: rgba(255,255,255,.70);
  border-radius: 0px;
  padding: 16px 10px;
  text-align:center;
  color: rgba(11,27,51,.62);
  font-size: 13.5px;
}

.ctaBand{
  margin-top: 18px;
  border-radius: var(--radius2);
  padding: 22px;
  border: 1px solid rgba(15,25,40,.10);
  background: linear-gradient(135deg, rgba(242,208,138,.20), rgba(255,255,255,.86));
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(9,16,26,.06);
}

.ctaBand__copy h3{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--navy);
}
.ctaBand__copy p{
  margin: 10px 0 0;
  color: rgba(11,27,51,.70);
  max-width: 62ch;
}
.ctaBand__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px){
  .about-grid2{ grid-template-columns: 1fr; }
  .badgeRow{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ctaBand{ flex-direction: column; align-items: flex-start; }
  .ctaBand__actions{ justify-content: flex-start; }
}
@media (max-width: 520px){
  .statsGrid{ grid-template-columns: 1fr; }
  .badgeRow{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* =========================
   Destinations (Option 2)
========================= */
.hero--dest{ padding-top: 18px; }
.destHero{ position: relative; }
.destHero__media{
  height: 320px;
  background:
    linear-gradient(90deg, rgba(247,247,246,.96) 0%, rgba(247,247,246,.44) 38%, rgba(247,247,246,.08) 60%),
    url("../images/hero-takeoff.webp");
  background-size: cover;
  background-position: center right;
  filter: saturate(1.12) contrast(1.03) brightness(1.08);
}

.destHero__content{
  position: absolute;
  inset: 0;
  padding: 46px 52px;
  max-width: 820px;
}
.destHero__content .kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(26, 29, 62, 0.92);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,25,40,.10);
  padding: 8px 12px;
  border-radius: 0px;
  font-weight: 700;
}
.destHero__content h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.6px;
}
.destHero__content .lead{
  margin: 0;
  color: rgba(11,27,51,.72);
  max-width: 56ch;
}
.destHero__actions{
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destHero__search{
  position: absolute;
  right: 24px;
  top: 24px;
  width: min(420px, calc(100% - 48px));
  padding: 18px;
}
.destHero__searchTitle{ margin: 0 0 12px; font-size: 18px; }
.destSearch{ display:grid; gap: 10px; }
.destSearch__btn{ width: 100%; }
.destSearch__hint{ margin: 4px 2px 0; font-size: 13px; color: rgba(11,27,51,.64); }

.destLayout{
  display:grid;
  grid-template-columns: 1.6fr .95fr;
  gap: 18px;
  align-items: start;
}

.destMap, .destRoutes{ padding: 18px; }
.destMap__head h2, .destRoutes__head h2{ margin: 0; }
.destMap__head p, .destRoutes__head p{
  margin: 8px 0 0;
  color: rgba(11,27,51,.66);
}

.destMap__canvas{
  margin-top: 14px;
  height: 520px;
  border-radius: var(--radius2);
  background: radial-gradient(1200px 500px at 60% 40%, rgba(242,208,138,.12), transparent 60%),
              linear-gradient(180deg, rgba(11,27,51,.06), rgba(11,27,51,.02));
  border: 1px solid rgba(15,25,40,.10);
  position: relative;
  overflow:hidden;
}
.destMap__svg{ position:absolute; inset:0; width:100%; height:100%; }
.destMap__legend{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 0px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,25,40,.10);
  color: rgba(11,27,51,.78);
  font-weight: 650;
  font-size: 13px;
}
.legendDot{ width: 10px; height: 10px; border-radius: 0px; background: var(--gold); display:inline-block; }
.legendDot--hub{ background: var(--gold2); border: 2px solid var(--gold); }
.legendLine{
  width: 22px; height: 3px;
  border-radius: 0px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  display:inline-block;
}

.destMap__foot{ margin-top: 14px; display:flex; flex-wrap: wrap; gap: 10px; }

.routeList{
  list-style:none;
  padding: 0;
  margin: 14px 0 0;
  display:grid;
  gap: 12px;
}
.route{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 0px;
  background: rgba(245,246,248,.92);
  border: 1px solid rgba(15,25,40,.10);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.route:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow2);
}
.route__meta strong{ display:block; }
.route__meta span{ color: rgba(11,27,51,.66); font-size: 13px; }

.destFeatured{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,25,40,.10);
}
.destFeatured__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.destFeatured__head h3{ margin: 0; font-size: 16px; }
.destFeatured__controls{ display:flex; gap: 8px; justify-content: center; margin-top: 12px; }

/* iconBtn will be overridden by global glass block below */
.iconBtn{
  width: 42px; height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 0px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,25,40,.12);
  box-shadow: 0 10px 26px rgba(9, 16, 26, .08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.iconBtn:hover{ background: rgba(255,255,255,.96); box-shadow: var(--shadow2); }
.iconBtn:active{ transform: translateY(1px); }
.iconBtn span{ font-size: 24px; line-height: 1; color: rgba(11,27,51,.86); }

.destCar{
  margin-top: 12px;
  border-radius: var(--radius2);
  overflow:hidden;
  position: relative;
  border: 1px solid rgba(15,25,40,.10);
}
.destCar__slide{ display:none; position: relative; }
.destCar__slide.is-active{ display:block; }

/* Destinations carousel size (responsive) */
.destCar,
.destCar__slide{
  height: clamp(320px, 38vw, 520px);
  min-height: clamp(320px, 38vw, 520px);
}

.destCar__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.02) brightness(1.08);
}
.destCar__overlay{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.52) 100%);
  color: #fff;
}
.destCar__overlay strong{ font-size: 38px; }
.destCar__overlay span{ font-size: 13px; opacity: .92; }

.destDots{display:none;}
.dot{
  width: 10px; height: 10px;
  border-radius: 0px;
  border: 1px solid rgba(11,27,51,.20);
  background: rgba(11,27,51,.10);
}
.dot.is-active{ background: rgba(242,208,138,.95); border-color: rgba(242,208,138,.95); }

.ctaStrip{
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background:
    radial-gradient(900px 320px at 18% 30%, rgba(242,208,138,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
}
.ctaStrip h2{ margin: 0; }
.ctaStrip p{ margin: 8px 0 0; color: rgba(11,27,51,.66); }
.ctaStrip__actions{ display:flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 980px){
  .destHero__content{ padding: 32px 22px; }
  .destHero__search{ position: relative; right: auto; top: auto; width: 100%; margin: 14px; }
  .destLayout{ grid-template-columns: 1fr; }
  .destMap__canvas{ height: 420px; }
}
@media (max-width: 520px){
  .route{ flex-direction: column; align-items: stretch; }
  .route .btn{ width: 100%; }
  .ctaStrip{ flex-direction: column; align-items: stretch; }
  .ctaStrip__actions .btn{ width: 100%; }
}

/* =========================
   Booking (Wizard) — Option 3
========================= */
.bookingHero{
  position: relative;
  padding: 64px 0 44px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16,40,79,.92), rgba(11,27,51,.65)),
    url("../images/hero-booking.webp") center/cover no-repeat;
  overflow: hidden;
}
.bookingHero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 420px at 18% 30%, rgba(242,208,138,.18), transparent 60%);
  pointer-events:none;
}
.bookingHero__inner{ position: relative; z-index: 1; display:flex; align-items:flex-end; justify-content:space-between; gap: 24px; }
.bookingHero__title{ margin:0; font-size: clamp(34px, 3.2vw, 54px); letter-spacing: .2px; }
.bookingHero__sub{ margin: 10px 0 0; max-width: 56ch; color: rgba(255,255,255,.88); font-size: 18px; }

.bookingSection{ padding-top: 28px; }

.bookingProgress{
  display:flex; flex-wrap:wrap; gap: 10px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,25,40,.10);
  border-radius: 0px;
  padding: 10px;
  box-shadow: 0 10px 26px rgba(9,16,26,.08);
}
.bookingStep{
  padding: 10px 14px;
  border-radius: 0px;
  background: rgba(15,25,40,.05);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
}
/* ACTIVE step now glass (not gold fill) */
.bookingStep.is-active{
  background: rgba(245,246,248,.56);
  border: 1px solid rgba(242,208,138,.80);
  color: var(--navy);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

.bookingLayout{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  margin-top: 18px;
  align-items: start;
}

/* Frosted glass container */
.frosty{
  position: relative;
  border-radius: 0px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(9,16,26,.14);
  overflow: hidden;
}
.frosty::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  pointer-events:none;
}

.bookingWizard{ padding: 22px; }
.bookingWizard__head{ position: relative; z-index: 1; }
.bookingWizard__head h2{ margin: 0 0 6px; color: var(--navy); }
.bookingWizard__head .muted{ margin: 0 0 16px; }

.bookingForm{ position: relative; z-index: 1; }

.bookingGrid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bookingForm .field label{
  display:block;
  font-weight: 700;
  font-size: 12px;
  color: rgba(11,27,51,.70);
  margin-bottom: 6px;
}
.bookingForm input,
.bookingForm select{
  width: 100%;
  height: 46px;
  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.12);
  background: rgba(255,255,255,.85);
  color: var(--navy);
  padding: 0 12px;
  outline: none;
}
.bookingForm input:focus,
.bookingForm select:focus{
  border-color: rgba(242,208,138,.65);
  box-shadow: 0 0 0 4px rgba(242,208,138,.18);
}

.bookingCalendar{
  margin-top: 14px;
  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.12);
  background: rgba(11,27,51,.06);
  padding: 14px;
}
.bookingCalendar__title{ font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.bookingCalendar__sub{ color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.bookingCalendar__bars{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
}
.bookingCalendar__bars span{
  display:block;
  height: 26px;
  border-radius: 0px;
  background: rgba(11,27,51,.14);
}
.bookingCalendar__bars span:nth-child(3),
.bookingCalendar__bars span:nth-child(5){
  height: 40px;
  background: rgba(242,208,138,.45);
}

.bookingActions{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

/* Help sidebar */
.bookingHelp h3{ margin: 0 0 12px; }
.helpList{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.helpList .dot{
  display:inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  margin-right: 10px;
  vertical-align: middle;
}
.btn--block{ display:block; text-align:center; width:100%; }

.helpNote{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.10);
  background: rgba(15,25,40,.04);
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .bookingLayout{ grid-template-columns: 1fr; }
  .bookingGrid3{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .bookingGrid3{ grid-template-columns: 1fr; }
  .bookingHero{ padding: 48px 0 32px; }
  .bookingHero__sub{ font-size: 16px; }
}

/* =========================
   Contact Page (Option 1)
========================= */
.contact-hero .contact-hero__inner{ padding: 10px 0 0; }
.contact-hero h1{ margin: 0; font-size: 40px; letter-spacing: .2px; }
.contact-hero .muted{ margin-top: 10px; max-width: 68ch; }

.contact-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: start;
}

.contact-card__head, .contact-side__head{ padding: 20px 22px 0; }
.contact-card__head h2, .contact-side__head h2{ margin: 0; font-size: 20px; }
.contact-card__head .muted, .contact-side__head .muted{ margin: 8px 0 0; }

.contact-form{ padding: 16px 22px 22px; }
.contact-form__row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field{ margin: 0 0 12px; }
.field__input--textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}
.contact-form__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-side{ padding-bottom: 18px; }
.contact-miniList{
  padding: 14px 18px 6px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.contact-mini{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 0px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,25,40,.10);
}
.contact-mini__icon{
  width: 42px; height: 42px;
  border-radius: 0px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(242,208,138,.16);
  border: 1px solid rgba(242,208,138,.35);
}
.contact-mini__body{ display:flex; flex-direction: column; gap: 2px; }
.contact-mini__body strong{ color: rgba(11,27,51,.92); }
.contact-mini__body span{ color: rgba(11,27,51,.70); font-size: 14px; }
.contact-mini__body em{ color: rgba(11,27,51,.55); font-style: normal; font-size: 13px; margin-top: 2px; }

.contact-map{
  margin: 10px 18px 0;
  border-radius: 0px;
  overflow:hidden;
  border: 1px solid rgba(15,25,40,.10);
  background:
    radial-gradient(1200px 420px at 20% 10%, rgba(242,208,138,.16), transparent 60%),
    radial-gradient(900px 380px at 90% 80%, rgba(16,40,79,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.92));
  height: 220px;
  position: relative;
}
.contact-map__badge{
  position:absolute;
  left: 16px; bottom: 16px;
  background: rgba(11,27,51,.86);
  color: #fff;
  border-radius: 0px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
}
.contact-map__badge strong{ display:block; font-size: 14px; }
.contact-map__badge span{ display:block; font-size: 12px; opacity: .85; margin-top: 2px; }

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form__row{ grid-template-columns: 1fr; }
  .contact-hero h1{ font-size: 34px; }
}

/* =====================
   SERVICES (Option 5)
===================== */
.services-hero{ padding-top: 34px; }
.services-hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}
.services-hero__copy .lead{ margin-top: 10px; max-width: 56ch; }
.services-hero__media{
  min-height: 280px;
  border-radius: var(--radius2);
  background:
    linear-gradient(180deg, rgba(11,27,51,.10), rgba(11,27,51,.20)),
    url("../images/hero-takeoff.webp") center/cover no-repeat;
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: var(--shadow);
}
.services-layout{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
  align-items: start;
}
.services-timeline{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 104px;
}
.services-timeline h2{ margin: 0 0 6px; }
.services-timeline .muted{ margin: 0 0 12px; color: var(--muted); }
.timeline{
  list-style: none;
  margin: 10px 0 0;
  padding: 0 0 0 10px;
  position: relative;
}
.timeline:before{
  content:"";
  position:absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 0px;
  background: rgba(15,25,40,.12);
}
.timeline__item{ display:flex; gap: 14px; padding: 12px 0; position: relative; }
.timeline__dot{
  width: 16px;
  height: 16px;
  border-radius: 0px;
  background: var(--gold2);
  box-shadow: 0 0 0 5px rgba(242,208,138,.18);
  flex: 0 0 auto;
  margin-left: 6px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.timeline__meta{ display:block; margin-top: 4px; color: var(--muted); font-size: 14px; line-height: 1.35; }
.timeline-cta{ display:flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

.services-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.svc-card{
  background: linear-gradient(180deg, rgba(11,27,51,.96), rgba(11,27,51,.92));
  border: 1px solid rgba(242,208,138,.28);
  border-radius: var(--radius2);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(9,16,26,.14);
}
.svc-card:before{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 18% 10%, rgba(242,208,138,.18), transparent 55%);
  pointer-events:none;
}
.svc-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 0px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--gold2);
  position: relative;
  z-index: 1;
}
.svc-card h3{ margin: 10px 0 8px; color: #fff; position: relative; z-index: 1; }
.svc-card p{ margin: 0 0 14px; color: rgba(255,255,255,.86); position: relative; z-index: 1; }
.svc-card .btn{ position: relative; z-index: 1; }

@media (max-width: 980px){
  .services-hero__grid{ grid-template-columns: 1fr; }
  .services-hero__media{ min-height: 220px; }
  .services-layout{ grid-template-columns: 1fr; }
  .services-timeline{ position: static; }
}
@media (max-width: 640px){
  .services-cards{ grid-template-columns: 1fr; }
}

/* =========================================================
   INDEX — Option 3 Hero Slider + Booking/Manage Box
========================================================= */
.heroX{ position: relative; padding: 10px 0 0; }

/* Cinematic autoplay slider */
.heroSlider{
  position: relative;
  min-height: 520px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: var(--shadow);
  background: #0b1b33;
}

.heroSlider__track{ position: absolute; inset: 0; }

.heroSlide{
  position:absolute;
  inset:0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1200ms ease;
}
.heroSlide.is-active{ opacity: 1; transform: scale(1); }

.heroSlide::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.12) contrast(1.06) brightness(1.05);
  transform: scale(1.02);
  z-index: 0;
}
.heroSlide::after{
  content:none;
}

/* Diagonal cut overlay */
.heroSlider__content{
  position: relative;
  z-index: 3;
  padding: 56px 0 120px;
  color: #fff;
}
.heroKicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 0px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  font-size: 12px;
  letter-spacing: .2px;
}
.heroSlider__content h1{
  margin: 14px 0 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: -0.7px;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 58px);
}
.heroSlider__content p{
  margin: 12px 0 0;
  max-width: 640px;
  color: rgba(255,255,255,.86);
}

.heroSlider__cta{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.heroSlider__meta{ margin-top: 18px; display:flex; align-items:center; gap: 14px; }
.heroDots{ display:flex; gap: 10px; }
.heroDots .dot{
  width: 10px; height: 10px;
  border-radius: 0px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.heroDots .dot.is-active{ background: rgba(255,255,255,.92); }

/* Hide progress bar */
.heroProg{ display:none !important; }

/* Booking/Manage box wrapper */
.bmWrap{
  position: relative;
  z-index: 4;
  margin-top: -210px;
  padding-bottom: 10px;
}

.bmBox{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,25,40,.10);
  box-shadow: 0 22px 55px rgba(9,16,26,.16);
  border-radius: 0px;
  overflow: hidden;
}

.bmTabs{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92px;
}

.bmTab{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  border: 0;
  cursor: pointer;
  padding: 18px 18px;
  position: relative;
  background: rgba(255,255,255,.92);
}

/* REMOVE gold fill from last tab (now glass like everything else) */
.bmTab:first-child{ background: rgba(255,255,255,.92); }
.bmTab:last-child{ background: rgba(245,246,248,.56); }

.bmTab__icon{ width: 34px; height: 34px; display:grid; place-items:center; }
.bmTab__icon svg{ width: 28px; height: 28px; fill: var(--gold); }
.bmTab:last-child .bmTab__icon svg{ fill: var(--navy); }

.bmTab__text{
  text-align:left;
  font-weight: 780;
  letter-spacing: .2px;
  line-height: 1.05;
  font-size: 22px;
}
.bmTab:first-child .bmTab__text{ color: var(--navy); }
.bmTab:last-child .bmTab__text{ color: var(--navy); }

.bmTab::after{
  content:"";
  position:absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: transparent;
}
/* Active underline stays gold accent */
.bmTab.is-active::after{
  background: linear-gradient(90deg, rgba(242,208,138,.95), rgba(230,177,92,.95));
}

.bmBody{ padding: 30px 32px 26px; }
.bmPanel{ display:none; }
.bmPanel.is-active{ display:block; }

.bmTitle{
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: -0.4px;
  font-size: 40px;
  color: var(--navy);
}
.bmSub{
  margin: 10px 0 0;
  color: rgba(11,27,51,.72);
  max-width: 680px;
}

.bmForm{ margin-top: 20px; }

.bmGrid{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items:end;
}

.bmField{ display:block; }
.bmField--wide{ grid-column: 1 / -1; }

.bmLabel{
  display:block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .2px;
  margin: 0 0 8px;
}

.bmInput{
  width:100%;
  height: 64px;
  border-radius: 0px;
  border: 2px solid rgba(15,25,40,.10);
  background: #fff;
  padding: 0 16px;
  color: rgba(11,27,51,.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}

.bmTrip{
  height: 64px;
  border-radius: 0px;
  border: 2px solid rgba(15,25,40,.10);
  background: #fff;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 16px;
  color: rgba(11,27,51,.90);
  font-weight: 650;
}

.bmSwap{
  align-self: end;
  width: 56px;
  height: 56px;
  border-radius: 0px;
  border: 2px solid rgba(15,25,40,.10);
  background: rgba(245,246,248,.56);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(9,16,26,.10);
  display:grid;
  place-items:center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.bmSwap:hover{ transform: translateY(-1px); box-shadow: 0 18px 34px rgba(9,16,26,.14); }

.bmBtn{
  grid-column: 1 / -1;
  justify-self: end;
  padding-inline: 22px;
}

.bmTrust{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 13px;
  color: rgba(11,27,51,.66);
}
.bmTrust__dot{
  width: 10px; height: 10px;
  border-radius: 0px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  box-shadow: 0 10px 20px rgba(242,208,138,.18);
}

.bmGrid--manage{ grid-template-columns: 1fr 1fr; }

.bmTools{
  border-radius: 0px;
  border: 2px solid rgba(15,25,40,.10);
  background: rgba(16,40,79,.04);
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.bmTools strong{ color: var(--navy); font-size: 14px; }
.bmTools span{ color: rgba(11,27,51,.70); font-size: 13px; }

/* Schedule cards */
.schedGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.schedCard{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 0px;
  background: rgba(11,27,51,.94);
  border: 2px solid rgba(242,208,138,.22);
  box-shadow: 0 18px 40px rgba(9,16,26,.12);
  color: #fff;
}
.schedCard__meta strong{ display:block; font-size: 14.5px; letter-spacing: .2px; }
.schedCard__meta span{ display:block; margin-top: 6px; color: rgba(255,255,255,.78); font-size: 13px; }

/* Schedule button now glass (not gold fill) */
.schedBtn{
  border: 1px solid rgba(242,208,138,.65);
  height: 42px;
  padding: 0 16px;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 750;
  color: rgba(255,255,255,.94);

  background: rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: 0 14px 26px rgba(9,16,26,.22);
}

/* Travel info */
.infoGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.infoCard{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 16px 16px;
  border-radius: 0px;
  border: 1px solid rgba(15,25,40,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 32px rgba(9,16,26,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.infoCard:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px rgba(9,16,26,.10); }
.infoCard__icon{
  width: 48px; height: 48px;
  border-radius: 0px;
  display:grid;
  place-items:center;
  background: rgba(242,208,138,.16);
  border: 1px solid rgba(242,208,138,.35);
  color: var(--gold);
  font-weight: 900;
}
.infoCard__body strong{ display:block; color: var(--navy); letter-spacing: .2px; }
.infoCard__body span{ display:block; margin-top: 6px; color: rgba(11,27,51,.70); font-size: 13.5px; }

.infoFeature{
  margin-top: 16px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.infoFeature__text h3{ margin: 0; font-size: 18px; }
.infoFeature__text p{ margin: 6px 0 0; color: rgba(11,27,51,.72); }

/* Responsive adjustments */
@media (max-width: 980px){
  .heroSlider__content{ padding: 46px 0 130px; }
  .bmWrap{ margin-top: -190px; }
  .bmTitle{ font-size: 34px; }
  .schedGrid{ grid-template-columns: 1fr; }
  .infoGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .heroSlider{ min-height: 560px; border-radius: 0px; }
  .heroSlide__split{ opacity: .22; }

  .bmBody{ padding: 24px 18px 20px; }
  .bmTabs{ min-height: 86px; }
  .bmTab__text{ font-size: 18px; }

  .bmGrid{ grid-template-columns: 1fr; }
  .bmSwap{ justify-self: center; width: 52px; height: 52px; }
  .bmGrid--manage{ grid-template-columns: 1fr; }
  .bmBtn{ width: 100%; justify-self: stretch; }
}

/* Force burger icon to Zein Air navy (blue) */
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after{
  background: var(--navy) !important;
}

/* Hide ONLY the hero slider dots (3 squares) on all browsers */
.heroSlider .heroDots,
.heroSlider button.dot[data-hero-dot]{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================================================
   GLOBAL Glass Override (keeps everything consistent)
========================================================= */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.bmTab,
.bmSwap,
.iconBtn,
.social__btn,
.lang,
.nav-toggle,
.nav__link--btn{
  background: var(--btn-bg) !important;
  border: 1px solid var(--btn-border) !important;
  color: var(--btn-text) !important;
  box-shadow: var(--btn-shadow) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  position: relative;
  overflow: hidden;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.bmTab:hover,
.bmSwap:hover,
.iconBtn:hover,
.social__btn:hover,
.lang:hover,
.nav-toggle:hover,
.nav__link--btn:hover{
  background: var(--btn-bg-hover) !important;
  border-color: var(--btn-border-accent) !important;
}

/* Keep bmTab active underline gold */
.bmTab.is-active::after{
  background: linear-gradient(90deg, rgba(242,208,138,.95), rgba(230,177,92,.95)) !important;
}

/* Header = same background as burger menu (glass/off-grey) */
.site-header{
  background: var(--btn-bg) !important;
  border-bottom: 1px solid var(--btn-border) !important;

  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
}

/* Optional: keep the scrolled state consistent (no sudden color change) */
.site-header.is-scrolled{
  background: var(--btn-bg-hover) !important;
}

/* ---- RTL/mobile safety: prevent zoom-out + keep burger available ---- */
html, body { width: 100%; overflow-x: hidden; }

/* Let flex items shrink instead of forcing the page wider */
.header-row { min-width: 0; }
.brand { min-width: 0; }

/* Trigger mobile nav earlier (Arabic labels are wider) */
@media (max-width: 980px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }

  .nav{
    position: fixed;
    top: calc(var(--header-h) + 12px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(239,239,239);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display:flex; }

  .nav__menu, .lang__menu{
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 6px;
  }
  .nav__dropdown, .nav__lang{ width: 100%; }
  .nav__link{ width: 100%; }
  .lang{ width: 100%; justify-content: space-between; }
}


