/* ============================================================
   Al Safeer Travels LLC — Shared Stylesheet
   ============================================================ */

:root {
  /* Colors */
  --navy-950: #071630;
  --navy-900: #0a1f42;
  --navy-800: #0e2a58;
  --navy-700: #14356e;
  --navy-600: #1a4386;
  --blue-accent: #2f6fed;
  --orange: #f5821f;
  --orange-dark: #d96c0d;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --bg: #f6f8fb;
  --bg-alt: #eef2f8;
  --white: #ffffff;
  --ink: #10192e;
  --ink-soft: #4a5568;
  --ink-faint: #8a94a6;
  --border: #e3e8f0;
  --success: #1b8a5a;
  --danger: #d64545;
  --shadow-sm: 0 2px 8px rgba(10, 31, 66, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 31, 66, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 31, 66, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Type */
  --font-display: "Sora", "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy-900);
  line-height: 1.15;
}

p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section-head h2 { font-size: clamp(26px, 3vw, 34px); }
.section-head p { max-width: 480px; margin-top: 8px; }

.view-all {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-700);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.view-all:hover { gap: 10px; color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(245, 130, 31, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245, 130, 31, 0.4); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy-700);
  color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: var(--white); }
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ============================================================
   TOP BAR
   ============================================================ */
/* ============ WHATSAPP CHANNEL BANNER ============ */
.wa-banner{
  background: #0a1a4d;
  padding: 8px 0;
  text-align: center;
  position: relative;
}
.wa-banner .container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wa-banner a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 20px;
  border-radius: 99px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 6px 16px rgba(37,211,102,.35);
}
.wa-banner a:hover{
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37,211,102,.5);
}
@media (max-width: 700px){
  .wa-banner a{ font-size: 12px; padding: 7px 14px; }
}
.wa-banner svg{ width: 17px; height: 17px; flex: none; }

.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar .tb-welcome { display: none; }
.topbar .tb-follow { display: none; }
.topbar .tb-ph-india { display: none; }
.topbar a, .topbar span { color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--orange); }
.topbar svg { width: 14px; height: 14px; opacity: .85; }
.tb-welcome { font-weight: 700; color: #fff; white-space: nowrap; }
.tb-follow { font-weight: 600; white-space: nowrap; }
.tb-social {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  flex: none; transition: background .2s ease, transform .2s ease;
}
.tb-social svg { width: 13px; height: 13px; opacity: 1; }
.tb-social:hover { background: var(--orange); transform: translateY(-2px); color: #fff; }
.tb-phones { display: inline-flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.tb-ph { white-space: nowrap; }
.tb-ph::after { content: ","; margin-right: 4px; color: rgba(255,255,255,.5); }
.tb-ph:last-child::after { content: none; }
@media (max-width: 1300px) {
  .topbar .tb-welcome { display: none; }
  .topbar .tb-ph-india { display: none; }
}
@media (max-width: 1000px) {
  .topbar .tb-ph-ajman { display: none; }
  .topbar .tb-follow { display: none; }
}
@media (max-width: 900px) {
  .topbar .tb-social { display: none; }
}
.currency-select {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  cursor: pointer;
  max-width: 92px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.currency-select option { color: #111; white-space: nowrap; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy-900);
  letter-spacing: -.2px;
}
.brand-text span {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-faint);
  font-weight: 600;
}
.iata-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 16px;
  margin-left: 6px;
  border-left: 1px solid var(--border);
  font-size: 11px;
  color: var(--ink-faint);
  font-weight: 600;
  line-height: 1.2;
}
.iata-badge svg { width: 22px; height: 22px; }
.iata-badge-img { height: 30px; width: auto; object-fit: contain; }
.brand-logo-img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.footer-logo-img { width: 38px; height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.nav-links a svg {
  width: 12px;
  height: 12px;
  flex: none;
  color: var(--ink-faint);
  transition: color .2s ease;
}
.nav-links a.active svg,
.nav-links a:hover svg { color: var(--orange); }
.dropdown-menu a svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--ink-faint);
}
.dropdown-menu a { display: flex; align-items: center; gap: 8px; }
.dropdown-menu a:hover svg,
.dropdown-menu a.active svg { color: var(--orange); }
.nav-links a.active,
.nav-links a:hover { color: var(--navy-800); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.dropdown-trigger { font-size: 13px; }
.nav-item-dropdown { position: relative; display: flex; align-items: center; }
.dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; padding: 6px 0; margin: 0;
  font-family: inherit; font-weight: 600; color: var(--ink);
  cursor: pointer; white-space: nowrap;
}
.dropdown-trigger:hover { color: var(--navy-800); }
.dropdown-trigger svg { width: 12px; height: 12px; transition: transform .25s ease; }
.nav-item-dropdown:hover .dropdown-trigger svg,
.nav-item-dropdown.open .dropdown-trigger svg { transform: rotate(180deg); }
.nav-item-dropdown.dd-active .dropdown-trigger { color: var(--navy-800); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 18px 34px rgba(10,26,77,.16);
  padding: 8px; min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--bg); color: var(--orange); }
.dropdown-menu a.active { color: var(--orange); background: var(--bg); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-icon-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
}
.nav-icon-link svg { width: 17px; height: 17px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(115deg, var(--navy-950) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(7,22,48,.72) 10%, rgba(10,31,66,.32) 50%, rgba(20,53,110,.12) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 280px;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--orange); }

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  margin-top: 16px;
  max-width: 460px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}
.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-badges svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero-art img { filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)); }
.hero-plane-photo {
  width: min(100%, 460px);
  height: auto;
  border-radius: 18px;
  animation: heroPlaneFloat 5s ease-in-out infinite;
  object-fit: cover;
}
@keyframes heroPlaneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

/* ============================================================
   SEARCH WIDGET (floating card under hero)
   ============================================================ */
.search-widget {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: -90px auto 0;
  padding: 10px;
  width: 100%;
  max-width: 1240px;
  box-sizing: border-box;
}
.widget-tabs {
  display: flex;
  gap: 6px;
  padding: 10px 12px 4px;
  flex-wrap: wrap;
}
.widget-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  transition: background .15s ease, color .15s ease;
}
.widget-tab svg { width: 15px; height: 15px; }
.widget-tab.active { background: var(--navy-900); color: var(--white); }
.widget-tab:not(.active):hover { background: var(--bg-alt); }

.widget-body {
  padding: 18px 18px 20px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.field-grid.cols-3 { grid-template-columns: repeat(3, 1fr) auto; }
.field-grid.cols-4 { grid-template-columns: repeat(4, 1fr) auto; }
.field-grid.cols-6 { grid-template-columns: repeat(4, 1fr) 1.3fr auto; }
.field-grid.cols-fx { grid-template-columns: 1fr 1fr auto 1fr 1fr auto; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  min-width: 0;
}
.field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-faint);
}
.field .field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.field svg { width: 16px; height: 16px; color: var(--navy-700); flex-shrink: 0; }
.field input, .field select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
  min-width: 0;
}
.field input::placeholder { color: var(--ink-faint); font-weight: 500; }

.swap-btn {
  align-self: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  flex-shrink: 0;
  transition: transform .3s ease, background .2s ease;
}
.swap-btn:hover { background: var(--navy-800); color: var(--white); transform: rotate(180deg); }

.widget-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

/* ============================================================
   TYPE / SERVICE TABS (visa type, holiday category, etc.)
   ============================================================ */
.pill-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 0 8px;
}
.pill-tab {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--ink-soft);
  border: 1px solid transparent;
}
.pill-tab.active { background: var(--navy-900); color: var(--white); }

/* ============================================================
   PARTNER STRIP
   ============================================================ */
.partner-strip {
  background: var(--navy-950);
  padding: 26px 0;
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.partner-track::-webkit-scrollbar { display: none; }
.partner-track .logo {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  letter-spacing: .02em;
  flex-shrink: 0;
}

/* ============================================================
   CARDS: routes / offers / destinations
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid.cols-6 { grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-800);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.08); }
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.route-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 16px;
}
.route-line svg { width: 15px; height: 15px; color: var(--orange); }
.route-cities {
  font-size: 12.5px;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
}
.card-meta { font-size: 12.5px; color: var(--ink-faint); display:flex; align-items:center; gap:6px; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 2px;
}
.price-from { font-size: 11.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .03em; }
.price-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-900); }
.price-value span { font-size: 12px; color: var(--ink-faint); font-weight: 600; margin-right: 3px;}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dest-card:hover img { transform: scale(1.1); }
.dest-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,22,48,0) 40%, rgba(7,22,48,0.85) 100%);
}
.dest-card .label {
  position: absolute;
  left: 14px; bottom: 14px;
  color: var(--white);
}
.dest-card .label strong { font-family: var(--font-display); font-size: 16px; display: block; }
.dest-card .label span { font-size: 12px; color: rgba(255,255,255,0.75); }
.flag-badge {
  position: absolute;
  top: 12px; left: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FEATURE STRIP (icon + label row)
   ============================================================ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature-strip.cols-4 { grid-template-columns: repeat(4, 1fr); }
.feature-strip.cols-6 { grid-template-columns: repeat(6, 1fr); }
.feature-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.feature-chip .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
}
.feature-chip .icon svg { width: 22px; height: 22px; }
.feature-chip strong { font-size: 14px; color: var(--navy-900); font-family: var(--font-display); }
.feature-chip p { font-size: 12.5px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
  position: relative;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.step strong { font-size: 14.5px; color: var(--navy-900); }
.step p { font-size: 12.5px; max-width: 160px; }
.step-connector {
  flex: 0 0 auto;
  align-self: center;
  color: var(--border);
  margin-top: -50px;
}
.step-connector svg { width: 26px; height: 12px; }

/* ============================================================
   PROMO BANNER (dark, split)
   ============================================================ */
.promo-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  box-shadow: var(--shadow-md);
}
.promo-banner img { width: 100%; height: 100%; object-fit: cover; }
.promo-content { padding: 34px 38px; color: var(--white); position: relative; }
.promo-badge {
  display: inline-block;
  background: var(--orange);
  padding: 5px 13px;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 14px;
}
.promo-content h3 { color: var(--white); font-size: clamp(20px, 2.4vw, 26px); }
.promo-content p { color: rgba(255,255,255,0.78); margin-top: 8px; max-width: 380px; }
.promo-content ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.promo-content ul li svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--orange);
}
.promo-stats {
  display: flex;
  gap: 22px;
  margin: 22px 0;
}
.promo-stats div { font-size: 12px; color: rgba(255,255,255,0.7); display:flex; align-items:center; gap:6px; }
.promo-stats svg { width: 15px; height: 15px; color: var(--orange); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.why-item {
  text-align: center;
  padding: 22px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
}
.why-item .icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.why-item svg { width: 22px; height: 22px; }
.why-item strong { font-size: 13px; display:block; color: var(--navy-900); }

/* ============================================================
   FOREX TABLE
   ============================================================ */
.rates-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
table.rates-table { width: 100%; border-collapse: collapse; }
table.rates-table thead { background: var(--navy-900); color: var(--white); }
table.rates-table th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  padding: 14px 20px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
table.rates-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}
.cur-cell { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.cur-flag { font-size: 20px; }
.cur-code { color: var(--navy-900); }
.cur-name { color: var(--ink-faint); font-weight: 500; font-size: 12.5px; }
.trend-up { color: var(--success); font-weight: 600; }
.trend-down { color: var(--danger); font-weight: 600; }
.rates-note { font-size: 12px; color: var(--ink-faint); padding: 12px 20px; }

.calc-toggle {
  display: inline-flex;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 18px;
}
.calc-toggle button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.calc-toggle button.active { background: var(--navy-900); color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.split-card.b2c { background: linear-gradient(135deg, var(--navy-700), var(--blue-accent)); }
.split-card.b2b { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.split-card h3 { color: var(--white); font-size: 22px; }
.split-card p { color: rgba(255,255,255,0.8); margin-top: 6px; font-size: 13.5px; }
.split-card ul { margin: 16px 0; display: flex; flex-direction: column; gap: 9px; }
.split-card li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,0.92); }
.split-card li svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.contact-form-card, .contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--navy-900); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy-700);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 16px; }
.form-check a { color: var(--navy-800); font-weight: 600; }

.info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
}
.info-row .icon svg { width: 19px; height: 19px; }
.info-row strong { font-size: 14px; color: var(--navy-900); display: block; }
.info-row span { font-size: 13px; color: var(--ink-soft); }

.office-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.office-card img { height: 150px; width: 100%; object-fit: cover; }
.office-card .body { padding: 16px 18px; }
.office-card strong { font-size: 15px; color: var(--navy-900); display: block; }
.office-card .tag { font-size: 11.5px; color: var(--orange); font-weight: 700; text-transform: uppercase; }
.office-card .addr { font-size: 12.5px; margin: 8px 0; }
.office-card .phone { font-size: 12.5px; font-weight: 600; color: var(--navy-800); }

.newsletter-dark {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--white);
}
.newsletter-dark h4 { color: var(--white); font-size: 16px; }
.newsletter-dark p { color: rgba(255,255,255,0.68); font-size: 12.5px; margin: 8px 0 16px; }
.newsletter-input {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}
.newsletter-input input {
  flex: 1; border: none; background: transparent; padding: 12px 14px; color: var(--white); outline: none; font-size: 13.5px;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input button {
  background: var(--orange); border: none; color: var(--white); padding: 0 16px; display:flex; align-items:center; justify-content:center;
}
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s ease;
}
.social-row a:hover { background: var(--orange); }
.social-row svg { width: 15px; height: 15px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-900);
  cursor: pointer;
}
.faq-q svg { width: 16px; height: 16px; color: var(--ink-faint); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.72);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1fr 1.5fr 1.15fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text strong,
.footer-brand .brand-text span { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 14px; max-width: 260px; }
.footer-col h5 { color: var(--white); font-size: 14px; margin-bottom: 16px; font-family: var(--font-display); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color .15s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 14px; height: 14px; color: var(--white); }
.payment-icons { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pay-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,.35); }
.pay-badge svg { width: 100%; height: 100%; display: block; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .iata-badge { border: none; padding: 0; margin: 0; color: rgba(255,255,255,0.5); }

/* ============================================================
   MISC PAGE HERO (secondary pages, shorter)
   ============================================================ */
.page-hero { padding-bottom: 0; }
.page-hero .hero-grid { grid-template-columns: 1fr; text-align: left; }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.text-center{text-align:center}
.bg-alt{background:var(--bg-alt)}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   STEPPER DROPDOWN (travellers)
   ============================================================ */
[data-stepper] { position: relative; }
.stepper-trigger { cursor: pointer; }
.stepper-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  z-index: 20;
}
.stepper-panel.open { display: block; }
.stepper-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.stepper-row + .stepper-row { border-top: 1px solid var(--border); }
.stepper-row strong { font-size: 13.5px; color: var(--navy-900); display: block; }
.stepper-row span.sub { font-size: 11.5px; color: var(--ink-faint); }
.stepper-controls { display: flex; align-items: center; gap: 10px; }
.stepper-controls button {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--navy-800);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.stepper-controls button:hover { background: var(--navy-800); color: var(--white); }
.stepper-count { min-width: 16px; text-align: center; font-weight: 600; font-size: 13.5px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .card-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-strip, .feature-strip.cols-4, .feature-strip.cols-5, .feature-strip.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner img { display: none; }
}
.navbar .container { position: relative; }
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(10,26,77,.12);
  padding: 6px 20px 14px;
  z-index: 99;
  max-height: calc(100vh - 78px);
  overflow-y: auto;
}
.nav-links.open { display: flex !important; }
.nav-links a {
  padding: 13px 4px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  font-size: 15px;
  justify-content: flex-start;
}
.nav-links a svg { width: 16px; height: 16px; }
.nav-links a:last-child { border-bottom: none; }
.nav-links a.active::after { display: none; }
.nav-links a.active { color: var(--orange); }
.navbar { position: sticky; }
.menu-toggle { display: flex; flex-shrink: 0; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-toggle span { transition: transform .25s ease, opacity .25s ease; }
.nav-item-dropdown { width: 100%; flex-direction: column; align-items: stretch; }
.dropdown-trigger {
  width: 100%; justify-content: space-between; padding: 13px 4px;
  border-bottom: 1px solid var(--border);
}
.dropdown-menu {
  position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  box-shadow: none; border: none; padding: 0; min-width: 0;
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.nav-item-dropdown.open .dropdown-menu,
.nav-item-dropdown:hover .dropdown-menu {
  transform: none;
}
.nav-item-dropdown.open .dropdown-menu { max-height: 260px; }
.dropdown-menu a {
  padding: 12px 4px 12px 16px; border-bottom: 1px solid var(--border); border-radius: 0;
}
.dropdown-menu a:last-child { border-bottom: none; }
@media (max-width: 1300px) {
  .iata-badge { display: none; }
  .navbar .container { gap: 12px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 12.5px; }
}
.iata-badge-mobile{ display: none; }
@media (max-width: 1300px) {
  .iata-badge-mobile{ display: flex; align-items: center; flex: none; margin-right: 2px; }
  .iata-badge-mobile img{ height: 22px; width: auto; object-fit: contain; }
}
@media (max-width: 400px) {
  .iata-badge-mobile img{ height: 18px; }
  .navbar .container{ gap: 8px; }
}
@media (max-width: 640px) {
  .brand-text span { display: none; }
  .navbar-top { gap: 12px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 12.5px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .field-grid, .field-grid.cols-3, .field-grid.cols-4, .field-grid.cols-6, .field-grid.cols-fx { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .split-cards, .contact-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  .topbar-left span:nth-child(2),
  .topbar-left span:nth-child(3) { display: none; }
  .topbar-right a[href="#"]:first-child { display: none; }
}
@media (max-width: 600px) {
  .card-grid, .card-grid.cols-4, .card-grid.cols-6 { grid-template-columns: 1fr 1fr; }
  .field-grid, .field-grid.cols-3, .field-grid.cols-4, .field-grid.cols-6, .field-grid.cols-fx { grid-template-columns: 1fr; }
  .why-grid, .feature-strip, .feature-strip.cols-4, .feature-strip.cols-5, .feature-strip.cols-6 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 48px 0; }
  .swap-btn { display: none; }
  .topbar-left { display: none !important; }
  .topbar-right { gap: 10px; }
  .topbar-right a span,
  .topbar-right a { font-size: 12px; }
  .nav-cta .btn { display: none; }
  .brand-text strong { font-size: 16px; }
  .brand { min-width: 0; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-text strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; max-width: 44vw; }
}
@media (max-width: 380px) {
  .topbar-right a:first-child { display: none; }
}

/* ============ BRAND BANNER (shared across all pages) ============ */
.brand-banner-section{padding:56px 0;}
.brand-banner{
  border-radius:20px;overflow:hidden;box-shadow:0 18px 50px rgba(10,26,77,.14);
  transition:transform .4s ease, box-shadow .4s ease;
}
.brand-banner:hover{transform:translateY(-6px);box-shadow:0 26px 60px rgba(10,26,77,.22);}
.brand-banner img{width:100%;height:auto;display:block;}

/* ============ SERVICES WORD STRIP (plain words, not cards) ============ */
.services-strip{
  padding: 8px 0 4px;
}
.services-strip .container{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap: 0;
  row-gap: 18px;
}
.services-strip .service-word{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900, #0a1a4d);
  white-space: nowrap;
  border-right: 1px solid var(--border, #e6e9f2);
  transition: color .25s ease, transform .25s ease;
}
.services-strip .service-word:last-child{ border-right: none; }
.services-strip .service-word svg{
  width:17px; height:17px; flex:none; color: var(--orange, #f2610c);
}
.services-strip .service-word:hover{ color: var(--orange, #f2610c); transform: translateY(-2px); }
@media (max-width: 900px){
  .services-strip .service-word{ padding: 0 14px; font-size: 13px; border-right: none; }
}
@media (max-width: 600px){
  .services-strip .container{ justify-content:flex-start; }
  .services-strip .service-word{ width: 50%; padding: 6px 0; }
}

/* ============ NAV DROPDOWN ("More" menu) — see full rules near the top of this file ============ */

/* ============ BRAND WORDMARK (plain text, no image/card) ============ */
.brand-wordmark-section{
  padding: 60px 0 44px;
  text-align: center;
}
.brand-wordmark-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 16vw, 200px);
  letter-spacing: -2px;
  line-height: 0.9;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.brand-wordmark-name .lg{
  display: inline-block;
  transition: transform .25s ease;
  flex: none;
}
.brand-wordmark-name .lg:hover{ transform: translateY(-8px); }
.brand-wordmark-name .lg1{ color: #e8a13a; }
.brand-wordmark-name .lg2{ color: #2e9e5b; }
.brand-wordmark-name .lg3{ color: #2f6fed; }
.brand-wordmark-name .lg4{ color: #35b1c9; }
.brand-wordmark-name .lg5{ color: #8b5cf6; }
.brand-wordmark-name .lg6{ color: #2f6fed; }
.brand-wordmark-name .lg7{ color: #f5821f; }
.brand-wordmark-name .lg8{ color: var(--navy-900); }
.brand-wordmark-name .accent{ color: var(--orange); }
.brand-wordmark-sub-row{
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 12px;
}
.brand-wordmark-sub-row .line{ width: 70px; height: 2px; background: var(--navy-900); }
.brand-wordmark-sub{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(14px, 1.8vw, 20px);
  letter-spacing: 6px;
  color: var(--navy-900);
}
.brand-wordmark-icons{
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 26px 14px;
  margin: 34px 0 30px;
}
.brand-wordmark-icons .wm-item{ width: 100px; text-align: center; display: block; text-decoration: none; color: inherit; cursor: pointer; }
.brand-wordmark-icons .wm-badge{
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 9px; color: #fff;
  box-shadow: 0 8px 16px rgba(10,26,77,.16);
  transition: transform .25s ease;
}
.brand-wordmark-icons .wm-item:hover .wm-badge{ transform: translateY(-4px) scale(1.06); }
.brand-wordmark-icons .wm-badge svg{ width: 22px; height: 22px; }
.brand-wordmark-icons .wm-item span{
  font-size: 10.5px; font-weight: 800; letter-spacing: .03em;
  color: var(--navy-900); text-transform: uppercase; line-height: 1.35; display: block;
}
.brand-wordmark-taglines{
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 0;
}
.brand-wordmark-taglines span{
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0 18px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  border-right: 1px solid var(--border);
}
.brand-wordmark-taglines span:last-child{ border-right: none; }
.brand-wordmark-taglines svg{ width: 15px; height: 15px; color: var(--orange); flex: none; }
@media (max-width: 700px){
  .brand-wordmark-name{ letter-spacing: -0.5px; }
  .brand-wordmark-sub-row .line{ width: 34px; }
  .brand-wordmark-sub{ letter-spacing: 3px; }
  .brand-wordmark-icons .wm-item{ width: 78px; }
  .brand-wordmark-icons .wm-badge{ width: 42px; height: 42px; }
  .brand-wordmark-taglines span{ width: 50%; justify-content: center; padding: 6px 0; border-right: none; }
}

/* ============ LETTER VIDEO FILL (video shows through the glyph shape) ============ */
.brand-wordmark-name .lg{
  position: relative;
  overflow: visible;
  display: inline-block;
}
.brand-wordmark-name .lg-text{
  position: relative;
  z-index: 1;
  transition: opacity .3s ease;
}
.lg-video-fill{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
.lg-video-fill.ready{ opacity: 1; }

/* ============ VIDEO MODAL ============ */
.video-modal-overlay{
  position: fixed; inset: 0;
  background: rgba(7, 15, 35, 0.86);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 500;
}
.video-modal-overlay.open{ opacity: 1; visibility: visible; }
.video-modal{
  position: relative;
  width: min(880px, 100%);
  background: #05070f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(.94);
  transition: transform .25s ease;
}
.video-modal-overlay.open .video-modal{ transform: scale(1); }
.video-modal-title{
  position: absolute; top: 0; left: 0; right: 56px;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.65), transparent);
  z-index: 2;
}
.video-modal-close{
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.video-modal-close:hover{ background: rgba(255,255,255,.25); }
.video-modal-close svg{ width: 17px; height: 17px; }
.video-modal-player{
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #000;
}
.video-demo-badge{
  display: none;
  position: absolute; top: 46px; left: 20px; z-index: 3;
  background: rgba(242,97,12,.92); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 99px;
}
.video-demo-badge.show{ display: inline-block; }

.video-modal-missing{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 70px 40px;
  min-height: 320px;
  background: linear-gradient(160deg, #0a1a4d, #071238);
  text-align: center;
}
.video-modal-missing.show{ display: flex; }
.video-modal-missing svg{ width: 44px; height: 44px; color: rgba(255,255,255,.35); }
.video-modal-missing p{ color: #c9d2f0; font-size: 14px; line-height: 1.7; max-width: 360px; }
.video-modal-missing strong{ color: #fff; font-size: 15px; }
.video-modal-missing code{
  background: rgba(255,255,255,.12); color: var(--orange, #f2610c);
  padding: 2px 8px; border-radius: 6px; font-size: 13px; font-family: monospace;
}
@media (max-width: 600px){
  .video-modal-title{ font-size: 13px; padding: 12px 50px 12px 14px; }
  .video-modal-missing{ padding: 50px 24px; min-height: 240px; }
}

/* ============ QUICK SERVICES NAV (icon-on-top style) ============ */
.quick-nav-section{
  display: none; /* legacy wrapper, icons now live inline in the navbar */
}
.quick-nav{
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2px;
  mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 22px), transparent 100%);
}
.quick-nav::-webkit-scrollbar{ display: none; }
.quick-nav a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: none;
  width: 70px;
  padding: 6px 4px;
  border-radius: 10px;
  text-align: center;
  color: var(--ink);
  position: relative;
  transition: background .2s ease, transform .2s ease;
  scroll-snap-align: start;
}
.quick-nav a:hover{ background: var(--bg); transform: translateY(-2px); }
.quick-nav a .qn-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--navy-800);
  transition: background .2s ease, color .2s ease;
}
.quick-nav a .qn-icon svg{ width: 19px; height: 19px; }
.quick-nav a span{
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.quick-nav a.active .qn-icon{ background: var(--orange); color: var(--white); }
.quick-nav a.active span{ color: var(--orange); }
.quick-nav a.active::after{
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: -2px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.quick-nav a .qn-badge{
  position: absolute;
  top: 2px; right: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: .03em;
}
.qn-more{ position: relative; flex: none; }
.qn-more-trigger{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 70px; padding: 6px 4px; border-radius: 10px; text-align: center;
  background: none; border: none; cursor: pointer; font-family: inherit; color: var(--ink);
  transition: background .2s ease, transform .2s ease;
}
.qn-more-trigger:hover{ background: var(--bg); transform: translateY(-2px); }
.qn-more-trigger .qn-icon{
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--navy-800);
}
.qn-more-trigger .qn-icon svg{ width: 18px; height: 18px; }
.qn-more-trigger span{ font-size: 10.5px; font-weight: 700; color: var(--ink); }
.qn-more.open .qn-more-trigger .qn-icon{ background: var(--orange); color: #fff; }
.qn-more.open .qn-more-trigger span{ color: var(--orange); }
.qn-more-panel{
  position: fixed; top: 0; left: 0; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 18px 34px rgba(10,26,77,.16); padding: 8px; min-width: 190px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 500;
}
.qn-more.open .qn-more-panel{ opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.qn-more-panel a{
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.qn-more-panel a svg{ width: 17px; height: 17px; color: var(--ink-faint); flex: none; }
.qn-more-panel a:hover{ background: var(--bg); color: var(--orange); }
.qn-more-panel a:hover svg{ color: var(--orange); }
.qn-more-panel a.active{ color: var(--orange); background: var(--bg); }
@media (max-width: 600px){
  .qn-more-trigger{ width: 76px; }
  .qn-more-trigger .qn-icon{ width: 40px; height: 40px; }
  .qn-more-trigger .qn-icon svg{ width: 20px; height: 20px; }
  .qn-more-trigger span{ font-size: 11px; }
}
@media (max-width: 600px){
  .quick-nav{ display: none; }
  .qn-more{ display: none; }
}

/* ============================================================
   CREATIVE ANIMATIONS — sitewide polish
   ============================================================ */

/* ---- Animated gradient shimmer behind hero content (layered with photo background) ---- */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,.06) 45%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.06) 55%, transparent 70%),
    var(--hero-image, none);
  background-size: 200% 200%, cover;
  background-position: 0% 0%, center;
  background-repeat: no-repeat, no-repeat;
  opacity: 1;
  animation: heroShimmer 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero > .container, .page-hero > .container { position: relative; z-index: 1; }
@keyframes heroShimmer {
  0%   { background-position: 0% 0%, center; }
  50%  { background-position: 100% 100%, center; }
  100% { background-position: 0% 0%; }
}

/* ---- Staggered hero heading/sub/badges entrance ---- */
.hero h1, .page-hero h1 { animation: heroFadeUp .8s cubic-bezier(.22,.9,.32,1) both; }
.hero .hero-sub, .page-hero .hero-sub, .hero-grid p { animation: heroFadeUp .8s .12s cubic-bezier(.22,.9,.32,1) both; }
.hero .hero-badges, .page-hero .hero-badges { animation: heroFadeUp .8s .24s cubic-bezier(.22,.9,.32,1) both; }
.hero .breadcrumb, .page-hero .breadcrumb { animation: heroFadeUp .6s cubic-bezier(.22,.9,.32,1) both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Floating badge bob ---- */
.hero-badges .badge, .page-hero .badge {
  animation: badgeFloat 3.6s ease-in-out infinite;
}
.hero-badges .badge:nth-child(2), .page-hero .badge:nth-child(2) { animation-delay: .3s; }
.hero-badges .badge:nth-child(3), .page-hero .badge:nth-child(3) { animation-delay: .6s; }
.hero-badges .badge:nth-child(4), .page-hero .badge:nth-child(4) { animation-delay: .9s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ---- Button shine sweep on hover ---- */
.btn-primary, .btn-navy {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary::before, .btn-navy::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn-primary:hover::before, .btn-navy:hover::before { left: 130%; }
.btn-primary:hover, .btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(242,97,12,.28);
}

/* ---- Quick-nav icon pop-in on load ---- */
.quick-nav a {
  animation: qnPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.quick-nav .qn-more {
  animation: qnFadeOnly .4s ease both;
}
.quick-nav a:nth-child(1){animation-delay:.02s}.quick-nav a:nth-child(2){animation-delay:.06s}
.quick-nav a:nth-child(3){animation-delay:.10s}.quick-nav a:nth-child(4){animation-delay:.14s}
.quick-nav a:nth-child(5){animation-delay:.18s}.quick-nav a:nth-child(6){animation-delay:.22s}
.quick-nav a:nth-child(7){animation-delay:.26s}.quick-nav a:nth-child(8){animation-delay:.30s}
.quick-nav .qn-more{animation-delay:.34s}
@keyframes qnPop {
  from { opacity: 0; transform: translateY(10px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes qnFadeOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.quick-nav a .qn-icon { transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .2s ease, color .2s ease; }
.quick-nav a:hover .qn-icon { transform: scale(1.1) rotate(-4deg); }

/* ---- "New" badge pulse ---- */
.qn-badge {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(201,162,39,0); }
}

/* ---- Section headings slide-in underline ---- */
.eyebrow::before {
  animation: eyebrowGrow .6s .1s cubic-bezier(.22,.9,.32,1) both;
  transform-origin: left;
}
@keyframes eyebrowGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ---- Card image zoom + shadow lift already present; add subtle rotate-in for icon badges ---- */
.wm-badge, .feature-chip .icon, .why-item .icon, .why-card .ico {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.feature-chip:hover .icon, .why-item:hover .icon, .why-card:hover .ico {
  transform: scale(1.12) rotate(-6deg);
}

/* ---- Brand logo gentle spin on hover ---- */
.brand svg, .brand-logo-img { transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.brand:hover svg, .brand:hover .brand-logo-img { transform: rotate(-12deg) scale(1.06); }

/* ---- Dropdown / More panel entrance bounce ---- */
.dropdown-menu, .qn-more-panel {
  transition: opacity .22s ease, transform .3s cubic-bezier(.34,1.56,.64,1), visibility .22s;
}

/* ---- Scroll-reveal stagger delays for grids (works with existing .reveal-stagger) ---- */
.reveal-stagger.in-view > *,
.reveal-stagger.in > * { animation: staggerRise .55s cubic-bezier(.22,.9,.32,1) both; }
.reveal-stagger > *:nth-child(1){animation-delay:.03s}.reveal-stagger > *:nth-child(2){animation-delay:.09s}
.reveal-stagger > *:nth-child(3){animation-delay:.15s}.reveal-stagger > *:nth-child(4){animation-delay:.21s}
.reveal-stagger > *:nth-child(5){animation-delay:.27s}.reveal-stagger > *:nth-child(6){animation-delay:.33s}
.reveal-stagger > *:nth-child(7){animation-delay:.39s}.reveal-stagger > *:nth-child(8){animation-delay:.45s}
@keyframes staggerRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Price tag pop when currency changes ---- */
.price-tag, .price-value { transition: color .2s ease; }

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .page-hero::before,
  .hero h1, .page-hero h1, .hero .hero-sub, .page-hero .hero-sub,
  .hero .hero-badges, .page-hero .hero-badges, .hero .breadcrumb, .page-hero .breadcrumb,
  .hero-badges .badge, .page-hero .badge,
  .quick-nav a, .quick-nav .qn-more, .qn-badge, .eyebrow::before {
    animation: none !important;
  }
}

/* ============ FOOTER: Our Offices block ============ */
.footer-offices { min-width: 0; }
.office-list { display: flex; flex-direction: column; gap: 14px; }
.office-list li { display: flex; flex-direction: column; gap: 3px; }
.office-list strong {
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.office-list span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.office-list a {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  transition: color .15s ease;
}
.office-list a:hover { color: #fff; text-decoration: underline; }
.office-list .office-emergency { flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; }
.office-list .office-emergency strong { width: 100%; }

/* ============ Contact page: office emergency note ============ */
.office-emergency-note{
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 26px; padding: 14px 20px; background: var(--bg); border-radius: 12px;
  font-size: 13.5px; color: var(--ink);
}
.office-emergency-note svg{ width: 18px; height: 18px; color: var(--orange); flex: none; }
.office-emergency-note a{ color: var(--orange); font-weight: 700; }
.office-emergency-note a:hover{ text-decoration: underline; }
@media (max-width: 700px){
  .office-emergency-note{ flex-direction: column; text-align: center; gap: 6px; }
}

/* ============ FOOTER WHATSAPP TEXT LINK ============ */
.footer-wa-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #25D366;
  font-weight: 700;
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}
.footer-wa-link svg{ width: 17px; height: 17px; flex: none; }
.footer-wa-link:hover{ color: #40e07c; transform: translateX(2px); }

/* ============ Hajj/Umrah: Umrah by Bus note ============ */
.hj-bus-note{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 20px;
  border-radius: 99px;
  background: rgba(232,193,104,.14);
  border: 1px solid rgba(232,193,104,.4);
  color: #fff;
  font-size: 13px;
}
.hj-bus-note svg{ width: 18px; height: 18px; color: var(--gold-light, #e8c766); flex: none; }
.hj-bus-note strong{ color: var(--gold-light, #e8c766); font-weight: 800; }
@media (max-width: 600px){
  .hj-bus-note{ font-size: 12px; padding: 9px 14px; }
}

/* ============ VISA: filter bar ============ */
.visa-filter-bar{
  display: flex; flex-wrap: wrap; gap: 4px;
  background: #fff; border: 1px solid var(--border); border-radius: 99px;
  padding: 6px; margin-bottom: 32px; box-shadow: var(--shadow-sm);
}
.vf-item{
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 99px; flex: 1; min-width: 190px;
  cursor: pointer; transition: background .2s ease;
}
.vf-item:hover{ background: var(--bg); }
.vf-item:not(:last-child){ border-right: 1px solid var(--border); }
.vf-ico{
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.vf-ico svg{ width: 15px; height: 15px; }
.vf-item > div{ flex: 1; min-width: 0; }
.vf-label{ display: block; font-size: 11px; color: var(--ink-faint); }
.vf-item strong{ font-size: 13.5px; color: var(--ink); font-weight: 700; }
.vf-chev{ width: 15px; height: 15px; color: var(--ink-faint); flex: none; }
@media (max-width: 900px){
  .visa-filter-bar{ border-radius: 16px; }
  .vf-item{ border-right: none !important; border-bottom: 1px solid var(--border); min-width: 45%; }
}
@media (max-width: 560px){
  .vf-item{ min-width: 100%; }
}

/* ============ VISA: premium country cards ============ */
.visa-card-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 18px;
}
.visa-card-wrap{ display: flex; flex-direction: column; position: relative; }
.visa-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  transition: transform .4s cubic-bezier(.22,.9,.32,1), box-shadow .4s ease;
}
.visa-card-wrap:hover .visa-card{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.visa-card img, .visa-card video{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.9,.32,1), filter .4s ease;
  background: #0a1a4d;
}
.visa-card-wrap:hover .visa-card img, .visa-card-wrap:hover .visa-card video{ transform: scale(1.1); }
.vc-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,15,35,0) 30%, rgba(7,15,35,.55) 58%, rgba(7,15,35,.94) 100%);
}
.vc-flag{
  position: absolute; left: 50%; top: 60%; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,.35);
  z-index: 2; transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.visa-card-wrap:hover .vc-flag{ transform: translate(-50%, -50%) scale(1.2) rotate(-8deg); }
.vc-country{
  position: absolute; left: 0; right: 0; top: 66%;
  z-index: 2; text-align: center; color: #fff; font-size: 14.5px;
  font-family: var(--font-display); letter-spacing: .02em; padding: 0 10px;
}
.vc-footer{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 12px 12px 14px; gap: 4px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.vc-footer > div{ display: flex; flex-direction: column; gap: 2px; }
.vc-footer > div:last-child{ text-align: right; }
.vc-footer > div:nth-child(2){ text-align: center; }
.vc-label{ font-size: 8.5px; letter-spacing: .06em; color: rgba(255,255,255,.55); text-transform: uppercase; font-weight: 700; }
.vc-val{ font-size: 11.5px; font-weight: 800; color: #fff; }
.vc-footer-docs{ padding-bottom: 8px; }
.vc-docs-note{
  position: absolute; left: 12px; right: 12px; bottom: 46px; z-index: 2;
  display: flex; flex-direction: column; gap: 2px;
}
.vc-docs-note strong{ font-size: 11px; color: #fff; font-weight: 700; }
.vc-emergency{
  position: relative; margin: -44px 12px 0; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 10.5px; font-weight: 700; padding: 8px; border-radius: 8px;
  backdrop-filter: blur(4px); cursor: pointer; transition: background .2s ease;
}
.vc-emergency:hover{ background: rgba(255,255,255,.26); }
.vc-guarantee{
  margin-top: 10px; font-size: 11.5px; color: var(--ink-faint); text-align: left; line-height: 1.5;
}
.vc-guarantee strong{ color: var(--ink); font-weight: 700; }

@media (max-width: 1080px){
  .visa-card-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px){
  .visa-card-grid{ grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .vc-country{ font-size: 12.5px; }
  .vc-val{ font-size: 10px; }
}

/* ============ SHARED: Bank/Partner Offers section ============ */
.offers-section{ padding: 56px 0; background: var(--white); }
.offers-row-head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.offers-row-head h3{ font-size: 20px; color: var(--navy-900); }
.offers-row-head a{
  color: var(--blue-accent); font-weight: 700; font-size: 13.5px;
  display: flex; align-items: center; gap: 6px; transition: gap .2s ease;
}
.offers-row-head a:hover{ gap: 10px; }
.offer-promo-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.offer-promo-card{
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: #fff;
  transition: transform .35s cubic-bezier(.22,.9,.32,1), box-shadow .35s ease, border-color .35s ease;
}
.offer-promo-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.opc-media{
  height: 150px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-start; padding: 14px;
}
.opc-media::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,31,66,.7), rgba(10,31,66,.15));
}
.opc-bank{
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.95); color: var(--navy-900);
  font-size: 11.5px; font-weight: 800; padding: 6px 12px 6px 8px; border-radius: 8px;
}
.opc-bank-ico{ width: 20px; height: 14px; border-radius: 3px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; }
.opc-bank-ico svg{ width: 13px; height: 13px; }
.opc-body{ padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.opc-tag{ font-size: 12px; color: var(--ink-faint); }
.opc-body strong{ font-size: 14.5px; color: var(--ink); line-height: 1.4; font-weight: 700; }
.opc-meta{ display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--danger); font-weight: 600; }
.opc-meta svg{ width: 13px; height: 13px; flex: none; }

@media (max-width: 900px){
  .offer-promo-grid{ grid-template-columns: repeat(2, 1fr); }
  .offer-promo-grid .offer-promo-card:last-child{ display: none; }
}
@media (max-width: 640px){
  .offer-promo-grid{ grid-template-columns: 1fr; overflow-x: auto; display: flex; scrollbar-width: none; gap: 14px; }
  .offer-promo-grid::-webkit-scrollbar{ display: none; }
  .offer-promo-grid .offer-promo-card{ flex: none; width: 82vw; display: block !important; }
  .offers-row-head h3{ font-size: 17px; }
}

/* ============================================================
   ADDITIONAL ANIMATION POLISH
   ============================================================ */

/* ---- Smooth page entrance ---- */
body { animation: pageFadeIn .5s ease both; }
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- WhatsApp banner gentle attention pulse ---- */
.wa-banner a:not(.wa-india-link) {
  animation: waPulse 2.6s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.65); }
}

/* ---- Footer link underline sweep ---- */
.footer-col a, .office-list a {
  position: relative;
}
.footer-col a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--orange);
  transition: width .3s ease;
}
.footer-col a:hover::after { width: 100%; }

/* ---- Offer promo card entrance lift ---- */
.offer-promo-card { transition: transform .35s cubic-bezier(.22,.9,.32,1), box-shadow .35s ease; }

/* ---- Social icon hover bounce (topbar + footer) ---- */
.tb-social, .footer-social a {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .2s ease;
}
.tb-social:hover, .footer-social a:hover { transform: translateY(-3px) scale(1.08); }

/* ---- Nav active underline smooth grow ---- */
.nav-links a.active::after {
  animation: navUnderlineGrow .4s cubic-bezier(.22,.9,.32,1) both;
  transform-origin: left;
}
@keyframes navUnderlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  body, .wa-banner a:not(.wa-india-link), .nav-links a.active::after {
    animation: none !important;
  }
}

/* ============ FLOATING "12+ YEARS" BADGE (fixed, bottom-left, all pages) ============ */
.floating-badge{
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  z-index: 400;
  pointer-events: none;
  filter: drop-shadow(0 10px 22px rgba(10,26,77,.35));
}
.floating-badge img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  animation: floatingBadgeSpin 14s linear infinite;
}
@keyframes floatingBadgeSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}
@media (max-width: 700px){
  .floating-badge{ width: 62px; height: 62px; left: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce){
  .floating-badge img{ animation: none !important; }
}

/* ============ "OUR PARTNERS" — AIRLINE LOGO CARDS ============ */
.airline-card{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 14px 18px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.airline-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.airline-card img{
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter .2s ease;
}
.airline-card:hover img{ filter: grayscale(0%); }
.airline-fallback{
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
  text-align: center;
  letter-spacing: .01em;
}
@media (max-width: 600px){
  .airline-card{ height: 64px; padding: 10px 12px; }
  .airline-card img{ max-height: 32px; }
  .airline-fallback{ font-size: 12.5px; }
}