/* ==========================================================================
   KIAVASITY TRAVELS — DESIGN SYSTEM
   Concept: the visual language of travel documents — boarding passes,
   passport stamps, luggage tags, ticket stubs — applied to a modern,
   trustworthy agency site. Perforated dividers, flight-code style
   eyebrows, circular "approved" stamps for trust signals.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;600;700;800&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  /* Color tokens */
  --ink-navy:     #12283F;
  --ink-navy-90:  #1B3654;
  --runway-gold:  #E8A33D;
  --runway-gold-dark: #C9821E;
  --sky-teal:     #2D7D8C;
  --cloud-white:  #F7F8FA;
  --stamp-green:  #3C9D6E;
  --slate:        #5B6B7C;
  --white:        #FFFFFF;
  --border:       #E2E6EB;
  --ink-navy-rgb: 18, 40, 63;

/* Type */
--font-display: 'Raleway', sans-serif;
--font-body:    'Inter', sans-serif;
--font-mono:    'IBM Plex Mono', monospace;

  /* Layout */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1400px;
  --shadow-card: 0 10px 30px -12px rgba(18,40,63,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-navy);
  background: var(--cloud-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--slate); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--runway-gold); outline-offset: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 15px; }
@media (min-width: 1240px) { .container { padding: 0 16px; } }
.section--spaced-top { padding-top: 130px; }
.section { padding: 60px 0; }
.section--tight { padding: 56px 0; }
.section--navy { background: var(--ink-navy); color: #fff; }
.section--navy p { color: #B9C6D3; }
.section--alt { background: #fff; }

@media (max-width: 768px) {
  .container {
    padding-left: 27px;
    padding-right: 27px;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-teal);
  background: rgba(45,125,140,0.08);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.eyebrow::before { content: "✈"; font-size: .85em; }

.section-head { max-width: 620px; margin: 0 0 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--runway-gold); color: var(--ink-navy); }
.btn-primary:hover { background: var(--runway-gold-dark); box-shadow: 0 8px 20px -6px rgba(232,163,61,.6); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-navy { background: var(--ink-navy); color: #fff; }
.btn-navy:hover { background: var(--ink-navy-90); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
:root { --header-h: 78px; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247,248,250,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--ink-navy); flex-shrink: 0; }
.brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink-navy);
  color: var(--runway-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.main-nav a { font-size: .89rem; font-weight: 500; color: var(--ink-navy); position: relative; white-space: nowrap; }
.main-nav a.active { color: var(--sky-teal); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--runway-gold); transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger — animates into an X when open */
.nav-toggle {
  display: none; position: relative; width: 26px; height: 20px;
  background: none; border: 0; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink-navy);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

@media (max-width:980px){

/* Space between WhatsApp and hamburger */
.header-cta{
    gap:18px;
}

.header-cta .btn{
    margin-right:6px;
}

/* Full-screen menu */
.main-nav{
    position:fixed;
    inset:0;
    top:var(--header-h);
    background:#fff;
    display:flex;
    flex-direction:column;

    transform:translateX(100%);
    transition:transform .35s ease;

    visibility:visible;
    max-height:none;

    z-index:999;

    overflow:hidden;
}

/* Open menu */
.main-nav.open{
    transform:translateX(0);
}

/* Only the menu scrolls */
.main-nav ul{
    flex:1;
    overflow-y:auto;

    display:block;

    width:100%;

    margin:0;
    padding:0;

    list-style:none;
}

.main-nav ul li{
    width:100%;
}

.main-nav ul li a{
    display:block;
    width:100%;

    padding:20px 28px;

    text-align:left;

    border-bottom:1px solid var(--border);

    font-size:1rem;
    font-weight:600;
}

.main-nav a::after{
    display:none;
}

.nav-toggle{
    display:block;
}

.header-cta .btn span.hide-mobile{
    display:none;
}

}
html.menu-open,
body.menu-open{
    overflow:hidden;
    height:100%;
    touch-action:none;
}

/* ==========================================================================
   PERFORATED DIVIDER (ticket-stub motif)
   ========================================================================== */
.perforated {
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(var(--ink-navy-rgb), .18);
  margin: 0;
}
.perforated::before, .perforated::after {
  content: ""; position: absolute; top: -11px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cloud-white);
}
.perforated::before { left: -35px; }
.perforated::after { right: -35px; }

/* ==========================================================================
   HERO + BOARDING PASS SEARCH WIDGET
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  padding: 76px 0 150px;
  overflow: hidden;
  background: var(--ink-navy); /* shows instantly before slideshow images load */
}

/* Swiping background slideshow — crossfades through destination photos.
   Purely CSS-driven so it's dynamic with zero JS overhead. Replace the
   4 images in /assets/images/hero/ with your own — any size/ratio works
   because of background-size:cover. */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.04); }
  4%   { opacity: 1; transform: scale(1.04); }
  22%  { opacity: 1; transform: scale(1.1); }
  26%  { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(232,163,61,.08), transparent 90%),
    linear-gradient(180deg, rgba(18,40,63,.40) 0%, rgba(18,40,63,.50) 55%, rgba(18,40,63,.65) 90%);
}
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .08;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid { max-width: 660px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--runway-gold); }
.hero-lede { font-size: 1.08rem; color: #C6D2DD; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-display); font-size: 1.6rem; display: block; color: #fff; }
.hero-stats .stat span { font-size: .8rem; color: #9FB0BF; }

/* Decorative flight-path animation — sits behind the text, never competes
   with it (fixes the old mobile overlap issue). */
.hero-flightpath {
  position: absolute; z-index: 1; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  opacity: .3; pointer-events: none;
}
.hero-flightpath svg { width: 640px; max-width: 90vw; height: auto; }
.flight-line { stroke-dasharray: 6 9; animation: dashFlow 2.4s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -30; } }
.plane-icon { animation: flyPath 5.5s ease-in-out infinite; transform-origin: center; }
@keyframes flyPath {
  0%   { transform: translate(0,0) rotate(38deg); }
  50%  { transform: translate(-26px,-34px) rotate(38deg); }
  100% { transform: translate(0,0) rotate(38deg); }
}
@media (max-width: 980px) {
  .hero-flightpath { justify-content: center; opacity: .18; }
}

/* Boarding pass search card */
.boarding-pass {
  position: relative;
  margin-top: -96px;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 210px;
  overflow: visible;
}
.bp-main { padding: 30px 34px 26px; }
.bp-tabs { display: flex; gap: 6px; margin-bottom: 20px; }
.bp-tab {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px; border: 1px solid var(--border); color: var(--slate);
  background: #fff; cursor: pointer;
}
.bp-tab.is-active { background: var(--ink-navy); color: #fff; border-color: var(--ink-navy); }
.bp-fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: end; }
.bp-field label {
  display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sky-teal); margin-bottom: 6px;
}
.bp-field input, .bp-field select {
  width: 100%; padding: 12px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink-navy); background: #fbfcfd;
}
.bp-field input:focus, .bp-field select:focus { border-color: var(--sky-teal); outline: none; }
.bp-stub {
  background: var(--ink-navy);
  color: #fff;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px; gap: 10px; text-align:center;
  border-left: 2px dashed rgba(255,255,255,.25);
}
.bp-stub .code { font-family: var(--font-mono); font-size: .75rem; color: var(--runway-gold); letter-spacing:.08em;}
.bp-stub button { width: 100%; }

@media (max-width: 980px) {
  .boarding-pass { grid-template-columns: 1fr; }
  .bp-fields { grid-template-columns: 1fr 1fr; }
  .bp-stub { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-left:0; border-top: 2px dashed rgba(255,255,255,.25); }
}
@media (max-width: 560px) {
  .bp-fields { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SERVICE / LUGGAGE-TAG CARDS
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.tag-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 30px 26px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tag-card::before {
  content: ""; position: absolute; top: 22px; right: -7px; width: 14px; height: 14px;
  background: var(--cloud-white); border: 1px solid var(--border); border-radius: 50%;
}
.tag-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.tag-card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; background: rgba(232,163,61,.14);
}
.tag-card h3 { margin-bottom: 8px; }
.tag-card p { font-size: .92rem; margin-bottom: 16px; }
.tag-card .go { font-family: var(--font-mono); font-size: .75rem; color: var(--sky-teal); letter-spacing: .05em; }
.tag-card .go::after { content: " →"; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; margin-top: 210px; } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .services-grid {
    margin-top: 40px;
  }
}

/* ==========================================================================
   PASSPORT STAMP TRUST BADGES
   ========================================================================== */
.stamp-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stamp {
  flex: 1 1 200px;
  text-align: center;
  border: 2px dashed rgba(var(--ink-navy-rgb), .25);
  border-radius: 50% / 18%;
  padding: 26px 14px;
  transform: rotate(-2deg);
}
.stamp:nth-child(2n) { transform: rotate(2deg); }
.stamp b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--ink-navy); }
.stamp span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sky-teal); }

/* ==========================================================================
   TOUR CARDS
   ========================================================================== */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
/* Fixed-ratio frame: drop in any replacement image at any resolution and it
   will crop to fit cleanly — no layout breakage. */
.tour-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, var(--sky-teal), var(--ink-navy)); }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tour-card:hover .tour-media img { transform: scale(1.06); }
.tour-media .price-chip {
  position: absolute; bottom: 12px; left: 12px; background: #fff; padding: 6px 12px; border-radius: 100px;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600; color: var(--ink-navy);
}
.tour-body { padding: 20px 22px 24px; }
.tour-body .dest { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sky-teal); }
.tour-body h3 { margin: 6px 0 10px; }
.tour-meta { display: flex; gap: 14px; font-size: .82rem; color: var(--slate); margin-bottom: 16px; }

@media (max-width: 900px) { .tour-grid { grid-template-columns: 1fr 1fr; } }

/* Swipeable single-row carousel on phones */
@media (max-width: 768px) {
  .tour-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .tour-grid::-webkit-scrollbar {
    display: none;
  }

  .tour-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
/* Testimonial carousel — swipeable on touch, auto-advances, dot navigation.
   Replace the sample quotes/names in index.php with real ones any time. */
.testi-carousel { position: relative; }
.testi-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 10px;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  background: #fff; border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--border);
  flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start;
  transition: box-shadow .2s ease, transform .2s ease;
}
.testi-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.testi-card .stars { color: var(--runway-gold); letter-spacing: 2px; margin-bottom: 10px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--sky-teal); color: #fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight: 700; overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card .who b { display: block; font-size: .92rem; }
.testi-card .who span { font-size: .78rem; color: var(--slate); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--border);
  cursor: pointer; padding: 0; transition: background .2s ease, width .2s ease;
}
.testi-dots button.is-active { background: var(--runway-gold); width: 22px; border-radius: 5px; }

@media (max-width: 900px) { .testi-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 620px) { .testi-card { flex: 0 0 88%; } }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--sky-teal), var(--ink-navy));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; }
.cta-banner p { color: #D6E2E9; margin: 0; }

/* ==========================================================================
   FORMS (shared across service pages)
   ========================================================================== */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 4px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-navy); }
.form-field .hint { font-size: .78rem; color: var(--slate); margin-top: 4px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; background: #fbfcfd; color: var(--ink-navy);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sky-teal); outline: none; }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note {
  display: flex; gap: 10px; align-items: flex-start; background: rgba(45,125,140,.08); border: 1px solid rgba(45,125,140,.2);
  border-radius: var(--radius-sm); padding: 14px 16px; font-size: .85rem; color: var(--ink-navy); margin-bottom: 24px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.alert { padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: .92rem; }
.alert-success { background: rgba(60,157,110,.12); color: #2A7350; border: 1px solid rgba(60,157,110,.3); }
.alert-error { background: rgba(200,60,60,.1); color: #A3342F; border: 1px solid rgba(200,60,60,.3); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink-navy); color: #B9C6D3; padding: 64px 0 26px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-grid li, .footer-brand p { overflow-wrap: break-word; word-break: break-word; }
.footer-grid h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 10px; font-size: .88rem; }
.footer-grid a:hover { color: var(--runway-gold); }
.footer-brand p { color: #91A2B1; font-size: .88rem; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: #7F91A1; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* Utility */
.mt-0{margin-top:0} .text-center{text-align:center}
.badge-status { display:inline-block; padding:3px 10px; border-radius: 100px; font-size:.72rem; font-family: var(--font-mono); }
.badge-new { background:#FFF1DA; color:#8A5A16; }
.badge-in_progress { background:#E1EEF7; color:#1D5C79; }
.badge-completed { background:#DEF3E6; color:#1F7A4C; }

/* ==========================================================================
   SERVICES — v3 cards (vivid gradient backgrounds, glow on hover)
   ========================================================================== */
.service-card {
  position: relative;
  display: block;
  border-radius: 20px;
  padding: 34px 28px 30px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(8,18,32,.82), rgba(8,18,32,.94)),
    linear-gradient(135deg, var(--c1, var(--runway-gold)), var(--c2, var(--ink-navy)));
  box-shadow: 0 12px 30px -16px rgba(18,40,63,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .3;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 16px 16px;
}
.service-card::after {
  content: attr(data-icon); position: absolute; right: -14px; bottom: -22px; z-index: 0;
  font-size: 6rem; line-height: 1; opacity: .16; transform: rotate(-8deg); pointer-events: none;
}
.service-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 22px 46px -16px var(--c1, var(--runway-gold)); }
.service-card > * { position: relative; z-index: 1; }
.service-card .num {
  position: absolute; top: 22px; right: 24px; z-index: 1;
  font-family: var(--font-mono); font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 600;
}
.service-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; background: rgba(255,255,255,.16);
  transition: transform .3s ease;
}
.service-card:hover .icon-wrap { transform: rotate(-6deg) scale(1.08); }
.service-card h3 { margin-bottom: 8px; font-size: 1.12rem; color: #fff; }
.service-card p { font-size: .91rem; margin-bottom: 18px; color: rgba(255,255,255,.82); }
.service-card .go-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .03em;
  color: #fff;
}
.service-card .go-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(18, 40, 63, .88);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);

  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: #fff;

  transition: all .25s ease;
}

.service-card:hover .go-link {
  background: var(--runway-gold);
  color: var(--ink-navy);
  border-color: var(--runway-gold);
}

.service-card:hover .go-link svg {
  transform: translateX(5px);
}

/* ==========================================================================
   STAT COUNTERS (count-up on scroll into view)
   ========================================================================== */
.stamp b.counter { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   WHY CHOOSE US — dark navy band, glass cards, glowing icon circles
   ========================================================================== */
.section--dark {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ink-navy) 0%, #0c1c2e 55%, #0f2a33 100%);
  color: #fff;
}
.section--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section--dark .container { position: relative; z-index: 1; }
.section--dark .eyebrow { background: rgba(255,255,255,.1); color: #fff; }
.section--dark h2 { color: #fff; }
.section--dark .section-head p { color: #B9C6D3; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 30px 24px;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.why-card .icon-circle {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 20px;
  background: var(--accent, var(--runway-gold));
  box-shadow: 0 10px 24px -8px var(--accent, var(--runway-gold));
}
.why-card h3 { font-size: 1.04rem; margin-bottom: 8px; color: #fff; }
.why-card p { font-size: .89rem; margin: 0; color: #B9C6D3; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   BLOG / INSIGHTS
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--sky-teal), var(--ink-navy)); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 20px 22px 24px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--sky-teal); margin-bottom: 10px; }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--slate); }
.blog-body h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.3; }
.blog-body p { font-size: .9rem; margin-bottom: 14px; }
.blog-readmore { font-family: var(--font-mono); font-size: .76rem; font-weight: 600; color: var(--ink-navy); }
.blog-readmore::after { content: " →"; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }

/* Swipeable single-card row on phones */
@media (max-width: 768px) {
  .blog-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .blog-grid::-webkit-scrollbar {
    display: none;
  }

  .blog-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
/* Mobile carousel arrows */
.mobile-only{
    display:none;
}

@media (max-width:768px){

.mobile-only{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-bottom:18px;
}

.carousel-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:var(--ink-navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
    font-size:18px;
}

.carousel-btn:hover{
    background:var(--runway-gold);
    color:var(--ink-navy);
}

}

/* Navigation arrows */
.carousel-nav{
    display:none;
}

@media (max-width:768px){

.carousel-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.carousel-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--ink-navy);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.25s ease;
}

.carousel-btn:hover{
    background:var(--runway-gold);
    color:var(--ink-navy);
}

}

/* ==========================================================================
   FOOTER - MOBILE
   ========================================================================== */
@media (max-width:768px){

.footer-grid{
    display:grid;
    grid-template-columns:auto auto;
    justify-content:center;
    column-gap:60px;
}

/* Brand spans full width */
.footer-brand{
    grid-column:1 / -1;
    text-align:left;
}

.footer-brand .brand{
    justify-content:flex-start;
    margin-bottom:18px;
}

.footer-brand p{
    margin:0;
    text-align:justify;
    text-justify:inter-word;
}
.footer-brand p{
    margin:0;
    text-align:justify;
    text-justify:inter-word;
    font-size:1rem;
    line-height:1.8;
    color:rgba(255,255,255,.88);
}

/* Services */
.footer-grid > div:nth-child(2){
    text-align:left;
}

/* Company */
.footer-grid > div:nth-child(3){
    text-align:left;
}

/* Get in touch spans full width */
.footer-grid > div:nth-child(4){
    grid-column:1 / -1;
    text-align:center;
}

.footer-grid > div:nth-child(4) ul{
    padding:0;
    list-style:none;
}

.footer-grid > div:nth-child(4) li{
    margin-bottom:10px;
}

/* Footer bottom */
.footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
}

}


.footer-social{
    margin-top:18px;
    display:flex;
    justify-content:center;
    gap:14px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-social a:hover{
    background:var(--runway-gold);
    color:var(--ink-navy);
    transform:translateY(-4px);
}

.footer-social i{
    font-size:1.05rem;
}


/* ==========================================================================
   FLIGHT BOOKING PAGE — page header (compact, no slideshow)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ink-navy) 0%, #0c1c2e 100%);
  color: #fff; 
  padding: 56px 0 90px;   /* ← increased bottom padding */
  text-align: center;
}

.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #C6D2DD; max-width: 560px; margin: 0 auto; }
.page-hero .trust-strip {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 26px;
  font-family: var(--font-mono); font-size: .78rem; color: #9FB0BF;
}
.page-hero .trust-strip span { display: flex; align-items: center; gap: 6px; }

/* ==========================================================================
   BIG FLIGHT BOOKING WIDGET
   ========================================================================== */
.widget-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 8px; margin-top: -46px; position: relative; z-index: 5;
}
.widget-inner { padding: 30px 30px 34px; }

.widget-toprow { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.trip-tabs { display: flex; gap: 6px; }
.trip-tab {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--border); color: var(--slate);
  background: #fff; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.trip-tab.is-active { background: var(--ink-navy); color: #fff; border-color: var(--ink-navy); }

.cabin-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.cabin-pill {
  font-size: .82rem; padding: 8px 14px; border-radius: 100px; border: 1px solid var(--border);
  color: var(--ink-navy); background: #fff; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cabin-pill.is-active { background: var(--runway-gold); border-color: var(--runway-gold); color: var(--ink-navy); font-weight: 600; }

/* Route row: From / swap / To / Depart / Return / Passengers */
.route-row { display: grid; grid-template-columns: 1fr auto 1fr 1fr 1fr 1fr; gap: 14px; align-items: end; }
.route-field label {
  display: block; font-size: .78rem; font-weight: 600; color: var(--ink-navy); margin-bottom: 6px;
}
.route-field input, .route-field select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink-navy); background: #fbfcfd;
}
.route-field input:focus, .route-field select:focus { border-color: var(--sky-teal); outline: none; }
.swap-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff;
  color: var(--sky-teal); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, border-color .2s ease; flex-shrink: 0;
}
.swap-btn:hover { transform: rotate(180deg); border-color: var(--sky-teal); }

@media (max-width: 1100px) {
  .route-row { grid-template-columns: 1fr 1fr; }
  .swap-btn { display: none; }
}
@media (max-width: 620px) {
  .route-row { grid-template-columns: 1fr; }
}

/* Multi-city rows */
.multicity-list { display: flex; flex-direction: column; gap: 14px; }
.multicity-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.multicity-row .remove-leg {
  width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: #fff;
  color: #A3342F; cursor: pointer; font-size: 1rem;
}
.add-leg-btn {
  align-self: flex-start; margin-top: 4px;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600; color: var(--sky-teal);
  background: none; border: 1.5px dashed var(--sky-teal); border-radius: 100px; padding: 9px 18px; cursor: pointer;
}
@media (max-width: 700px) { .multicity-row { grid-template-columns: 1fr; } }

/* Passenger dropdown */
.pax-wrap { position: relative; }
.pax-trigger {
  width: 100%; text-align: left; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fbfcfd; font-family: var(--font-body); font-size: .9rem; color: var(--ink-navy); cursor: pointer;
}
.pax-panel {
  display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 300px; z-index: 20;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 18px;
}
.pax-panel.open { display: block; }
.pax-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.pax-row:last-of-type { border-bottom: 0; }
.pax-row .pax-label b { display: block; font-size: .88rem; color: var(--ink-navy); }
.pax-row .pax-label span { font-size: .76rem; color: var(--slate); }
.pax-stepper { display: flex; align-items: center; gap: 10px; }
.pax-stepper button {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff;
  color: var(--ink-navy); font-size: 1rem; cursor: pointer; line-height: 1;
}
.pax-stepper button:disabled { opacity: .35; cursor: not-allowed; }
.pax-stepper span { min-width: 16px; text-align: center; font-weight: 600; }
.pax-note { font-size: .74rem; color: var(--slate); margin-top: 10px; }
.pax-done { margin-top: 12px; width: 100%; }

/* ==========================================================================
   HOW IT WORKS (steps)
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px; }
.step-card .step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink-navy); color: var(--runway-gold);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: .9rem;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.step-card p { font-size: .86rem; margin: 0; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TRENDING ROUTES
   ========================================================================== */
.route-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border);
  background: #fff; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
.route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.route-card .route-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.route-card .route-media img { width: 100%; height: 100%; object-fit: cover; }
.route-card .route-path {
  position: absolute; bottom: 12px; left: 12px; right: 12px; background: rgba(18,40,63,.85); color: #fff;
  border-radius: 10px; padding: 10px 14px; font-family: var(--font-mono); font-size: .82rem;
  display: flex; justify-content: space-between; align-items: center;
}
.route-card .route-body { padding: 16px 18px 18px; }
.route-card .route-body .from-price { font-size: .82rem; color: var(--slate); }
.route-card .route-body .from-price b { color: var(--ink-navy); font-size: 1.05rem; }



/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 4px; background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-navy);
}
.faq-question .plus { font-size: 1.3rem; color: var(--sky-teal); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 4px 20px; font-size: .92rem; }
.faq-item.open .faq-answer { max-height: 260px; }

/* ==========================================================================
   NEWSLETTER BAND
   ========================================================================== */
.newsletter-band {
  background: linear-gradient(120deg, var(--sky-teal), var(--ink-navy));
  border-radius: var(--radius-lg); color: #fff; padding: 44px 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.newsletter-band h2 { color: #fff; margin-bottom: 6px; font-size: 1.4rem; }
.newsletter-band p { color: #D6E2E9; margin: 0; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 0; min-width: 240px; font-size: .92rem;
}
@media (max-width: 560px) { .newsletter-form { flex-direction: column; width: 100%; } .newsletter-form input { min-width: 0; } }

/* Section subheading used inside the widget to separate field groups */
.widget-subhead {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--sky-teal); margin: 28px 0 14px; padding-top: 22px; border-top: 1px dashed var(--border);
}
.widget-subhead:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--slate); }
.checkbox-row input { margin-top: 3px; }

.reference-box {
  background: rgba(60,157,110,.1); border: 1px solid rgba(60,157,110,.3); border-radius: var(--radius-md);
  padding: 22px 24px; margin-bottom: 24px;
}
.reference-box .ref-code {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: var(--stamp-green); letter-spacing: .03em;
}


/* ==========================================================================
   TRENDING ROUTES — plain grid on desktop, stacked list on mobile
   (no JS, no carousel — just the first 4 cards, one after another)
   ========================================================================== */
.route-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .route-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  /* Only show the first 4 cards on mobile — the rest stay hidden */
  .route-track .route-card:nth-child(n+5) {
    display: none;
  }
}



/* ==========================================================================
   VISA SUPPORT — search box + country grid
   ========================================================================== */
.visa-search {
  max-width: 480px; margin: 0 auto 40px; position: relative;
}
.visa-search input {
  width: 100%; padding: 15px 20px 15px 46px; border: 1.5px solid var(--border); border-radius: 100px;
  font-family: var(--font-body); font-size: .95rem; background: #fff; color: var(--ink-navy);
  box-shadow: 0 8px 24px -14px rgba(18,40,63,.25);
}
.visa-search input:focus { outline: none; border-color: var(--sky-teal); }
.visa-search::before {
  content: "🔍"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); font-size: .95rem; opacity: .6;
}
.visa-empty { text-align: center; color: var(--slate); padding: 40px 0; display: none; }
.visa-empty.show { display: block; }

.visa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.visa-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.visa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.visa-card .visa-flag { font-size: 2.2rem; margin-bottom: 14px; line-height: 1; }
.visa-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.visa-card .visa-summary { font-size: .88rem; margin-bottom: 14px; flex-grow: 1; }
.visa-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.visa-pill {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .03em; text-transform: uppercase;
  background: rgba(45,125,140,.1); color: var(--sky-teal); padding: 4px 10px; border-radius: 100px;
}
.visa-card .visa-processing { font-size: .8rem; color: var(--slate); margin-bottom: 16px; }
.visa-card .visa-processing b { color: var(--ink-navy); }
.visa-card.featured { border-color: var(--runway-gold); position: relative; }
.visa-card.featured::before {
  content: "Popular"; position: absolute; top: -11px; left: 20px; background: var(--runway-gold); color: var(--ink-navy);
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700; padding: 3px 12px; border-radius: 100px;
}
@media (max-width: 900px) { .visa-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .visa-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CUSTOM VISA REQUEST callout
   ========================================================================== */
.custom-request {
  background: linear-gradient(120deg, rgba(45,125,140,.08), rgba(232,163,61,.08));
  border: 1px dashed var(--sky-teal); border-radius: var(--radius-lg);
  padding: 36px 40px; text-align: center;
}
.custom-request h3 { margin-bottom: 8px; }
.custom-request p { max-width: 520px; margin: 0 auto 22px; }
.custom-request .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   VISA DETAIL PAGE
   ========================================================================== */
.visa-detail-hero {
  background: linear-gradient(160deg, var(--ink-navy) 0%, #0c1c2e 100%); color: #fff; padding: 44px 0 36px;
}
.visa-detail-hero .breadcrumb { font-family: var(--font-mono); font-size: .78rem; color: #9FB0BF; margin-bottom: 16px; }
.visa-detail-hero .breadcrumb a { color: #C6D2DD; }
.visa-detail-hero .flag-big { font-size: 2.8rem; margin-bottom: 10px; }
.visa-detail-hero h1 { color: #fff; margin-bottom: 8px; }
.visa-detail-hero p { color: #C6D2DD; max-width: 560px; }

.visa-detail-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.visa-detail-main .info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 30px; margin-bottom: 24px; }
.visa-detail-main .info-card h2 { font-size: 1.2rem; margin-bottom: 18px; }
.doc-list { list-style: none; padding: 0; margin: 0; }
.doc-list li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .92rem; }
.doc-list li:last-child { border-bottom: 0; }
.doc-list li::before { content: "✓"; color: var(--stamp-green); font-weight: 700; flex-shrink: 0; }

.process-steps-list { list-style: none; padding: 0; margin: 0; counter-reset: pstep; }
.process-steps-list li {
  counter-increment: pstep; display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: .92rem;
}
.process-steps-list li:last-child { border-bottom: 0; }
.process-steps-list li::before {
  content: counter(pstep); flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink-navy); color: var(--runway-gold); font-family: var(--font-mono); font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fees-note-box {
  background: rgba(232,163,61,.1); border: 1px solid rgba(232,163,61,.3); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: .88rem; color: var(--ink-navy);
}

.visa-detail-sidebar { position: sticky; top: 100px; }
.visa-detail-sidebar .form-card h2 { font-size: 1.1rem; margin-bottom: 6px; }
.visa-detail-sidebar .form-card > p { font-size: .85rem; margin-bottom: 20px; }

.file-drop {
  border: 1.5px dashed var(--border); border-radius: var(--radius-sm); padding: 16px; text-align: center;
  font-size: .84rem; color: var(--slate); background: #fbfcfd;
}
.file-drop input[type="file"] { margin-top: 8px; font-size: .82rem; width: 100%; }

@media (max-width: 980px) {
  .visa-detail-layout { grid-template-columns: 1fr; }
  .visa-detail-sidebar { position: static; }
}

.related-visas .visa-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .related-visas .visa-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .related-visas .visa-grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   STUDY ABROAD — hero with background image
   ========================================================================== */
.image-hero {
  position: relative;
  overflow: hidden;
  background-color: #0a1420;
  background-image: url('/assets/images/study/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  padding: 90px 0 130px;
  color: #fff;
  text-align: center;
}
.image-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,20,35,.75) 0%, rgba(10,20,35,.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.image-hero .container {
  position: relative;
  z-index: 2;
}
.image-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.image-hero p { color: #D6E2E9; max-width: 560px; margin: 0 auto; }
.image-hero .hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.image-hero .trust-strip { justify-content: center; margin-top: 34px; }

/* ==========================================================================
   UNIVERSITY MARQUEE — auto-scrolling text badge strip, pure CSS
   ========================================================================== */
.uni-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.uni-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  width: max-content;
  animation: uniScroll 34s linear infinite;
}
.uni-marquee:hover .uni-track {
  animation-play-state: paused;
}
.uni-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-navy);
  white-space: nowrap;
}
.uni-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--runway-gold);
  flex-shrink: 0;
}
@keyframes uniScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



/* ==========================================================================
   WORK ABROAD — industries grid (compact icon badges, not a marquee)
   ========================================================================== */
.industry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.industry-badge {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 16px; text-align: center; transition: transform .2s ease, box-shadow .2s ease;
}
.industry-badge:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.industry-badge .industry-icon { font-size: 1.8rem; margin-bottom: 10px; }
.industry-badge span { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-navy); }
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   WORK ABROAD — "no upfront fees" trust banner
   ========================================================================== */
.trust-banner {
  display: flex; align-items: center; gap: 22px;
  background: rgba(60,157,110,.08); border: 1.5px solid rgba(60,157,110,.3);
  border-radius: var(--radius-lg); padding: 30px 34px;
}
.trust-banner .trust-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--stamp-green); color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.trust-banner h3 { margin-bottom: 6px; color: var(--ink-navy); }
.trust-banner p { margin: 0; }
@media (max-width: 620px) { .trust-banner { flex-direction: column; text-align: center; } }



/* ==========================================================================
   CONTACT US — info strip, split form/map layout, quick links, social row
   ========================================================================== */
.contact-info-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px 22px; text-align: center; transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.contact-card .contact-icon {
  width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(232,163,61,.14); display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.contact-card h3 { font-size: .95rem; margin-bottom: 6px; }
.contact-card p { font-size: .88rem; margin: 0; word-break: break-word; }
.contact-card a { color: var(--sky-teal); font-weight: 600; }
@media (max-width: 900px) { .contact-info-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .contact-info-strip { grid-template-columns: 1fr; } }

/* Split layout: form + map/hours */
.contact-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; }
.hours-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 28px; margin-top: 20px;
}
.hours-card h3 { font-size: 1rem; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:first-child { color: var(--ink-navy); font-weight: 600; }
.hours-row span:last-child { color: var(--slate); }
@media (max-width: 980px) { .contact-split { grid-template-columns: 1fr; } }

/* Quick-link cards: "Looking for something specific?" */
.quicklink-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quicklink-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quicklink-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.quicklink-card .quicklink-icon { font-size: 1.7rem; margin-bottom: 10px; }
.quicklink-card h3 { font-size: .95rem; margin-bottom: 4px; }
.quicklink-card span { font-family: var(--font-mono); font-size: .72rem; color: var(--sky-teal); }
@media (max-width: 900px) { .quicklink-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .quicklink-grid { grid-template-columns: 1fr; } }

/* Social row */
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--runway-gold); color: var(--ink-navy); transform: translateY(-3px); }
