/* ==========================================================================
   MOSAC TRAVEL — site vitrine
   ========================================================================== */

:root {
  --navy-900: #061530;
  --navy-800: #0b2454;
  --navy-700: #123472;
  --navy-600: #1a3f8a;
  --blue-500: #2560c9;
  --teal-400: #2fb6c4;
  --gold-500: #d4a72c;
  --gold-400: #eac35e;
  --gold-100: #fbf1d8;
  --gray-900: #1c2333;
  --gray-600: #5b6478;
  --gray-400: #94a0b8;
  --gray-100: #eef1f6;
  --gray-50: #f7f8fb;
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(11, 36, 84, 0.07);
  --shadow-md: 0 12px 30px rgba(11, 36, 84, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 36, 84, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --container: 1180px;
  --header-h: 84px;
}

/* ---------- reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
section { position: relative; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 140% at 50% 0%, var(--navy-700) 0%, var(--navy-900) 70%);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; }
.preloader-logo {
  width: 150px;
  margin-bottom: 34px;
  opacity: 0;
  animation: preloaderFadeIn .6s ease forwards .1s;
}
.plane-track {
  position: relative;
  width: min(70vw, 420px);
  height: 40px;
  margin-bottom: 22px;
}
.plane-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,0.32) 0 8px, transparent 8px 18px);
}
.plane-icon {
  position: absolute;
  top: 50%;
  left: -12%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%) rotate(25deg);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  animation: preloaderFly 1.9s cubic-bezier(.5,0,.5,1) infinite;
}
.preloader-text {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  animation: preloaderFadeIn .6s ease forwards .3s;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}
@keyframes preloaderFly {
  0% { left: -12%; transform: translateY(-50%) rotate(25deg); opacity: 0; }
  8% { opacity: 1; }
  50% { transform: translateY(-62%) rotate(25deg); }
  92% { opacity: 1; }
  100% { left: 108%; transform: translateY(-50%) rotate(25deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .plane-icon { animation: none; left: 40%; opacity: 1; }
  .preloader-logo, .preloader-text { animation: none; opacity: 1; }
}

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

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

.section-head {
  max-width: 620px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.25;
}
.section-head p {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.96rem;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(212, 167, 44, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 167, 44, 0.45); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar-links a:hover { color: var(--gold-400); }
.topbar-tag { color: var(--gold-400); font-weight: 500; letter-spacing: .02em; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(11,36,84,0.06);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* ---------- mega menu ---------- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.has-dropdown .chevron { transition: transform .2s ease; }
.has-dropdown:hover .chevron, .has-dropdown.open .chevron { transform: rotate(180deg); }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  min-width: 480px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200;
}
.has-dropdown:hover .mega-menu,
.has-dropdown.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-col { display: flex; flex-direction: column; gap: 4px; }
.mega-col h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 8px;
}
.mega-col a {
  font-size: 0.9rem;
  color: var(--gray-900);
  padding: 6px 0;
  transition: color .2s ease, transform .2s ease;
}
.mega-col a:hover { color: var(--navy-800); transform: translateX(3px); }
.mega-see-all { color: var(--gold-500) !important; font-weight: 600; margin-top: 6px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gray-900);
  transition: background .2s ease, color .2s ease;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--navy-800); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .phone-chip {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.92rem; color: var(--navy-800);
}
.header-cta .phone-chip .ico { color: var(--gold-500); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 85% 0%, #163a7c 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 150px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,182,196,0.25), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy .eyebrow { color: var(--gold-400); }
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
}
.hero-copy h1 span { color: var(--gold-400); }
.hero-copy .lead {
  margin-top: 18px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.hero-actions { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
}
.hero-badges .badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.08);
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-visual .float-card {
  position: absolute;
  background: var(--white);
  color: var(--navy-800);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-visual .float-card.card-1 { top: 10%; left: -8%; }
.hero-visual .float-card.card-2 { bottom: 8%; right: -10%; animation-delay: 1.2s; }
.float-card .ico-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: var(--gold-100);
}
.float-card strong { display: block; font-size: 0.92rem; }
.float-card span { font-size: 0.78rem; color: var(--gray-600); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- icons ---------- */
.ico-badge svg { width: 22px; height: 22px; }
.service-card .ico-badge svg { width: 26px; height: 26px; }
.trust-item .ico-badge svg { width: 22px; height: 22px; }
.float-card .ico-badge svg { width: 20px; height: 20px; }
.contact-list .ico-badge svg { width: 18px; height: 18px; }

/* ---------- search widget ---------- */
.search-widget {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: -96px auto 0;
  padding: 0 24px;
}
.search-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 5px;
  width: fit-content;
  margin: 0 auto 14px;
}
.search-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.search-tab svg { width: 17px; height: 17px; }
.search-tab.active { background: var(--white); color: var(--navy-800); }
.search-tab:not(.active):hover { background: rgba(255,255,255,0.14); }

.search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr auto;
  gap: 16px;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.field .control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gray-100);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s ease;
}
.field .control:focus-within { border-color: var(--gold-500); }
.field .control .ico { color: var(--navy-700); flex-shrink: 0; }
.field select, .field input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  color: var(--navy-900);
  font-weight: 500;
  font-size: 0.94rem;
}
.search-card .btn { height: 50px; padding-left: 26px; padding-right: 26px; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--gray-50); padding: 26px 0 46px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.trust-item .ico-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-100); font-size: 1.25rem; flex-shrink: 0;
}
.trust-item strong { font-size: 0.9rem; color: var(--navy-800); display: block; }

/* ---------- services ---------- */
.services { padding: 90px 0 70px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .ico-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.08rem; color: var(--navy-800); font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.92rem; }

/* ---------- destinations ---------- */
.destinations { padding: 70px 0; background: var(--gray-50); }
.dest-tabs { display: flex; gap: 10px; margin-bottom: 30px; }
.dest-tab {
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: all .2s ease;
}
.dest-tab.active, .dest-tab:hover { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad, linear-gradient(160deg, var(--navy-700), var(--navy-900)));
  z-index: -2;
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,21,48,0) 30%, rgba(6,21,48,0.75) 100%);
  z-index: -1;
}
.dest-card .pin-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.dest-card .pin-row svg { width: 13px; height: 13px; color: var(--gold-400); flex-shrink: 0; }
.dest-card .tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.dest-card h3 { color: var(--white); font-size: 1.15rem; font-weight: 600; }
.dest-card p { color: rgba(255,255,255,0.75); font-size: 0.82rem; margin-top: 4px; }

.dest-card.photo { background-size: cover; background-position: center; }
.dest-card.photo::before { background: none; }

/* region gradient variants */
.g-westafrica { --grad: linear-gradient(160deg, #b9701f, #7a3a12); }
.g-northafrica { --grad: linear-gradient(160deg, #c98a2e, #7d4a10); }
.g-gulf { --grad: linear-gradient(160deg, #0d5c63, #06222b); }
.g-pilgrim { --grad: linear-gradient(160deg, #2c6e49, #123420); }
.g-europe { --grad: linear-gradient(160deg, #2c4d8a, #101f42); }

/* ---------- live flight tracker ---------- */
.live-flight { padding: 80px 0; background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }
.live-flight::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,182,196,0.18), transparent 70%);
}
.live-flight .section-head h2 { color: var(--white); }
.live-flight .section-head p { color: rgba(255,255,255,0.7); }
.live-flight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.flight-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.flight-embed-wrap { position: relative; }
.flight-embed-wrap iframe { width: 100%; height: 420px; border: 0; display: block; background: #0d2b52; }
.flight-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  background: rgba(6,21,48,0.9);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.flight-fallback:hover { color: var(--gold-400); }
.flight-copy .live-dot {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.flight-copy .live-dot .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d17a;
  box-shadow: 0 0 0 0 rgba(52,209,122,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,209,122,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,209,122,0); }
}
.flight-routes { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.flight-routes .route-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
}
.flight-routes .route-chip svg { width: 14px; height: 14px; color: var(--gold-400); flex-shrink: 0; }
.flight-attrib { font-size: 0.76rem; color: rgba(255,255,255,0.5); }
.flight-attrib a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ---------- pricing ---------- */
.pricing { padding: 90px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--gold-500); box-shadow: 0 14px 34px rgba(212,167,44,0.18); }
.price-card .badge-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-500); color: var(--navy-900);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 5px 14px; border-radius: var(--radius-full); white-space: nowrap;
}
.price-card .ico-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.price-card .ico-badge svg { width: 24px; height: 24px; }
.price-card h3 { color: var(--navy-800); font-size: 1.05rem; margin-bottom: 6px; }
.price-card .price-tag { font-size: 0.86rem; color: var(--gold-500); font-weight: 700; margin-bottom: 16px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-card li { font-size: 0.85rem; color: var(--gray-600); display: flex; gap: 8px; align-items: flex-start; }
.price-card li svg { width: 15px; height: 15px; color: #2f9e57; flex-shrink: 0; margin-top: 2px; }
.price-note {
  margin-top: 36px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--gray-600);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

/* ---------- hotels ---------- */
.hotels { padding: 70px 0; }
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hotel-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hotel-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,21,48,0) 25%, rgba(6,21,48,0.82) 100%);
  z-index: -1;
}
.hotel-card .partner-chip {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--navy-800);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-full);
}
.hotel-card h3 { color: var(--white); font-size: 1.05rem; font-weight: 600; }
.hotel-card .pin-row { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.hotel-card .pin-row svg { width: 13px; height: 13px; color: var(--gold-400); flex-shrink: 0; }
.hotel-card .pin-row span { color: rgba(255,255,255,0.78); font-size: 0.8rem; }

/* ---------- about ---------- */
.about { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual .stack {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual .stack img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-visual .stat-card {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.about-visual .stat-card strong { display: block; font-size: 1.6rem; color: var(--gold-400); }
.about-visual .stat-card span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

.about-body p.lead-text { color: var(--gray-600); font-size: 1.02rem; margin-bottom: 26px; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.vm-card {
  background: var(--gray-50);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.vm-card h4 { color: var(--navy-800); font-size: 0.96rem; margin-bottom: 8px; }
.vm-card p { font-size: 0.88rem; color: var(--gray-600); }

.values-list { display: flex; flex-wrap: wrap; gap: 10px; }
.values-list li {
  background: var(--gold-100);
  color: #7a5b0c;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

/* ---------- why us ---------- */
.why { padding: 70px 0; background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: "";
  position: absolute; left: -140px; bottom: -140px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,44,0.15), transparent 70%);
}
.why .section-head h2 { color: var(--white); }
.why .section-head p { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.why-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-400);
  flex-shrink: 0;
  font-family: Georgia, serif;
}
.why-item h4 { font-size: 0.98rem; margin-bottom: 6px; }
.why-item p { font-size: 0.84rem; color: rgba(255,255,255,0.68); }

/* ---------- pledge banner ---------- */
.pledge { padding: 60px 0; }
.pledge-card {
  background: linear-gradient(120deg, var(--gold-100), #fff);
  border: 1px solid var(--gold-100);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.pledge-card .quote-mark { font-size: 3rem; color: var(--gold-500); font-family: Georgia, serif; line-height: 1; }
.pledge-card p { font-size: 1.1rem; color: var(--navy-800); font-weight: 500; }
.pledge-card strong { display: block; margin-top: 10px; color: var(--gold-500); font-size: 0.85rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- gallery ---------- */
.gallery { padding: 30px 0 90px; }
.gallery-strip { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 8px; }
.gallery-strip .g-item {
  flex: 0 0 auto;
  width: 190px; height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
}
.gallery-strip .g-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-strip .g-item span {
  position: absolute; inset: auto 0 0 0;
  background: rgba(6,21,48,0.65);
  color: #fff; text-align: center;
  font-size: 0.78rem; font-weight: 600;
  padding: 10px 6px 34px;
}

/* ---------- testimonials ---------- */
.testimonials { padding: 80px 0; background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testi-card .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--gray-600); font-size: 0.94rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-400));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy-800); }
.testi-author span { font-size: 0.78rem; color: var(--gray-400); }

/* ---------- CTA band ---------- */
.cta-band {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 24px;
}
.cta-band-inner {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 46px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band-inner::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,167,44,0.25), transparent 70%);
}
.cta-band-inner h3 { font-size: 1.5rem; font-weight: 700; position: relative; z-index: 1; }
.cta-band-inner p { color: rgba(255,255,255,0.75); margin-top: 8px; position: relative; z-index: 1; }
.cta-band-inner .actions { display: flex; gap: 14px; position: relative; z-index: 1; }

/* ---------- contact ---------- */
.contact { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-list a, .contact-list .row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: background .2s ease;
}
.contact-list a:hover { background: rgba(255,255,255,0.12); }
.contact-list .ico-badge {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(212,167,44,0.16); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 0.9rem; }
.contact-list span { font-size: 0.78rem; color: rgba(255,255,255,0.62); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { color: var(--navy-800); font-size: 1.2rem; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy-800); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--gray-100);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold-500); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 14px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #eafaf0;
  color: #1f7a45;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.86rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ---------- map ---------- */
.map-block { padding: 0 0 90px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(15%); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-col h4 { color: #fff; font-size: 0.94rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col .contact-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}

/* ---------- quote modal ---------- */
.quote-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 48, 0.6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.quote-overlay.show { opacity: 1; pointer-events: auto; }
.quote-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 680px;
  padding: 40px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform .25s ease;
}
.quote-overlay.show .quote-modal { transform: translateY(0) scale(1); }
.quote-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-50);
  color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.quote-close:hover { background: var(--gray-100); }
.quote-modal-head { margin-bottom: 26px; padding-right: 30px; }
.quote-modal-head h3 { font-size: 1.35rem; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.quote-modal-head p { font-size: 0.9rem; color: var(--gray-600); }

/* ---------- floating buttons ---------- */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
  font-size: 1.4rem;
}
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab-whatsapp { background: #25d366; color: #fff; }
.fab-top {
  background: var(--white);
  color: var(--navy-800);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .25s ease;
}
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .live-flight-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .phone-chip span { display: none; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { margin-top: 30px; order: -1; }
  .hero-visual .float-card { display: none; }

  .search-card { grid-template-columns: 1fr 1fr; }
  .search-card .btn { grid-column: 1 / -1; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .search-tabs { flex-wrap: wrap; width: auto; justify-content: center; }

  .mega-menu, .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    min-width: 0;
    gap: 18px;
    padding: 16px;
    margin: 6px 0 6px 12px;
    display: none;
  }
  .mega-menu { grid-template-columns: 1fr; }
  .has-dropdown.open .mega-menu { display: grid; }
  .has-dropdown.open .dropdown-menu { display: flex; }
  .has-dropdown .chevron { margin-left: auto; }
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .topbar .topbar-links a span.full { display: none; }
  .search-card { grid-template-columns: 1fr; padding: 20px; }
  .search-widget { margin-top: -60px; }
  .search-tab span { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-modal { padding: 28px 20px; }
  .quote-overlay { padding: 0; align-items: stretch; }
  .quote-modal { border-radius: 0; max-width: none; min-height: 100%; }
  .pledge-card { flex-direction: column; text-align: center; padding: 32px 26px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .about-visual .stat-card { position: static; margin-top: 16px; display: inline-block; }
}
