/*
  CLIENT: Middle East Travels & Tourism (Calicut, Kerala)
  TYPE: Travel agency — visa house + tour packages
  ART DIRECTION: Friendly, confident, modern travel brand. Built around their
                 actual logo: chunky black wordmark + vivid green paper-airplane
                 accent. Clean white canvas, bold green energy, real photography.
                 Polaroid/postcard memory of travel — not luxury hotel cold.
  PALETTE: Brand green #15B04A (logo-extracted) + black + warm off-white.
  TYPOGRAPHY: Bricolage Grotesque (display, chunky to match logo letterforms)
              + General Sans (body)
  MOOD: trusted · friendly · premium · fast-moving · 24x7
*/

/* ============== RESET ============== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html,body{overflow-x:clip;max-width:100vw;overflow-y:auto}
body{position:relative}
.hero,.stats,.story,.visa,.tours,.services,.process,.reels,.gallery,.why,.directors-sec,.testimonials,.cta-banner,.related,.footer,.section,.ribbon,.utility{overflow-x:clip}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;scroll-padding-top:90px}
img,svg,video{display:block;max-width:100%}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
a{color:inherit;text-decoration:none}
input,select,textarea,button{font:inherit;color:inherit}
ul{list-style:none}

/* ============== TOKENS ============== */
:root{
  /* Brand */
  --green: #15B04A;
  --green-deep: #0E8A3A;
  --green-soft: #25D661;
  --green-mist: #E8F8EE;
  --green-dark: #0A5C26;

  --black: #0A0A0A;
  --ink: #141517;
  --ink-2: #2A2D33;
  --ink-3: #5C6068;
  --ink-4: #8A8E96;

  --white: #FFFFFF;
  --paper: #FAFAF9;
  --paper-2: #F4F4F2;
  --line: #E6E7E5;

  /* Semantic — light mode */
  --bg: var(--white);
  --bg-2: var(--paper);
  --bg-3: var(--paper-2);
  --surface: var(--white);
  --text: var(--black);
  --text-muted: var(--ink-3);
  --text-dim: var(--ink-4);
  --border: var(--line);
  --accent: var(--green);
  --accent-deep: var(--green-deep);
  --accent-mist: var(--green-mist);

  --shadow-xs: 0 1px 2px rgba(10,10,10,.05);
  --shadow-sm: 0 2px 6px rgba(10,10,10,.06), 0 6px 20px rgba(10,10,10,.05);
  --shadow-md: 0 8px 24px rgba(10,10,10,.10), 0 18px 60px rgba(10,10,10,.06);
  --shadow-lg: 0 28px 80px rgba(10,10,10,.18);
  --shadow-green: 0 10px 30px rgba(21,176,74,.30);

  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "General Sans", "Inter", -apple-system, system-ui, sans-serif;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-2xl: 48px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);

  --container: min(1320px, 92vw);
}

[data-theme="dark"]{
  --bg: #0A0A0A;
  --bg-2: #131313;
  --bg-3: #1A1A1A;
  --surface: #161616;
  --text: #F5F5F5;
  --text-muted: #B5B5B5;
  --text-dim: #888;
  --border: #2A2A2A;
  --line: #1F1F1F;
  --accent: var(--green-soft);
  --accent-mist: rgba(37,214,97,.10);
  --paper: #131313;
  --paper-2: #1A1A1A;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.5), 0 8px 22px rgba(0,0,0,.4);
  --shadow-md: 0 12px 36px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.7);
}

/* ============== BASE ============== */
body{
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01","ss02","cv01";
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}

.container{ width: var(--container); margin-inline: auto; }
img{ max-width: 100%; }
::selection{ background: var(--green); color: #fff; }
:focus-visible{ outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.04;
  color: var(--text);
}
h1 em, h2 em, h3 em{
  font-style: normal;
  color: var(--green);
  font-weight: 700;
}
h1 em::after, h2 em::after{
  content:"";
  display: inline-block;
  width: .35em; height: .35em;
  background: var(--green);
  border-radius: 50%;
  margin-left: .08em;
  margin-bottom: .08em;
  vertical-align: bottom;
}

.eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.eyebrow.center{ justify-content: center; }
.eyebrow-line{
  display: inline-block;
  width: 28px; height: 1.5px;
  background: currentColor;
}
.eyebrow.gold{ color: var(--green); }

.section-heading{
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 700;
}

.section-head{ max-width: 780px; margin-bottom: 60px; }
.section-head .section-heading{ margin-top: 14px; }
.section-head .section-sub{ margin-top: 18px; color: var(--text-muted); font-size: 1.05rem; max-width: 60ch; line-height: 1.65; }
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head.center .section-sub{ margin-inline: auto; }

.lead{ font-size: 1.06rem; line-height: 1.7; color: var(--text); }
.lead.muted{ color: var(--text-muted); margin-top: 14px; }

.hidden{ display: none !important; }

/* ---- IntersectionObserver fade-up (safe — only applies if JS adds class) ---- */
.fade-up{ opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.fade-up.is-in{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .fade-up{ opacity: 1; transform: none; transition: none; }
}

/* ============== BUTTONS ============== */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -.005em;
  transition: all .35s var(--ease-out);
  position: relative; overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary{
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover{
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(21,176,74,.45);
}
.btn-primary svg{ transition: transform .35s var(--ease-bounce); }
.btn-primary:hover svg{ transform: translateX(4px); }

.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-ghost:hover{ background: var(--text); color: var(--bg); }

.btn-wa{
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-wa:hover{ background: #1EB955; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.45); }

.btn-magnetic{ will-change: transform; }

.icon-btn{
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  transition: all .25s var(--ease);
  background: var(--bg);
}
.icon-btn:hover{ border-color: var(--green); color: var(--green); }
.i-moon{ display:none; }
[data-theme="dark"] .i-sun{ display:none; }
[data-theme="dark"] .i-moon{ display:block; }

/* ============== UTILITY BAR ============== */
.utility{
  background: var(--black);
  color: #E6E7E5;
  font-size: 12.5px;
  padding: 9px 0;
  position: relative;
  z-index: 60;
}
.utility-inner{
  width: var(--container);
  margin-inline: auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.utility-left{ display: flex; align-items: center; gap: 10px; }
.open-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(37,214,97,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{ 50%{ box-shadow: 0 0 0 7px rgba(37,214,97,0); } }
.utility-left strong{ color: var(--green-soft); font-weight: 600; }
.utility-right{ display: flex; align-items: center; gap: 18px; }
.u-link{ display: inline-flex; align-items: center; gap: 7px; color: #E6E7E5; transition: color .25s var(--ease); font-weight: 500; }
.u-link:hover{ color: var(--green-soft); }
.u-link.wa{ color: #25D366; }
.u-divider{ width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.u-tag{ font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-soft); font-weight: 600; }

/* ============== NAV ============== */
.nav{
  position: sticky; top: 0;
  z-index: 50;
  padding: 16px 0;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled{
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.nav-inner{
  width: var(--container);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.logo{ display: flex; align-items: center; }
.logo img{ height: 56px; width: auto; transition: transform .3s var(--ease); }
.nav.scrolled .logo img{ height: 46px; }
.logo:hover img{ transform: rotate(-1deg) scale(1.02); }
/* Light mode: show black-on-transparent logo. Dark mode: show white-on-transparent logo. */
.logo .logo-light{ display: block; }
.logo .logo-dark{ display: none; }
[data-theme="dark"] .logo .logo-light{ display: none; }
[data-theme="dark"] .logo .logo-dark{ display: block; }

.nav-links{ display: flex; align-items: center; gap: 6px; }
.nav-item{ position: relative; }
.nav-link{
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-pill);
  transition: background .25s var(--ease), color .25s var(--ease);
  cursor: pointer;
}
.nav-link:hover{ background: var(--accent-mist); color: var(--green-deep); }
.has-drop:hover .nav-drop{ opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.has-drop:hover .nav-link svg{ transform: rotate(180deg); }
.nav-link svg{ transition: transform .3s var(--ease); }

.nav-drop{
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translate(-50%, -8px);
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav-drop a{
  display: flex; flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: background .2s var(--ease);
}
.nav-drop a:hover{ background: var(--accent-mist); }
.nav-drop a span{ font-weight: 600; font-size: 14px; color: var(--text); }
.nav-drop a em{ font-style: normal; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.nav-actions{ display: flex; align-items: center; gap: 10px; }
.nav-cta{ padding: 12px 20px; font-size: 13.5px; }
.nav-cta svg{ width: 14px; height: 14px; }

.hamburger{ display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 50%; border: 1.5px solid var(--border); }
.hamburger span{ display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease); }
.hamburger.active span:first-child{ transform: translateY(3.5px) rotate(45deg); }
.hamburger.active span:last-child{ transform: translateY(-3.5px) rotate(-45deg); }

/* ============== MOBILE MENU ============== */
.mobile-menu{
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 45;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-menu.open{ opacity: 1; pointer-events: auto; }
.mm-inner{ display: flex; flex-direction: column; gap: 18px; text-align: center; }
.mm-inner > a{ font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1; color: var(--text); }
.mm-inner > a:hover{ color: var(--green); }
.mm-cta{ display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.mm-cta .btn{ font-family: var(--font-body); font-size: 15px; justify-content: center; }

/* ============== HERO ============== */
.hero{
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  isolation: isolate;
}
.hero-bg{ position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active{
  opacity: 1;
  animation: heroPan 9s ease-out forwards;
}
@keyframes heroPan{
  from{ transform: scale(1.06); }
  to{ transform: scale(1.14); }
}
.hero-overlay{
  position: absolute; inset: 0; z-index: -2;
  /* Strong uniform dark wash across the entire hero. Image still visible
     beneath, but every pixel of text is comfortably readable. */
  background:
    linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,.85) 100%);
}
.hero-grain{
  position: absolute; inset: 0; z-index: -1;
  opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero-content{
  position: relative;
  width: var(--container);
  margin-inline: auto;
  max-width: 1180px;
  isolation: isolate;
}
/* Editorial-poster highlight: each text line gets its own tight dark band
   painted directly behind the characters. Always readable on any slide,
   image still breathes everywhere else. No blur, no blotch. */
.hero-text-panel{
  position: relative;
  isolation: isolate;
  max-width: 680px;
}
.hero-meta{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 28px;
  padding: 9px 16px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.08);
}
.hero-meta .dot{
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(37,214,97,.3);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-title{
  font-size: clamp(2.6rem, 8vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
/* Clean text — sits on the strong dark wash of the hero overlay */
.hero-title .line{
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 0;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,.7), 0 4px 24px rgba(0,0,0,.55);
}
.hero-title .word{ display: inline; }
.hero-title em{ color: var(--green-soft); font-weight: 700; font-style: normal; }
.hero-title em::after{
  content:"";
  display: inline-block;
  width: .14em; height: .14em;
  background: var(--green-soft);
  border-radius: 50%;
  margin-left: .04em;
  margin-bottom: .12em;
  vertical-align: bottom;
}

.hero-sub{
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  color: #fff;
  line-height: 1.75;
}
.hero-sub-text{
  display: inline;
  background: transparent;
  text-shadow: 0 1px 6px rgba(0,0,0,.7), 0 2px 12px rgba(0,0,0,.55);
}

.hero-cta{
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}

/* Quick form */
.hero-search{
  margin-top: 50px;
  max-width: 1100px;
}
.quick-form{
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  gap: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.qf-field{
  padding: 12px 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.qf-field:last-of-type{ border-right: 0; }
.qf-field label{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
}
.qf-field select{
  border: 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.qf-field select:focus{ outline: none; }
.qf-go{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 28px;
  background: var(--green);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14.5px;
  margin: 4px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.qf-go:hover{ background: var(--green-deep); transform: scale(1.02); }

/* ============== STATS ============== */
.stats{
  background: var(--black);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-soft) 50%, var(--green) 100%);
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.stats-grid > div{
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative;
  padding-left: 24px;
}
.stats-grid > div::before{
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 4px; height: 60%;
  background: var(--green);
  border-radius: 2px;
}
.stats-grid strong{
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  display: flex; align-items: baseline;
}
.stats-grid strong .x{ font-size: .6em; color: var(--green); padding: 0 .04em; font-weight: 600; }
.stats-grid span{
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
}

/* ============== STORY ============== */
.story{ padding: clamp(80px, 10vw, 130px) 0; }
.story-grid{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.story-text .section-heading{ margin: 14px 0 22px; }
.story-pillars{
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin: 36px 0 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.story-pillars h4{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.story-pillars h4::before{
  content: "";
  width: 18px; height: 18px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.story-pillars p{ font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

.story-media{ position: relative; }
.story-stack{
  position: relative;
  aspect-ratio: 4/3;
}
.story-main{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.story-overlay{
  position: absolute;
  bottom: -36px; left: -28px;
  width: 42%;
  max-width: 220px;
  aspect-ratio: 3/4;
  background: var(--green);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
  border: 5px solid var(--white);
  object-fit: cover;
  object-position: center center;
}
.story-card{
  position: absolute;
  top: 32px; right: -28px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border);
}
.story-card-stat strong{
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.story-card-stat span{
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.story-card-bar{ width: 1px; height: 36px; background: var(--border); }

/* ============== VISA ============== */
.visa{
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
  position: relative;
}
.visa-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: minmax(330px, auto);
  gap: 18px;
}
.visa-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.visa-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.visa-card.featured, .visa-card.global{
  grid-row: span 2;
  color: #fff;
  border: 0;
  min-height: 680px;
}
.visa-bg{
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out);
}
.visa-card.featured::before, .visa-card.global::before{
  content:"";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(170deg, rgba(8,10,12,.15) 0%, rgba(8,10,12,.55) 60%, rgba(8,10,12,.92) 100%);
}
.visa-card.featured:hover .visa-bg, .visa-card.global:hover .visa-bg{ transform: scale(1.1); }
.visa-card.featured h3, .visa-card.global h3{ color: #fff; }
.visa-card.featured p, .visa-card.global p{ color: rgba(255,255,255,.85); }
.visa-card.featured .visa-types li, .visa-card.global .visa-types li{ border-color: rgba(255,255,255,.18); }
.visa-card.featured .visa-types span, .visa-card.global .visa-types span{ color: #fff; }
.visa-card.featured .visa-types em, .visa-card.global .visa-types em{ color: rgba(255,255,255,.7); }
.visa-card.featured .visa-cta, .visa-card.global .visa-cta{ color: var(--green-soft); }
.visa-card.featured .visa-body, .visa-card.global .visa-body{ flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }

.visa-flag{
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}
.visa-tag{
  display: inline-block;
  padding: 5px 11px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  align-self: flex-start;
}
.visa-card h3{
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 8px;
}
.visa-card p{ font-size: 14.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.visa-card p strong{ color: var(--text); font-weight: 600; }
.visa-card.featured p strong, .visa-card.global p strong{ color: #fff; }
.visa-types{ flex: 1; display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.visa-types li{
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.visa-types li:last-child{ border-bottom: 0; }
.visa-types span{ font-weight: 600; }
.visa-types em{ font-style: normal; color: var(--text-muted); font-size: 13px; }

.visa-cta{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  margin-top: auto;
  align-self: flex-start;
  transition: gap .3s var(--ease);
}
.visa-cta:hover{ gap: 14px; }
.visa-card:hover .visa-cta svg{ transform: translateX(4px); }
.visa-cta svg{ transition: transform .3s var(--ease); }

/* ============== PROCESS ============== */
.process{ padding: clamp(80px, 10vw, 130px) 0; }
.proc-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
}
.proc-grid::before{
  content: "";
  position: absolute;
  top: 50px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0 8px, transparent 8px 16px);
  opacity: .35;
  z-index: -1;
}
.proc-step{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.proc-step:hover{ transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow-md); }
.proc-num{
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  background: var(--accent-mist);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.proc-icon{
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--green);
  color: #fff;
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.proc-icon svg{ width: 24px; height: 24px; }
.proc-step h4{
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.proc-step p{ font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

.proc-cta{
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.proc-cta a:not(.btn){ color: var(--green); font-weight: 600; }
.proc-cta a:not(.btn):hover{ color: var(--green-deep); text-decoration: underline; }

/* ============== TOURS ============== */
.tours{
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-2);
}
.tour-tabs{
  display: inline-flex; gap: 0;
  background: var(--surface);
  padding: 5px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.tour-tab{
  padding: 11px 26px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  transition: all .3s var(--ease);
}
.tour-tab.active{ background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.tour-tab:not(.active):hover{ color: var(--text); }

.tour-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.tour-card{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
  transition: transform .4s var(--ease-out);
  min-height: 280px;
}
.tour-card.big{ grid-row: span 2; grid-column: span 2; }
.tour-shade{
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,10,12,.05) 0%, rgba(8,10,12,.25) 45%, rgba(8,10,12,.85) 100%);
  transition: background .4s var(--ease);
}
.tour-card:hover{ transform: translateY(-3px); }
.tour-card:hover .tour-shade{ background: linear-gradient(180deg, rgba(8,10,12,.1) 0%, rgba(8,10,12,.4) 45%, rgba(8,10,12,.95) 100%); }

.tour-meta{
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
}
.tour-meta span{
  background: var(--green);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tour-card h3{
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
  margin-bottom: 4px;
  color: #fff;
}
.tour-card.big h3{ font-size: clamp(1.6rem, 2.4vw, 2.4rem); }
.tour-card p{
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.tour-foot{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
}
.tour-foot strong{ color: #fff; font-weight: 700; }
.tour-arrow{
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
  color: var(--green-soft);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tour-arrow svg{ transition: transform .3s var(--ease); }
.tour-card:hover .tour-arrow svg{ transform: translateX(4px); }

/* ============== SERVICES ============== */
.services{ padding: clamp(80px, 10vw, 130px) 0; }
.svc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc{
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.svc::after{
  content: "";
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--accent-mist);
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: transform .5s var(--ease-out), background .35s var(--ease);
  pointer-events: none;
  opacity: .6;
}
.svc:hover{
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.svc:hover::after{ transform: translate(20%, -20%) scale(1.4); opacity: .9; }

.svc-icon{
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--accent-mist);
  color: var(--green);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.svc-icon img{ width: 36px; height: 36px; object-fit: contain; }
.svc-icon svg{ width: 26px; height: 26px; }
.svc:hover .svc-icon{ background: var(--green); color: #fff; }
.svc h3{ font-size: 1.3rem; margin-bottom: 10px; font-weight: 700; }
.svc p{ font-size: 14.5px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.svc-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--green);
  align-self: flex-start;
}
.svc:hover .svc-link svg{ transform: translateX(4px); }
.svc-link svg{ transition: transform .3s var(--ease); }

/* ============== REELS ============== */
.reels{
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--black);
  color: #fff;
}
.reels .section-heading{ color: #fff; }
.reels .section-sub{ color: rgba(255,255,255,.7); }
.reels .ig-link{ color: var(--green-soft); font-weight: 600; }
.reels .ig-link:hover{ text-decoration: underline; }

.reel-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reel{
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #1A1A1A;
  transition: transform .4s var(--ease-out);
}
.reel:hover{ transform: scale(1.02); }
.reel video{
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
.reel-pill{
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 1;
}

/* ============== GALLERY ============== */
.gallery{ padding: clamp(80px, 10vw, 130px) 0; background: var(--bg-2); }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.g{ position: relative; overflow: hidden; border-radius: var(--r-md); }
.g img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.g:hover img{ transform: scale(1.06); }
.g-lead{ grid-column: span 3; grid-row: span 2; }
.g:not(.g-lead){ grid-column: span 1; }
.g-caption{
  position: absolute; bottom: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--r-pill);
}

/* ============== WHY ============== */
.why{ padding: clamp(80px, 10vw, 130px) 0; }
.why-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why-left .section-heading{ margin: 14px 0 22px; }
.why-cta{ margin-top: 28px; }
.why-right{
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.why-row{
  background: var(--bg-2);
  padding: 22px 22px 22px 70px;
  border-radius: var(--r-md);
  position: relative;
  transition: background .35s var(--ease), transform .35s var(--ease-out);
  cursor: default;
}
.why-row:hover{ background: var(--accent-mist); transform: translateY(-3px); }
.why-num{
  position: absolute; top: 22px; left: 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.why-row h4{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-row p{ font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ============== DIRECTORS ============== */
.directors-sec{
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--bg-2);
}
.directors-sec .eyebrow.center .eyebrow-line:last-child{ margin-left: 0; }
.directors-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.director{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .35s var(--ease-out);
}
.director:hover{ border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.director-photo{
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(140deg, var(--accent-mist) 0%, #fff 100%);
  border: 4px solid var(--surface);
  box-shadow: 0 0 0 2px var(--green), 0 12px 32px rgba(21,176,74,.18);
  position: relative;
  display: grid; place-items: center;
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease);
}
.director:hover .director-photo{
  transform: scale(1.04);
  box-shadow: 0 0 0 2px var(--green), 0 18px 48px rgba(21,176,74,.30);
}
.director-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.director-photo.crest{
  background: linear-gradient(140deg, var(--green) 0%, var(--green-deep) 100%);
  color: rgba(255,255,255,.95);
  box-shadow: 0 0 0 2px var(--green-deep), 0 12px 32px rgba(21,176,74,.25);
}
.director-photo.crest svg{ width: 64%; height: 64%; }
.director-initial{
  width: 72px; height: 72px;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 50%;
  letter-spacing: -.02em;
}
.director h4{ font-size: 1rem; line-height: 1.35; font-weight: 700; margin-bottom: 6px; min-height: 2.7em; display: flex; align-items: center; justify-content: center; }
.director-role{ font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-weight: 600; }

/* ============== TESTIMONIALS ============== */
.testimonials{ padding: clamp(80px, 10vw, 130px) 0; }
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testi{
  padding: 32px 28px;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  display: flex; flex-direction: column;
}
.testi:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--surface); }
.stars{ color: var(--green); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }
.testi blockquote{
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.012em;
  margin-bottom: 22px;
  color: var(--text);
  flex: 1;
}
.testi figcaption{ display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi figcaption strong{ font-size: 14.5px; font-weight: 700; }
.testi figcaption span{ font-size: 12px; letter-spacing: .08em; color: var(--text-muted); }

/* ============== CTA ============== */
.cta-banner{
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* CTA banner ambient green halos — kept gentle, fully contained */
.cta-banner::before{
  content: "";
  position: absolute; right: 0; top: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 80% 20%, rgba(21,176,74,.18) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner::after{
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 20% 80%, rgba(21,176,74,.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.cta-text .section-heading{ color: #fff; margin: 14px 0 22px; }
.cta-text .lead{ color: rgba(255,255,255,.82); }
.cta-meta{
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 8px;
}
.cta-meta li{
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cta-meta li:last-child{ border-bottom: 0; }
.cta-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(21,176,74,.15);
  border-radius: var(--r-md);
  color: var(--green-soft);
}
.cta-icon svg{ width: 20px; height: 20px; }
.cta-meta strong{ display: block; font-size: 16px; font-weight: 600; color: #fff; }
.cta-meta strong a{ color: #fff; transition: color .25s var(--ease); }
.cta-meta strong a:hover{ color: var(--green-soft); }
.cta-meta span{ display: block; font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }
.cta-meta span a{ color: rgba(255,255,255,.85); }

.cta-form{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(20px);
  padding: 36px;
  border-radius: var(--r-xl);
  position: relative;
}
.cta-form h3{ font-size: 1.7rem; color: #fff; }
.form-sub{ color: rgba(255,255,255,.6); font-size: 13.5px; margin: 6px 0 24px; }
.cta-form label{
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  font-weight: 700;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input, .cta-form select, .cta-form textarea{
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus{
  outline: 0;
  border-color: var(--green-soft);
  background: rgba(255,255,255,.10);
}
.cta-form textarea{ resize: vertical; }
.cta-form select option{ background: var(--black); color: #fff; }
.cta-form .btn{ width: 100%; justify-content: center; margin-top: 8px; }
.form-success{
  margin-top: 14px;
  padding: 13px 16px;
  background: rgba(21,176,74,.15);
  border: 1px solid var(--green-soft);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--green-soft);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  display: none;
  font-weight: 600;
}
.form-success.visible{ display: block; }
.form-trust{
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

/* ============== FOOTER ============== */
.footer{
  background: #0A0A0A;
  color: rgba(255,255,255,.6);
  padding: 80px 0 30px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.f-brand .logo img{ height: 56px; width: auto; max-width: 220px; object-fit: contain; }
.f-brand .logo{ display: inline-block; }
.f-tag{ font-family: var(--font-display); font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 32ch; margin: 18px 0 22px; line-height: 1.35; font-weight: 500; }
.f-contact{ display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.f-contact a{ color: rgba(255,255,255,.85); font-size: 14px; padding: 0; transition: color .25s var(--ease); display: block; }
.f-contact a:hover{ color: var(--green-soft); }
.addr{ font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.55); margin-top: 8px; }
.f-social{ display: flex; gap: 8px; }
.f-social a{
  width: 38px; height: 38px;
  display: grid !important; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transition: all .3s var(--ease);
  padding: 0 !important;
}
.f-social a:hover{ border-color: var(--green-soft); color: var(--green-soft); transform: translateY(-2px); }

.footer h5{
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer a{ display: block; font-size: 14px; color: rgba(255,255,255,.6); padding: 5px 0; transition: color .25s var(--ease); }
.footer a:hover{ color: var(--green-soft); }

.f-bottom{
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  width: var(--container);
  margin-inline: auto;
}
.f-credits{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  width: var(--container);
  margin-inline: auto;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  text-align: center;
}
.f-credits a{
  color: var(--green-soft);
  font-weight: 600;
  display: inline;
  padding: 0;
  position: relative;
}
.f-credits a:hover{ color: #fff; }
.f-credits a::after{
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(.4); transform-origin: left;
  transition: transform .3s var(--ease);
}
.f-credits a:hover::after{ transform: scaleX(1); }

/* ============== FLOATING WHATSAPP ============== */
.float-wa{
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px 14px 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 14px 36px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: floatWa 3s ease-in-out infinite;
}
.float-wa:hover{ transform: scale(1.06); box-shadow: 0 18px 44px rgba(37,211,102,.55); animation: none; }
@keyframes floatWa{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* ============== STICKY MOBILE BAR ============== */
.mobile-bar{
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  padding: 10px;
  gap: 8px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.mobile-bar a{
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-2);
  color: var(--text);
  transition: background .25s var(--ease);
}
.mobile-bar a.primary{
  background: #25D366; color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
  flex: 1.4;
}
.mobile-bar a.primary:active{ background: #1EB955; }

/* ============== INTERNAL PAGE HERO ============== */
.page-hero{
  position: relative;
  padding: 110px 0 100px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg{
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(.92);
  transform: scale(1.04);
  animation: heroPan 26s ease-in-out infinite alternate;
}
.page-hero::before{
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(8,10,12,.88) 0%, rgba(8,10,12,.55) 60%, rgba(8,10,12,.3) 100%),
              linear-gradient(180deg, rgba(8,10,12,.2) 0%, rgba(8,10,12,.5) 100%);
}
.crumbs{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; letter-spacing: .08em;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.crumbs a{ color: rgba(255,255,255,.65); transition: color .25s var(--ease); }
.crumbs a:hover{ color: var(--green-soft); }
.crumbs svg{ opacity: .5; }
.crumbs .current{ color: var(--green-soft); }

.page-title{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  color: #fff;
  max-width: 22ch;
}
.page-title em{ color: var(--green-soft); font-style: normal; }
.page-title em::after{
  content:"";
  display: inline-block;
  width: .14em; height: .14em;
  background: var(--green-soft);
  border-radius: 50%;
  margin-left: .04em;
  margin-bottom: .12em;
  vertical-align: bottom;
}
.page-sub{
  margin-top: 22px;
  max-width: 60ch;
  font-size: 1.06rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
}
.page-meta-row{
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
}
.page-pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}
.page-pill svg{ color: var(--green-soft); }

/* Generic content sections */
.section{ padding: clamp(70px, 8vw, 110px) 0; }
.section.alt{ background: var(--bg-2); }
.section.dark{ background: var(--black); color: #fff; }
.section.dark .section-heading{ color: #fff; }
.section.dark .lead{ color: rgba(255,255,255,.85); }

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col-img{
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.two-col-img img{ width: 100%; height: 100%; object-fit: cover; }
.two-col-img.bg{ background-size: cover; background-position: center; }

.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.feature{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all .35s var(--ease-out);
}
.feature:hover{ transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.feature-icon{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--accent-mist);
  color: var(--green);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.feature-icon svg{ width: 22px; height: 22px; }
.feature h4{ font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }
.feature p{ font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.checklist{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin: 14px 0;
}
.checklist li{
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.55;
}
.checklist li::before{
  content: "";
  width: 18px; height: 18px;
  margin-top: 3px;
  background: var(--green);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.price-table{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-row{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 24px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background .25s var(--ease);
}
.price-row:last-child{ border-bottom: 0; }
.price-row:hover{ background: var(--accent-mist); }
.price-row.head{ background: var(--bg-2); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.price-row.head:hover{ background: var(--bg-2); }
.price-row strong{ font-weight: 600; color: var(--text); }
.price-row em{ font-style: normal; color: var(--text-muted); font-size: 14px; }
.price-row .price{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
}
.price-row .btn{ padding: 9px 16px; font-size: 13px; }

.faq{ display: flex; flex-direction: column; gap: 12px; }
.faq-item{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item:hover{ border-color: var(--green); }
.faq-item.open{ border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-q{
  width: 100%;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  gap: 16px;
}
.faq-q::after{
  content: "+";
  font-size: 22px;
  color: var(--green);
  font-weight: 400;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s var(--ease);
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 26px;
}
.faq-item.open .faq-a{ max-height: 600px; padding: 0 26px 22px; }

.related{
  background: var(--bg-2);
  padding: clamp(60px, 7vw, 90px) 0;
}
.related-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.related-card{
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  transition: all .35s var(--ease-out);
}
.related-card:hover{ transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.related-flag{ font-size: 26px; margin-bottom: 12px; }
.related-card h4{ font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.related-card span{ font-size: 13px; color: var(--text-muted); margin-bottom: 14px; flex: 1; }
.related-card .arrow{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
}
.related-card:hover .arrow svg{ transform: translateX(4px); }
.related-card .arrow svg{ transition: transform .3s var(--ease); }

.midcta{
  background: var(--green);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 50px clamp(28px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-green);
}
.midcta h3{
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: #fff;
  margin-bottom: 6px;
}
.midcta p{ color: rgba(255,255,255,.9); font-size: 15px; max-width: 50ch; }
.midcta .btn-wa{ background: #fff; color: var(--green-deep); }
.midcta .btn-wa:hover{ background: var(--black); color: #fff; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px){
  .nav-links{ gap: 2px; }
  .nav-link{ padding: 8px 12px; font-size: 13.5px; }

  .visa-grid{ grid-template-columns: 1fr 1fr; }
  .visa-card.featured{ grid-row: span 2; grid-column: span 2; min-height: 480px; }
  .visa-card.global{ grid-row: span 1; grid-column: span 2; min-height: 380px; }

  .tour-grid{ grid-template-columns: repeat(3, 1fr); }
  .tour-card.big{ grid-column: span 3; }

  .svc-grid{ grid-template-columns: 1fr 1fr; }
  .testi-grid{ grid-template-columns: 1fr 1fr; }

  .cta-grid, .why-grid, .story-grid{ grid-template-columns: 1fr; gap: 50px; }
  .why-right{ grid-template-columns: 1fr 1fr; }

  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }

  .quick-form{ grid-template-columns: 1fr 1fr; }
  .quick-form .qf-go{ grid-column: span 2; padding: 16px; }
  .qf-field:nth-of-type(2){ border-right: 0; }
  .qf-field:nth-of-type(3){ border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .qf-field:nth-of-type(4){ border-top: 1px solid var(--line); }
}

@media (max-width: 1024px){
  .nav-links{ display: none; }
  .hamburger{ display: flex; }
  .nav-cta{ display: none; }

  .stats-grid{ grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .stats-grid > div:nth-child(4){ grid-column: span 2; }
  .stats-grid > div:nth-child(5){ grid-column: 3; }

  .proc-grid{ grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .proc-grid::before{ display: none; }

  .directors-grid{ grid-template-columns: 1fr 1fr; }

  .reel-grid{ grid-template-columns: 1fr 1fr; }
  .reel-grid .reel:last-child{ grid-column: span 2; max-height: 60vh; aspect-ratio: 16/9; }

  .gallery-grid{ grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .g-lead{ grid-column: span 4; grid-row: span 2; }

  .utility-left span:not(.open-dot){ display: none; }
  .utility-left::after{ content: "Open · 24×7"; color: var(--green-soft); font-weight: 600; }

  .story-card{ right: -10px; }
  .story-overlay{ left: -20px; bottom: -25px; }
}

@media (max-width: 720px){
  body{ font-size: 16px; padding-bottom: 80px; }
  .container{ width: 92%; }

  .utility{ font-size: 11px; }
  .utility-right{ gap: 12px; }
  .u-tag{ display: none; }
  .u-divider{ display: none; }

  .nav{ padding: 10px 0; }
  .logo img{ height: 44px; }
  .nav.scrolled .logo img{ height: 38px; }

  .hero{ padding: 60px 0 40px; align-items: flex-end; min-height: 90vh; min-height: 90dvh; }
  .hero-content{ padding-top: 0; }
  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(6,8,10,.4) 0%, rgba(6,8,10,.5) 35%, rgba(6,8,10,.7) 75%, rgba(6,8,10,.85) 100%);
  }
  .hero-text-panel{
    padding: 24px 20px 28px 18px;
    margin-left: -18px;
    border-radius: 0 18px 18px 0;
  }
  .hero-text-panel::before{
    -webkit-backdrop-filter: blur(10px) saturate(115%);
    backdrop-filter: blur(10px) saturate(115%);
  }
  .hero-meta{ font-size: 10px; padding: 6px 12px; letter-spacing: .12em; }
  .hero-title{ font-size: clamp(2.2rem, 10.5vw, 3.4rem); line-height: 1; text-shadow: 0 2px 24px rgba(0,0,0,.7), 0 0 40px rgba(0,0,0,.5); }
  .hero-sub{ font-size: 14.5px; margin-top: 18px; line-height: 1.5; text-shadow: 0 2px 14px rgba(0,0,0,.8); }
  .hero-cta{ margin-top: 24px; gap: 10px; }
  .hero-cta .btn{ flex: 1; justify-content: center; padding: 13px 14px; font-size: 13.5px; }
  .quick-form{ display: none; }

  .stats{ padding: 40px 0; }
  .stats-grid{ grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-grid > div:nth-child(5){ grid-column: span 2; }
  .stats-grid > div:nth-child(4){ grid-column: 1; }

  .story{ padding: 70px 0; }
  .story-overlay{ width: 60%; left: -10px; bottom: -20px; }
  .story-card{ position: static; margin-top: 18px; transform: rotate(-1deg); }
  .story-pillars{ grid-template-columns: 1fr; gap: 22px; }

  .visa{ padding: 70px 0; }
  .visa-grid{ grid-template-columns: 1fr; }
  .visa-card.featured, .visa-card.global{ grid-column: span 1; grid-row: auto; min-height: 460px; }
  .visa-card{ padding: 26px; }

  .process{ padding: 70px 0; }
  .proc-grid{ grid-template-columns: 1fr; gap: 16px; }

  .tours{ padding: 70px 0; }
  .tour-grid{ grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .tour-card.big{ grid-column: span 1; grid-row: span 1; min-height: 280px; }
  .tour-card{ padding: 22px; }
  .tour-card h3{ font-size: 1.4rem; }

  .services{ padding: 70px 0; }
  .svc-grid{ grid-template-columns: 1fr; }

  .reels{ padding: 70px 0; }
  .reel-grid{ grid-template-columns: 1fr; }
  .reel-grid .reel:last-child{ grid-column: span 1; aspect-ratio: 9/16; max-height: none; }

  .gallery{ padding: 70px 0; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .g-lead{ grid-column: span 2; grid-row: span 2; }
  .g-caption{ font-size: 11px; padding: 5px 10px; }

  .why{ padding: 70px 0; }
  .why-right{ grid-template-columns: 1fr; }

  .directors-sec{ padding: 60px 0; }
  .directors-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .director{ padding: 22px 14px; }
  .director-initial{ width: 56px; height: 56px; font-size: 20px; }
  .director h4{ font-size: 14px; }

  .testimonials{ padding: 70px 0; }
  .testi-grid{ grid-template-columns: 1fr; }
  .testi blockquote{ font-size: 1.05rem; }

  .cta-banner{ padding: 70px 0; }
  .cta-form{ padding: 26px 22px; border-radius: var(--r-lg); }
  .form-row{ grid-template-columns: 1fr; }

  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .f-brand{ grid-column: span 2; }
  .f-bottom{ flex-direction: column; align-items: flex-start; }

  .float-wa{ bottom: 80px; right: 14px; padding: 12px 16px 12px 14px; font-size: 13px; }
  .float-wa span{ display: none; }
  .float-wa svg{ width: 22px; height: 22px; }
  .float-wa{ width: 52px; height: 52px; padding: 0; display: grid; place-items: center; }

  .mobile-bar{ display: flex; }

  .mm-inner > a{ font-size: 30px; }

  .page-hero{ padding: 60px 0 60px; }
  .page-title{ font-size: clamp(2rem, 9vw, 3rem); line-height: 1.05; }
  .page-sub{ font-size: 15px; margin-top: 18px; }
  .page-meta-row{ gap: 8px; }
  .page-pill{ font-size: 11px; padding: 8px 12px; }
  .crumbs{ font-size: 11px; }
  .two-col{ grid-template-columns: 1fr; gap: 40px; }
  .feature-grid{ grid-template-columns: 1fr; }
  .checklist{ grid-template-columns: 1fr; }
  .price-row{ grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
  .price-row.head{ display: none; }
  .related-grid{ grid-template-columns: 1fr 1fr; }
  .midcta{ grid-template-columns: 1fr; padding: 36px 28px; }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .float-wa{ animation: none; }
}

/* ============================================================
   MET PREMIUM BRAND LAYER — bespoke travel/visa visual system
   (passport stamps · boarding-pass cards · flight routes ·
    dotted world-map texture · refined motion) — v9
   ============================================================ */

/* ---- 1. Subtle dotted "atlas" texture on key sections ---- */
.visa, .tours, .stats, .directors-sec, .section.alt, .why{
  position: relative;
}
.visa::after, .tours::after, .section.alt::after, .why::after{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(currentColor .9px, transparent .9px);
  background-size: 26px 26px;
  color: var(--green);
  opacity:.05;
  pointer-events:none;
  z-index:0;
}
.visa > *, .tours > *, .section.alt > *, .why > *{ position:relative; z-index:1; }
[data-theme="dark"] .visa::after,[data-theme="dark"] .tours::after,
[data-theme="dark"] .section.alt::after,[data-theme="dark"] .why::after{ opacity:.07; }

/* ---- 2. Passport-stamp emblem on every interior page hero ---- */
.page-hero{ position:relative; overflow:hidden; }
.page-hero .container{ position:relative; z-index:2; }
.page-hero::after{
  content:"";
  position:absolute;
  top:14%; right:5%;
  width:230px; height:150px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='230' height='150' viewBox='0 0 230 150'><g fill='none' stroke='%23ffffff' stroke-width='3'><rect x='8' y='8' width='214' height='134' rx='16' stroke-dasharray='2 7'/><rect x='17' y='17' width='196' height='116' rx='11'/></g><text x='115' y='52' text-anchor='middle' font-family='Georgia,serif' font-weight='bold' font-size='26' fill='%23ffffff'>MIDDLE EAST</text><text x='115' y='76' text-anchor='middle' font-family='Arial' font-size='11' letter-spacing='4' fill='%23ffffff'>TRAVELS %26 TOURISM</text><line x1='40' y1='90' x2='190' y2='90' stroke='%23ffffff' stroke-width='1.5'/><text x='115' y='112' text-anchor='middle' font-family='Arial' font-weight='bold' font-size='15' letter-spacing='5' fill='%23ffffff'>CALICUT</text></svg>");
  background-repeat:no-repeat;
  background-size:contain;
  transform:rotate(-11deg);
  opacity:.16;
  pointer-events:none;
  z-index:1;
}
@media (max-width:900px){ .page-hero::after{ width:150px; height:98px; top:auto; bottom:10%; right:-10px; opacity:.12; } }

/* ---- 3. Boarding-pass perforation + lift on cards ---- */
.feature, .visa-card:not(.featured):not(.global), .related-card{
  position:relative;
}
.feature::before, .related-card::before{
  content:"";
  position:absolute; left:-9px; top:50%; transform:translateY(-50%);
  width:18px; height:18px; border-radius:50%;
  background:var(--bg); border:1px solid var(--border);
  opacity:0; transition:opacity .4s var(--ease);
}
.feature:hover::before, .related-card:hover::before{ opacity:1; }
.feature{ transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease); }
.feature:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--green); }
.feature-icon{ transition: background .35s var(--ease), color .35s var(--ease), transform .4s var(--ease-bounce); }
.feature:hover .feature-icon{ background:var(--green); color:#fff; transform:rotate(-6deg) scale(1.06); }

/* ---- 4. Flight-path animated underline under every eyebrow ---- */
.eyebrow{ position:relative; }
.section-head .eyebrow::after{
  content:"\2708";
  margin-left:10px;
  font-size:12px;
  opacity:.5;
  display:inline-block;
  animation: taxi 4.5s ease-in-out infinite;
}
@keyframes taxi{ 0%,100%{ transform:translateX(0) } 50%{ transform:translateX(6px) } }

/* ---- 5. Button sheen sweep ---- */
.btn-primary::after, .btn-wa::after{
  content:"";
  position:absolute; top:0; left:-120%;
  width:60%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform:skewX(-18deg);
  transition:left .6s var(--ease);
  pointer-events:none;
}
.btn-primary:hover::after, .btn-wa:hover::after{ left:130%; }

/* ---- 6. Price-row → boarding-pass hover ---- */
.price-row:not(.head){ transition: background .35s var(--ease), transform .35s var(--ease-out); }
.price-row:not(.head):hover{ background:var(--accent-mist); transform:translateX(4px); }

/* ---- 7. Two-col image: gentle zoom + framing ---- */
.two-col-img{ overflow:hidden; border-radius:var(--r-lg); position:relative; }
.two-col-img.bg{ background-size:cover; background-position:center; transition:transform 1.1s var(--ease-out); }
.two-col:hover .two-col-img.bg{ transform:scale(1.05); }

/* ---- 8. Scroll-reveal (content-first: only animates once JS marks ready) ---- */
html.reveal-ready .reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out); }
html.reveal-ready .reveal.is-visible{ opacity:1; transform:none; }
html.reveal-ready .reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
html.reveal-ready .reveal-stagger.is-visible > *{ opacity:1; transform:none; }
html.reveal-ready .reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.07s }
html.reveal-ready .reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.14s }
html.reveal-ready .reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.21s }
html.reveal-ready .reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.28s }
html.reveal-ready .reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.35s }

/* ---- 9. Destination marquee strip ---- */
.marquee{ overflow:hidden; border-block:1px solid var(--border); background:var(--bg); padding:18px 0; }
.marquee-track{ display:flex; gap:48px; width:max-content; animation:marquee 32s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{ display:inline-flex; align-items:center; gap:14px; font-family:var(--font-display); font-weight:600; font-size:1.5rem; color:var(--text-muted); white-space:nowrap; }
.marquee-item svg{ color:var(--green); opacity:.7; }
@keyframes marquee{ to{ transform:translateX(-50%) } }

/* ---- 10. Section perforated divider (flight path) ---- */
.routeline{ display:flex; align-items:center; gap:0; margin:0 auto; width:min(1100px,90vw); padding:8px 0; color:var(--green); }
.routeline .dot{ width:9px;height:9px;border-radius:50%;background:currentColor;flex:none; }
.routeline .track{ flex:1; height:2px; background:repeating-linear-gradient(90deg,currentColor 0 7px,transparent 7px 15px); opacity:.5; }
.routeline svg{ flex:none; }

@media (prefers-reduced-motion: reduce){
  .section-head .eyebrow::after{ animation:none; }
  .marquee-track{ animation:none; }
  html.reveal-ready .reveal, html.reveal-ready .reveal-stagger > *{ opacity:1 !important; transform:none !important; }
}
