/* ═══════════════════════════════════════════════
   ROXY TRAVELS — main.css
   Luxury travel agency · Dark navy + gold palette
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ═══════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────── */
:root {
  /* Brand colours */
  --navy:        #0c1f35;
  --navy-deep:   #081527;
  --navy-soft:   #173a60;
  --navy-light:  #214b74;
  --navy-mid:    #1a3a5c;
  --teal:        #0f766e;
  --teal-deep:   #0b5a54;
  --amber:       #cc8b2b;
  --amber-soft:  #f0b960;
  --gold:        #cc8b2b;
  --gold-light:  #f0b960;

  /* Neutrals */
  --bg:          #f4f7fb;
  --off-white:   #f4f7fb;
  --surface:     #ffffff;
  --surface-soft:#edf3f9;
  --surface-soft-2:#e5edf6;
  --border:      #d8e3ef;
  --text:        #10263f;
  --text-soft:   #607287;
  --heading:     #0c1f35;
  --white:       #fff;
  --gray:        #667b92;
  --gray-light:  #e6edf6;

  /* Shadows */
  --shadow-sm: 0 8px 22px rgba(12,31,53,.06);
  --shadow-md: 0 18px 45px rgba(12,31,53,.10);
  --shadow-lg: 0 28px 70px rgba(12,31,53,.16);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  /* Layout */
  --container:  1200px;
  --header-h:   84px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', Arial, sans-serif;

  /* Motion */
  --transition: all .28s ease;
}

/* ── 2. RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
html, body {
  margin: 0; padding: 0; overflow-x: hidden;
  background: var(--bg); color: var(--text);
  font-family: var(--font-body);
}
body { line-height: 1.7 }
img  { max-width: 100%; display: block }
svg  { display: block }
a    { text-decoration: none; color: inherit }
button, input, select, textarea { font: inherit }
button { cursor: pointer }
ul, ol { padding: 0; margin: 0; list-style: none }
main { display: block }

/* ── 3. TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4, h5 { margin: 0 0 12px; line-height: 1.08; color: var(--heading) }
h1, h2, h3, .logo-name, .nav-logo-text, .hero-headline { font-family: var(--font-display) }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem) }
h2 { font-size: clamp(2rem, 4vw, 3.1rem) }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem) }
h4 { font-size: 1.08rem }
p  { margin: 0 0 1rem; color: var(--text-soft) }
strong { color: var(--heading) }

/* ── 4. UTILITIES ─────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.section    { padding: 88px 0; position: relative }
.section-sm { padding: 52px 0; position: relative }

.text-center   { text-align: center }
.mb-40  { margin-bottom: 40px }
.mt-40  { margin-top: 40px }
.mt-8   { margin-top: 8px }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.section-title { margin-bottom: 12px }
.section-sub   { max-width: 560px; margin-inline: auto; color: var(--text-soft) }
.section-header { margin-bottom: 44px }
.section-header.center { text-align: center }
.section-header.center .section-sub { margin-inline: auto }

.grid-2 { display: grid; gap: 28px; grid-template-columns: repeat(2, minmax(0,1fr)) }
.grid-3 { display: grid; gap: 28px; grid-template-columns: repeat(3, minmax(0,1fr)) }
.grid-4 { display: grid; gap: 28px; grid-template-columns: repeat(4, minmax(0,1fr)) }

.fade-in-up  { opacity: 1 !important; transform: none !important }
.animate-on-scroll { opacity: 1 !important; transform: none !important }

/* ── 5. MOBILE OVERLAY ────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(8,20,35,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: stretch;
  padding: calc(var(--header-h) + 24px) 24px 40px;
  gap: 6px; overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-overlay.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-nav-link {
  display: flex; align-items: center;
  padding: 14px 18px; border-radius: 16px;
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: var(--transition); text-decoration: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(255,255,255,.1); color: #fff;
}
.mobile-divider {
  height: 1px; background: rgba(255,255,255,.1); margin: 10px 0;
}
.mobile-book {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 24px; border-radius: 999px;
  font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; text-decoration: none;
  box-shadow: 0 14px 30px rgba(204,139,43,.28);
  transition: var(--transition); margin-top: 8px;
}
.mobile-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(204,139,43,.36);
  color: #fff;
}

/* ── 6. HEADER ────────────────────────────────── */
#header, #navbar, .navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  /* Solid base — no backdrop-filter to avoid scroll overlay artifact */
  background: rgba(8,20,35,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease;
}
/* Homepage hero state: start more transparent */
#header.transparent {
  background: rgba(8,20,35,.32);
  box-shadow: none;
}
/* Scrolled / solid state for all pages */
#header.solid, #navbar.scrolled, .navbar.scrolled {
  background: rgba(8,20,35,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.32);
}

.header-bar, .nav-inner, .navbar-inner {
  min-height: var(--header-h);
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Logo */
.logo, .nav-logo {
  display: flex; align-items: center; gap: 12px; min-width: 0;
  text-decoration: none;
}
.logo-mark, .nav-logo-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex: 0 0 46px;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 12px 24px rgba(204,139,43,.22);
}
.logo-mark svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5 }
.logo-text, .nav-logo-text {
  display: flex; flex-direction: column; gap: 2px;
  color: #fff; white-space: nowrap;
}
.logo-name {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-size: 1.55rem; line-height: 1;
}
.logo-name span, .logo-text > span > span, .nav-logo-text span { color: var(--amber-soft) }
.logo-sub {
  font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
}

/* Desktop nav */
nav { display: flex; align-items: center }
.nav-list, .nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-list li, .nav-links li { list-style: none }
.nav-list a, .nav-links a {
  position: relative; overflow: hidden;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 42px; padding: 10px 14px; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.9); transition: var(--transition);
}
/* t-base / t-fill stacked label animation */
.nav-list a .t-base, .nav-links a .t-base {
  display: block; transition: opacity .24s, transform .24s;
}
.nav-list a .t-fill, .nav-links a .t-fill {
  display: block; position: absolute;
  opacity: 0; transform: translateY(60%);
  font-weight: 700; color: #fff;
  transition: opacity .24s, transform .24s;
}
.nav-list a:hover, .nav-links a:hover,
.nav-list a.active, .nav-links a.active {
  background: rgba(255,255,255,.1); color: #fff;
}
.nav-list a:hover .t-base, .nav-links a:hover .t-base,
.nav-list a.active .t-base, .nav-links a.active .t-base {
  opacity: 0; transform: translateY(-60%);
}
.nav-list a:hover .t-fill, .nav-links a:hover .t-fill,
.nav-list a.active .t-fill, .nav-links a.active .t-fill {
  opacity: 1; transform: translateY(0);
}

/* CTA button — used directly as <a class="nav-cta"> */
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: .88rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; box-shadow: 0 14px 30px rgba(204,139,43,.24);
  transition: var(--transition); border: none; cursor: pointer;
  white-space: nowrap;
}
.nav-cta svg {
  width: 16px; height: 16px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(204,139,43,.34); color: #fff }
/* Also support wrapper pattern: .nav-cta > a */
.nav-cta a {
  display: inherit; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: .88rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; transition: var(--transition);
}
.nav-cta a:hover { color: #fff }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px 4px; background: transparent; border: none;
  position: relative; z-index: 1200;
}
.hamburger span {
  width: 24px; height: 2px; border-radius: 2px; background: #fff;
  transition: var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* Inner-page nav: .nav-cta as <li> wrapping <a.btn> */
li.nav-cta { list-style: none }
li.nav-cta a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: .88rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; box-shadow: 0 10px 24px rgba(204,139,43,.24);
  transition: var(--transition); border: none; white-space: nowrap;
}
li.nav-cta a:hover { transform: translateY(-2px); color: #fff }

/* ── Currency & Language Switcher (injected by i18n.js) ── */
.nav-switchers {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.switcher-wrap {
  position: relative;
}
.switcher-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.switcher-btn:hover {
  background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28);
}
.switcher-caret {
  font-size: .65rem; opacity: .7; transition: transform .2s;
}
.switcher-dropdown.open ~ .switcher-btn .switcher-caret,
.switcher-wrap:has(.switcher-dropdown.open) .switcher-caret {
  transform: rotate(180deg);
}
.switcher-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 200px; background: #0d1f35;
  border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1100; overflow: hidden;
}
.switcher-dropdown.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.switcher-title {
  padding: 12px 14px 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.switcher-dropdown ul {
  list-style: none; padding: 6px; margin: 0;
  max-height: 240px; overflow-y: auto;
}
.switcher-dropdown ul::-webkit-scrollbar { width: 4px }
.switcher-dropdown ul::-webkit-scrollbar-track { background: transparent }
.switcher-dropdown ul::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px }
.switcher-dropdown li {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px; border-radius: 10px; cursor: pointer;
  font-size: .84rem; color: rgba(255,255,255,.82);
  transition: background .15s;
}
.switcher-dropdown li:hover { background: rgba(255,255,255,.08); color: #fff }
.switcher-dropdown li.active { background: rgba(240,185,96,.15); color: var(--amber-soft) }
.switcher-dropdown li span:last-child { margin-left: auto }

/* ── 7. HERO ──────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg, .hero-bg-photo, .hero-bg-gradient,
.hero-diagonal, .hero-grid, .hero-glow, .hero-particles { position: absolute }
.hero-bg, .hero-bg-photo, .hero-bg-gradient,
.hero-diagonal, .hero-grid, .hero-glow, .hero-particles { inset: 0 }

.hero-bg-photo {
  background:
    linear-gradient(rgba(8,20,35,.28), rgba(8,20,35,.42)),
    url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1800&q=80') center / cover no-repeat;
  transform-origin: center;
}
.hero-bg-gradient {
  background:
    radial-gradient(circle at 15% 20%, rgba(240,185,96,.14), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(15,118,110,.18), transparent 24%),
    linear-gradient(140deg, rgba(8,20,35,.95), rgba(8,20,35,.62) 48%, rgba(17,48,74,.82));
}
.hero-diagonal {
  clip-path: polygon(0 72%, 100% 58%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.05));
}
.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .18;
}
.hero-glow {
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,185,96,.09), transparent 68%);
  pointer-events: none; transform: translate(-50%, -50%); transition: none;
}
.hero-particles { overflow: hidden }

/* Particle dots (JS spawns them) */
.particle {
  position: absolute; border-radius: 50%;
  background: var(--amber-soft); opacity: 0;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(1) }
  15%  { opacity: .55 }
  85%  { opacity: .3 }
  100% { opacity: 0; transform: translateY(-180px) scale(.4) }
}

.hero-content {
  position: relative; z-index: 2;
  width: min(var(--container), calc(100% - 32px)); margin: auto;
  padding: calc(var(--header-h) + 42px) 0 132px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 46px; align-items: center;
}
.hero-copy { max-width: 640px }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px }
.eyebrow-dash { width: 54px; height: 2px; background: linear-gradient(90deg, var(--amber-soft), transparent) }
.eyebrow-text {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #ffe4b6;
}
.hero-headline {
  font-size: clamp(3.2rem, 7vw, 5.9rem); line-height: .95;
  color: #fff; margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--amber-soft) }
.hero-headline .large-word { display: block }

.hero-divider { display: flex; align-items: center; gap: 10px; margin-bottom: 22px }
.hero-divider-line { width: 120px; height: 1px; background: rgba(255,255,255,.25) }
.hero-divider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber-soft); box-shadow: 0 0 0 8px rgba(240,185,96,.12);
}
.hero-subtitle {
  max-width: 560px; font-size: 1.08rem;
  color: rgba(255,255,255,.84); margin-bottom: 26px;
}
.hero-subtitle strong { color: #fff }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px }

.hero-stats {
  display: flex; flex-wrap: wrap; align-items: stretch; gap: 18px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.stat { min-width: 120px }
.stat-val { color: #fff; font-size: clamp(1.9rem, 3vw, 2.35rem); line-height: 1 }
.stat-val em { font-style: normal; color: var(--amber-soft) }
.stat-label { margin-top: 7px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.76) }
.stat-pipe { width: 1px; min-height: 44px; background: rgba(255,255,255,.14) }

/* Hero visual / card stack */
.hero-visual { position: relative }
.card-stack { position: relative; max-width: 500px; margin-left: auto; padding: 28px 18px 60px }

.dest-card {
  position: relative; min-height: 560px; border-radius: 34px; overflow: hidden;
  background: linear-gradient(180deg, #162739, #0a1220);
  border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg);
}
.dest-card-img, .dest-card-gradient { position: absolute; inset: 0 }
.dest-card-img {
  background:
    linear-gradient(rgba(8,20,35,.08), rgba(8,20,35,.28)),
    url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?auto=format&fit=crop&w=1000&q=80') center / cover no-repeat;
}
.dest-card-gradient { background: linear-gradient(180deg, rgba(8,14,22,.08) 0%, rgba(8,14,22,.25) 35%, rgba(8,14,22,.92) 100%) }
.dest-card-top, .dest-card-info { position: absolute; left: 26px; right: 26px; z-index: 2 }
.dest-card-top { top: 24px }
.dest-card-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(8,20,35,.66); color: #fff; border: 1px solid rgba(255,255,255,.14);
  font-size: .76rem; font-weight: 700;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-soft) }
.dest-card-info { bottom: 24px }
.dest-card-region { color: #ffe2b0; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase }
.dest-card-name {
  font-family: var(--font-display); color: #fff;
  font-size: 2.85rem; line-height: .96; margin: 10px 0 16px;
}
.dest-card-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px }
.dest-card-detail { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: .92rem }
.dest-card-detail svg { width: 16px; height: 16px; fill: var(--amber-soft) }
.dest-price { color: #fff; font-size: 1.5rem; line-height: 1; text-align: right }
.dest-price small { display: block; margin-top: 4px; font-size: .76rem; color: rgba(255,255,255,.68) }

.stat-pill, .mini-card {
  position: absolute;
  background: rgba(255,255,255,.98); color: var(--heading);
  border: 1px solid rgba(16,37,62,.08); box-shadow: var(--shadow-md);
}
.stat-pill { top: 0; left: 0; padding: 18px 20px; border-radius: 24px; max-width: 180px }
.pill-number { font-size: 2.1rem; line-height: 1; font-family: var(--font-display); color: var(--heading) }
.pill-text { margin-top: 8px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft) }

.mini-card { right: 0; bottom: 0; width: 190px; padding: 14px; border-radius: 22px }
.mini-card-img {
  width: 100%; aspect-ratio: 16/10; border-radius: 16px; margin-bottom: 12px;
  background:
    linear-gradient(rgba(8,20,35,.08), rgba(8,20,35,.18)),
    url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=500&q=80') center / cover no-repeat;
}
.mini-card-label { color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase }
.mini-card-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--heading); line-height: 1.05 }

.hero-scroll {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.78);
}
.scroll-line { width: 56px; height: 1px; background: rgba(255,255,255,.28) }
.scroll-text { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase }

/* ── 8. BUTTONS ───────────────────────────────── */
.btn, .cta-primary, .cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 24px; border: none;
  border-radius: 999px; font-weight: 700; cursor: pointer;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary, .btn-gold, .cta-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; box-shadow: 0 14px 30px rgba(204,139,43,.24);
}
.btn-navy {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
}
.btn-outline, .cta-secondary {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.btn-sm  { padding: 10px 16px; font-size: .9rem }
.btn-lg  { padding: 16px 30px }
.btn-pay { width: 100%; justify-content: center }

.btn:hover, .cta-primary:hover, .cta-secondary:hover { transform: translateY(-2px) }
.btn-primary:hover, .btn-gold:hover { box-shadow: 0 18px 36px rgba(204,139,43,.34) }

.cta-primary svg, .cta-secondary svg, .btn svg {
  width: 18px; height: 18px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cta-secondary svg { fill: rgba(255,255,255,.7) }

/* ── 9. BOOKING BAR ───────────────────────────── */
.booking-shell { position: relative; z-index: 5; margin-top: -42px; margin-bottom: 10px }
.booking-bar {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(16,37,62,.08);
  border-radius: 28px; padding: 24px; box-shadow: var(--shadow-lg);
}
.booking-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px }
.booking-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  background: var(--surface-soft); color: var(--heading);
  border: none; font-weight: 600; font-size: .9rem; transition: var(--transition);
}
.booking-tab.active, .booking-tab:hover {
  background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff;
}
.booking-form-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px; align-items: end;
}

/* ── 10. FORMS ────────────────────────────────── */
.form-field, .form-group { display: flex; flex-direction: column; gap: 8px }
.form-field label, .form-group label { font-size: .82rem; font-weight: 700; color: var(--heading) }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px }
.form-grid .full { grid-column: 1 / -1 }
.form-submit { margin-top: 8px }
.form-row { display: flex; gap: 14px; align-items: flex-end }
.form-message {
  margin-top: 14px; padding: 12px 14px; border-radius: 14px;
  font-size: .92rem; display: none;
}
.form-message.success { display: block; background: #e9f7f0; color: #0b6d46 }
.form-message.error   { display: block; background: #fdeceb; color: #a23c30 }

input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px;
  border: 1px solid var(--border); background: #fff;
  color: var(--heading); outline: none; transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(15,118,110,.55);
  box-shadow: 0 0 0 4px rgba(15,118,110,.08);
}
textarea { min-height: 140px; resize: vertical }

/* ── 11. CARDS ────────────────────────────────── */
.card, .service-card, .contact-info-card, .visa-card,
.pkg-card, .hotel-card, .flight-card, .policy-content,
.flight-search-box, .hotel-search-bar, .form-section, .modal, .fmodal, .vmodal, .pkg-modal {
  background: var(--surface);
  border: 1px solid rgba(16,37,62,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.card-body  { padding: 24px }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 0 24px 24px;
}
.card-label {
  margin-bottom: 10px; font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
}
.card-title { margin-bottom: 8px }
.price-tag { font-size: 1.6rem; font-family: var(--font-display); font-weight: 700; color: var(--heading) }

/* ── 12. SERVICES GRID ────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px;
}
.services-grid > * {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 28px; background: var(--surface);
  border: 1px solid rgba(16,37,62,.08); border-radius: 28px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); text-decoration: none; color: var(--text);
}
.services-grid > *:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg) }
.services-grid h4 { color: var(--heading) }

.feature-icon {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; font-size: 1.4rem; flex-shrink: 0;
}

/* ── 13. STATS BAR ────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 52px 0;
}
.stat-item { text-align: center; color: #fff }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; color: var(--amber-soft);
}
.stat-item .stat-label { color: rgba(255,255,255,.78); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase }

/* ── 14. PACKAGE CARDS ────────────────────────── */
.pkg-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0 }
.pkg-img-wrap img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .4s ease }
.pkg-img-wrap:hover img { transform: scale(1.04) }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; font-size: .74rem; font-weight: 700;
  box-shadow: 0 6px 14px rgba(204,139,43,.28);
}
.pkg-duration { font-size: .88rem; color: var(--text-soft) }

/* Package page grid */
.pkg-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px }
.pkg-img  { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0 }
.pkg-badge-wrap { position: relative }
.pkg-body { padding: 20px }
.pkg-cat  { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px }
.pkg-title { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: 6px }
.pkg-dest  { font-size: .85rem; color: var(--text-soft) }
.pkg-dur   { font-size: .85rem; color: var(--text-soft) }
.pkg-desc  { font-size: .9rem; color: var(--text-soft); margin: 8px 0 }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; border-top: 1px solid var(--border) }
.pkg-price  { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--heading) }
.pkg-search { margin-bottom: 28px }

/* Package modal */
.pkg-modal, .pm-body { padding: 0 }
.pm-img   { width: 100%; max-height: 260px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0 }
.pm-body  { padding: 28px }
.pm-title { font-size: 1.6rem; color: var(--heading); margin-bottom: 8px }
.pm-dest  { color: var(--text-soft); font-size: .9rem; margin-bottom: 6px }
.pm-dur   { color: var(--text-soft); font-size: .9rem; margin-bottom: 12px }
.pm-desc  { color: var(--text-soft); font-size: .95rem; margin-bottom: 16px }
.pm-price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px }
.pm-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--heading) }
.pm-close { position: absolute; top: 16px; right: 16px }

/* ── 15. NEWSLETTER ───────────────────────────── */
.newsletter-box {
  display: block !important; visibility: visible !important; opacity: 1 !important;
  padding: 44px; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(240,185,96,.18), transparent 28%),
    linear-gradient(135deg, #fff, #f6faf9 50%, #eef6f3 100%);
  border: 1px solid rgba(16,37,62,.08); box-shadow: var(--shadow-md);
}
.newsletter-form {
  display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 14px; align-items: center;
}
.newsletter-form input { background: #fff }

/* ── 16. PAGE HEADER (inner pages) ───────────── */
.page-header {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 54px) 0 78px;
  background:
    radial-gradient(circle at top right, rgba(240,185,96,.14), transparent 22%),
    linear-gradient(135deg, rgba(8,20,35,.98), rgba(18,52,80,.92));
  color: #fff;
}
.page-header::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--bg));
}
.page-header-content { position: relative; z-index: 1; max-width: 720px }
.page-header h1 { color: #fff }
.page-header p  { color: rgba(255,255,255,.82) }

/* ── 17. CONTACT ──────────────────────────────── */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px }
.contact-info-card, .form-section { padding: 28px }
.contact-icon {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; font-size: 1.4rem; margin-bottom: 14px;
}

/* ── 18. ABOUT ────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden }
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover }
.about-img-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--amber); color: #fff;
  padding: 10px 16px; border-radius: 14px; font-weight: 700; font-size: .9rem;
}
.label { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal) }
.num   { font-family: var(--font-display); font-size: 2.6rem; color: var(--heading); line-height: 1 }
.social-link-row {
  display: flex !important; align-items: center; gap: .75rem;
  padding: .9rem 1rem !important; background: var(--off-white) !important;
  border-radius: 16px !important; font-size: .9rem !important;
  font-weight: 600; color: var(--navy) !important; transition: var(--transition);
}
.social-link-row:hover { background: var(--navy) !important; color: #fff !important }

/* ── 19. FLIGHTS ──────────────────────────────── */
.flight-search-box { padding: 28px }
.search-grid  { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; align-items: end }
.search-row   { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap }
.search-tabs  { display: flex; gap: 8px; margin-bottom: 18px }
.stab {
  padding: 10px 18px; border-radius: 999px; border: none; background: var(--surface-soft);
  font-weight: 600; font-size: .9rem; color: var(--heading); transition: var(--transition);
}
.stab.active, .stab:hover { background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff }

.flight-results { margin-top: 28px }
.results-info   { font-size: .88rem; color: var(--text-soft); margin-bottom: 16px }
.no-results     { text-align: center; padding: 48px; color: var(--text-soft) }

.flight-card { padding: 20px; transition: var(--transition) }
.flight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) }
.airline-name { font-weight: 700; font-size: .88rem; color: var(--heading) }
.flight-time  { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--heading); line-height: 1 }
.flight-city  { font-size: .78rem; color: var(--text-soft) }
.flight-code  { font-size: .74rem; color: var(--text-soft) }
.flight-line  { display: flex; align-items: center; gap: 8px; flex: 1 }
.flight-arrow { color: var(--teal); font-size: 1rem }
.flight-stops { font-size: .78rem; color: var(--text-soft); text-align: center }
.flight-class { font-size: .78rem; color: var(--text-soft) }
.duration     { font-size: .82rem; color: var(--text-soft) }

.flight-pricing, .fl-sum, .fl-sum-grid { display: flex; align-items: center; gap: 12px }
.fl-sum-grid { display: grid; gap: 8px }
.flight-base-price { font-size: .82rem; color: var(--text-soft); text-decoration: line-through }
.flight-our-price  { font-family: var(--font-display); font-size: 1.4rem; color: var(--heading) }
.flight-markup     { font-size: .76rem; color: var(--teal) }
.gold-price { color: var(--amber); font-weight: 700 }

.filter-btn {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); font-size: .84rem; font-weight: 600;
  color: var(--heading); transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal) }

/* Flight booking modal */
.fmodal { position: relative; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto }
.fmodal-hd { padding: 24px 24px 0; display: flex; align-items: center; justify-content: space-between }
.fmodal-bd { padding: 20px 24px 28px }
.fmodal-close { background: none; border: none; font-size: 1.4rem; color: var(--text-soft); cursor: pointer }

/* Booking summary */
.pb     { padding: 16px; background: var(--surface-soft); border-radius: var(--radius-sm) }
.pb-row { display: flex; justify-content: space-between; font-size: .9rem }
.price-breakdown { background: var(--surface-soft); border-radius: var(--radius-sm); padding: 16px; margin-top: 12px }
.price-from  { font-size: .8rem; color: var(--text-soft) }
.price-label { font-size: .9rem; color: var(--text-soft) }
.price-val   { font-weight: 700; color: var(--heading) }
.price-highlight { color: var(--amber); font-weight: 700; font-size: 1.1rem }

.a-tag { font-size: .74rem; color: var(--teal); cursor: pointer }
.city  { font-weight: 600; color: var(--heading) }
.code  { font-size: .75rem; color: var(--text-soft) }
.meta  { font-size: .8rem; color: var(--text-soft) }

/* ── 20. HOTELS ───────────────────────────────── */
.hotel-search-bar { padding: 24px; margin-bottom: 24px }
.hotel-grid  { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px }
.hotel-card  { overflow: hidden; transition: var(--transition) }
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg) }
.hotel-img-wrap, .hotel-img-ph { width: 100%; aspect-ratio: 16/10; overflow: hidden }
.hotel-img   { width: 100%; height: 100%; object-fit: cover; transition: transform .4s }
.hotel-card:hover .hotel-img { transform: scale(1.05) }
.hotel-body  { padding: 18px }
.hotel-cat-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; background: var(--surface-soft); color: var(--teal); margin-bottom: 8px;
}
.has-rooms-badge {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
}
.hotel-name  { font-size: 1.1rem; font-weight: 700; color: var(--heading); margin-bottom: 4px }
.hotel-loc   { font-size: .84rem; color: var(--text-soft); margin-bottom: 8px }
.hotel-stars { color: var(--amber); font-size: .9rem; margin-bottom: 8px }
.hotel-desc  { font-size: .88rem; color: var(--text-soft); margin-bottom: 12px }
.hotel-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px }
.hotel-amenities span {
  padding: 4px 10px; border-radius: 8px; background: var(--surface-soft);
  font-size: .76rem; color: var(--text-soft);
}
.hotel-price-row { display: flex; align-items: center; justify-content: space-between }
.hotel-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--heading) }
.per-night   { font-size: .78rem; color: var(--text-soft) }
.hotel-summary { display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--surface-soft); border-radius: var(--radius-sm) }
.hotel-summary-img, .hotel-summary-ph { width: 72px; height: 54px; border-radius: 10px; object-fit: cover; flex-shrink: 0 }

/* Room options */
.room-selector { margin-top: 18px }
.room-options  { display: grid; gap: 10px }
.ro-name       { font-weight: 700; color: var(--heading); font-size: .95rem }
.ro-cap        { font-size: .82rem; color: var(--text-soft) }
.ro-price      { font-family: var(--font-display); font-size: 1.2rem; color: var(--amber) }

.pay-select, .pay-sel { display: grid; gap: 10px }
.pay-opt { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; border: 2px solid var(--border); cursor: pointer; transition: var(--transition) }
.pay-opt:hover, .pay-opt.selected { border-color: var(--teal) }
.pay-icon { font-size: 1.4rem }

.success-box {
  text-align: center; padding: 32px;
  background: linear-gradient(135deg, #e9f7f0, #eef7f6);
  border-radius: var(--radius-md);
}
.big-check { font-size: 3rem; margin-bottom: 12px }
.check     { color: var(--teal); font-weight: 700 }

/* ── 21. VISA SERVICES ────────────────────────── */
.visa-card, .vmodal { max-width: 700px }
.visa-card-top  { position: relative }
.visa-card-body { padding: 24px }
.visa-icon      { font-size: 2.4rem; margin-bottom: 12px }
.visa-desc      { font-size: .92rem; color: var(--text-soft) }
.visa-price-display { font-family: var(--font-display); font-size: 2rem; color: var(--amber); margin-bottom: 12px }
.visa-actions  { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px }
.visa-sum      { background: var(--surface-soft); border-radius: var(--radius-sm); padding: 16px }
.vs-icon       { font-size: 1.8rem }
.wa-visa-btn   {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: none;
  background: #25d366; color: #fff; font-weight: 700; font-size: .95rem;
  transition: var(--transition); cursor: pointer;
}
.wa-visa-btn:hover { filter: brightness(1.1); transform: translateY(-2px) }
.req-list { list-style: none; display: grid; gap: 8px }
.req-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem }
.vmodal     { max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto }
.vmodal-hd  { padding: 24px 24px 0; display: flex; align-items: center; justify-content: space-between }
.vmodal-bd  { padding: 20px 24px 28px }
.vmodal-close { background: none; border: none; font-size: 1.4rem; color: var(--text-soft); cursor: pointer }

/* ── 22. POLICIES ─────────────────────────────── */
.policy-layout  { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start }
.policy-nav     { background: var(--surface); border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 20px) }
.policy-nav-header { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 12px }
.policy-content { padding: 36px }
.policy-content-header { margin-bottom: 28px }
.policy-body    { max-width: 720px }
.policy-loading { text-align: center; padding: 60px; color: var(--text-soft) }

/* ── 23. MODALS ───────────────────────────────── */
.modal-ov, .modal-overlay {
  position: fixed; inset: 0; background: rgba(8,20,35,.74);
  display: none; align-items: center; justify-content: center;
  padding: 18px; z-index: 1400;
}
.modal-ov.open, .modal-overlay.open { display: flex }
.modal { position: relative; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto }
.modal-top   { padding: 24px 24px 0; display: flex; align-items: center; justify-content: space-between }
.modal-body  { padding: 20px 24px 28px }
.modal-close { background: none; border: none; font-size: 1.4rem; color: var(--text-soft); cursor: pointer; transition: var(--transition) }
.modal-close:hover { color: var(--heading) }

/* ── 24. PAGINATION ───────────────────────────── */
.pagination { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center }
.page-btn {
  min-width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); font-size: .9rem; font-weight: 600;
  color: var(--heading); transition: var(--transition); display: grid; place-items: center;
}
.page-btn:hover, .page-btn.active { background: var(--teal); color: #fff; border-color: var(--teal) }

/* ── 25. LIVE / STATUS ────────────────────────── */
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(15,118,110,.12); color: var(--teal);
  font-size: .76rem; font-weight: 700;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.spin { animation: spinAnim .7s linear infinite }
@keyframes spinAnim { to { transform: rotate(360deg) } }

.icon { display: inline-flex; align-items: center; justify-content: center }
.nav-icon { display: flex; align-items: center }

/* ── 26. LOADER ───────────────────────────────── */
.loader, .page-loader {
  position: fixed; inset: 0; background: #091521;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px; z-index: 2000;
}
.loader-logo { color: #fff; font-size: 2rem; font-family: var(--font-display) }
.loader-logo span { color: var(--amber-soft) }
.loader-bar { width: 220px; height: 8px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.12) }
.loader-progress {
  width: 45%; height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-soft));
  border-radius: 999px;
  animation: loaderMove 1.3s ease-in-out infinite alternate;
}
@keyframes loaderMove { from { transform: translateX(-15%) } to { transform: translateX(115%) } }

/* ── 27. TOAST ────────────────────────────────── */
.toast {
  position: fixed; right: 18px; bottom: 18px;
  min-width: 260px; max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px; border-radius: 18px;
  background: #0b1a2b; color: #fff;
  box-shadow: var(--shadow-lg); z-index: 1500;
}

/* ── 28. FOOTER ───────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0a1726, #08131f);
  color: rgba(255,255,255,.76);
  padding: 70px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr .9fr;
  gap: 32px; align-items: start; margin-bottom: 30px;
}
.footer .logo { align-items: center }
.footer .logo-mark { width: 42px; height: 42px; flex-basis: 42px }
.footer-logo { margin-bottom: 16px }
.footer-desc { max-width: 340px; color: rgba(255,255,255,.72) }
.footer-col h5, .footer-grid h5 { color: #fff; margin-bottom: 16px }
.footer-col ul, .footer-grid ul, .footer ul {
  list-style: none !important; display: grid; gap: 12px; padding: 0 !important; margin: 0 !important;
}
.footer-col li, .footer-grid li, .footer li { list-style: none !important; margin: 0; padding: 0 }
.footer-col a, .footer-grid a, .footer a { color: rgba(255,255,255,.78); transition: var(--transition) }
.footer-col a:hover, .footer-grid a:hover, .footer a:hover { color: #fff }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.08); transition: var(--transition);
}
.social-btn:hover { transform: translateY(-2px); background: linear-gradient(135deg, var(--teal), var(--navy)) }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.72) }
.footer-bottom a { color: var(--gold-light) }
.compact-footer   { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem }

/* ── 29. SEARCH FILTERS ───────────────────────── */
.email-bar { display: flex; gap: 10px; align-items: center }

/* ── 30. RESPONSIVE ───────────────────────────── */
/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1180px
   ═══════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .hero-content  { grid-template-columns: 1fr; gap: 30px; padding-bottom: 100px }
  .hero-visual   { justify-content: flex-start }
  .card-stack    { max-width: 500px; margin: 0 auto }
  .footer-grid   { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 36px }
  .pkg-grid      { grid-template-columns: repeat(2, minmax(0,1fr)) }
  .hotel-grid    { grid-template-columns: repeat(2, minmax(0,1fr)) }
  .policy-layout { grid-template-columns: 210px 1fr }
  .search-row    { grid-template-columns: 1fr 1fr 1fr }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET/MOBILE  ≤ 980px
   ═══════════════════════════════════════════════ */
@media (max-width: 980px) {
  :root { --header-h: 72px }

  /* ── Nav ── */
  .nav-links {
    position: fixed; top: var(--header-h); left: 12px; right: 12px;
    display: none; flex-direction: column; align-items: stretch;
    gap: 6px; padding: 14px;
    background: rgba(8,20,35,.97);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { display: flex }
  .nav-links a, .nav-cta, .nav-cta a {
    width: 100%; justify-content: flex-start;
    padding: 12px 16px; border-radius: 12px;
  }
  .hamburger { display: flex }

  /* ── Language/Currency switcher ── */
  .nav-switchers    { gap: 5px }
  .switcher-btn     { padding: 6px 8px; font-size: .74rem; gap: 4px }
  .switcher-caret   { display: none }
  .switcher-dropdown{ min-width: 160px; right: 0; left: auto }

  /* ── Hero ── */
  .hero-content  { padding-top: calc(var(--header-h) + 28px) }
  .hero-visual   { display: none }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.8rem) }
  .hero-subtitle { font-size: .95rem }

  /* ── Booking bar ── */
  .booking-shell    { margin-top: -16px }
  .booking-tabs     { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px }
  .booking-form-row { grid-template-columns: repeat(2, minmax(0,1fr)) }

  /* ── Grids → single column ── */
  .grid-2, .grid-3, .grid-4,
  .services-grid, .contact-info-grid,
  .about-story   { grid-template-columns: 1fr }

  .pkg-grid  { grid-template-columns: repeat(2, minmax(0,1fr)) }
  .hotel-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start }

  /* ── Forms & search ── */
  .newsletter-form, .form-grid { grid-template-columns: 1fr }
  .search-grid { grid-template-columns: repeat(2, minmax(0,1fr)) }
  .search-row  { grid-template-columns: 1fr 1fr }

  /* ── Policy ── */
  .policy-layout { grid-template-columns: 1fr }
  .policy-nav    { position: static }
  .policy-nav ul { display: flex; flex-wrap: wrap; padding: 8px }
  .policy-nav li a {
    padding: 8px 12px; border-left: none;
    border-bottom: 2px solid transparent;
  }
  .policy-nav li a.active { border-bottom-color: var(--gold) }

  /* ── Sections ── */
  .section    { padding: 64px 0 }
  .section-sm { padding: 40px 0 }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --header-h: 66px }

  /* ── Base ── */
  .container { width: min(var(--container), calc(100% - 20px)) }
  .section    { padding: 52px 0 }
  .section-sm { padding: 32px 0 }

  /* ── Header ── */
  .header-bar { padding: 0 16px }
  .logo-text  { font-size: 1.1rem }
  .logo-mark  { width: 32px; height: 32px; font-size: .85rem }

  /* ── Switcher on mobile — icon only ── */
  .switcher-btn span:not(.switcher-caret):last-child { display: none }
  .switcher-btn { padding: 6px 8px; min-width: 0 }
  .switcher-caret { display: none }

  /* ── Hero ── */
  .hero-content { padding-top: calc(var(--header-h) + 20px); padding-bottom: 60px }
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); line-height: 1.1 }
  .hero-headline .large-word { font-size: 1em }
  .hero-subtitle { font-size: .9rem; line-height: 1.7 }
  .eyebrow { margin-bottom: 14px }
  .hero-divider { margin: 18px 0 }

  /* ── Hero CTAs ── */
  .hero-ctas {
    flex-direction: column; align-items: stretch; gap: 12px;
  }
  .cta-primary, .cta-secondary {
    width: 100%; justify-content: center; padding: 14px 20px;
  }

  /* ── Hero stats — 2×2 grid ── */
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 28px;
  }
  .stat-pipe { display: none }
  .stat { min-width: 0 }
  .stat-val { font-size: 1.6rem }

  /* ── Booking bar ── */
  .booking-shell { margin-top: -8px; margin-bottom: 0 }
  .booking-bar   { padding: 18px 16px; border-radius: 18px }
  .booking-tabs  { grid-template-columns: repeat(2,1fr); gap: 6px }
  .booking-tab   { padding: 9px 10px; font-size: .76rem }
  .booking-form-row { grid-template-columns: 1fr; gap: 10px }
  .form-field    { min-width: 0 }
  .form-field label { font-size: .73rem }
  .form-field input, .form-field select { height: 44px; font-size: .85rem }

  /* ── Services grid ── */
  .services-grid { grid-template-columns: 1fr; gap: 14px }
  .service-card  { padding: 24px 20px; text-align: center }
  .service-card .feature-icon { margin: 0 auto 14px !important }

  /* ── Stats bar ── */
  .stats-bar     { padding: 28px 0 }
  .grid-4.stat-items { grid-template-columns: 1fr 1fr; gap: 20px }
  .stat-num      { font-size: 2rem }

  /* ── Package & hotel cards ── */
  .pkg-grid  { grid-template-columns: 1fr; gap: 20px }
  .hotel-grid{ grid-template-columns: 1fr; gap: 20px }
  .pkg-card, .hotel-card { border-radius: 14px }
  .pkg-img   { height: 180px }
  .hotel-img-wrap, .hotel-img { height: 180px }

  /* ── Newsletter ── */
  .newsletter-box { padding: 28px 20px; border-radius: 20px }
  .newsletter-box h2 { font-size: 1.6rem }
  .newsletter-form { flex-direction: column; gap: 10px }
  .newsletter-form input  { width: 100%; border-radius: 12px }
  .newsletter-form button { width: 100%; border-radius: 12px }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr; gap: 28px;
  }
  .footer-col h5 { font-size: 1rem; margin-bottom: 12px }
  .footer-social { gap: 10px; margin-top: 16px }
  .social-btn { width: 38px; height: 38px; font-size: .85rem }
  .footer-bottom {
    flex-direction: column; gap: 10px;
    align-items: flex-start; padding-top: 20px;
    font-size: .78rem;
  }
  .footer-bottom p:last-child { flex-direction: row; flex-wrap: wrap; gap: 12px }

  /* ── Page headers (inner pages) ── */
  .page-header { padding: 80px 0 36px }
  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.8rem) }
  .page-header p  { font-size: .88rem }

  /* ── Section typography ── */
  h2.section-title { font-size: clamp(1.7rem, 6vw, 2.4rem) }
  .section-sub { font-size: .88rem }
  .mb-40 { margin-bottom: 24px }

  /* ── Forms (shared) ── */
  .form-row   { grid-template-columns: 1fr }
  .form-grid  { grid-template-columns: 1fr }
  .form-group { margin-bottom: 12px }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: .9rem; padding: 11px 13px;
  }

  /* ── Buttons ── */
  .btn-lg { padding: 13px 24px; font-size: .92rem }
  .btn    { padding: 10px 20px; font-size: .85rem }

  /* ── Flight page ── */
  .flight-search-box { padding: 20px 16px; border-radius: 16px }
  .search-tabs { overflow-x: auto; scrollbar-width: none }
  .search-tabs::-webkit-scrollbar { display: none }
  .stab { padding: 9px 14px; font-size: .82rem; white-space: nowrap }
  .search-grid { grid-template-columns: 1fr }
  .flight-card {
    grid-template-columns: 1fr; gap: 14px;
    padding: 18px 16px; border-radius: 14px;
  }
  .flight-pricing { text-align: left; border-top: 1px solid #f0f2f7; padding-top: 12px }
  .flight-time    { font-size: 1.35rem }
  .flight-our-price { font-size: 1.2rem }

  /* Flight modal */
  .modal-ov { padding: 12px }
  .fmodal   { border-radius: 16px }
  .fmodal-hd { padding: 18px 18px 0 }
  .fmodal-bd { padding: 16px 18px 22px }
  .fmodal-hd h2 { font-size: 1.1rem }
  .fl-sum-grid { grid-template-columns: 1fr auto 1fr }
  .pay-sel { grid-template-columns: 1fr 1fr }

  /* ── Hotels page ── */
  .hotel-search-bar { padding: 20px 16px; border-radius: 16px }
  .search-row { grid-template-columns: 1fr }
  .hotel-grid { grid-template-columns: 1fr }
  .room-options { grid-template-columns: 1fr 1fr }

  /* Hotel modal */
  .modal-ov  { padding: 10px }
  .modal     { border-radius: 16px }
  .modal-top { padding: 18px 16px 14px }
  .modal-top h2 { font-size: 1.2rem }
  .modal-body   { padding: 16px 16px 24px }
  .hotel-summary { flex-direction: column; text-align: center }
  .hotel-summary-img,
  .hotel-summary-ph { margin: 0 auto }
  .pay-select { grid-template-columns: 1fr 1fr }

  /* ── Packages page ── */
  .pkg-filters { padding: 16px; gap: 8px; border-radius: 14px }
  .pkg-filters h3 { font-size: .85rem }
  .filter-btn  { padding: 7px 14px; font-size: .78rem }
  .pkg-search  { width: 100%; min-width: 0 }
  .pkg-grid    { grid-template-columns: 1fr }
  .pkg-modal   { border-radius: 16px }
  .pm-img      { height: 190px }
  .pm-body     { padding: 18px 16px 22px }
  .pm-title    { font-size: 1.2rem }

  /* ── Visa page ── */
  .grid-3.visa-cards-grid { grid-template-columns: 1fr }
  .visa-card-top  { padding: 22px 18px 16px }
  .visa-card-top h3 { font-size: 1.15rem }
  .visa-price-display .price-val { font-size: 1.3rem }
  .vmodal  { border-radius: 16px }
  .vmodal-hd { padding: 18px 16px 0 }
  .vmodal-bd { padding: 14px 16px 22px }

  /* ── Airport taxi page ── */
  .taxi-form-card { padding: 20px 16px }

  /* ── Contact page ── */
  .contact-info-grid { grid-template-columns: 1fr }
  .contact-form-card { padding: 24px 16px }

  /* ── About page ── */
  .about-story { grid-template-columns: 1fr }
  .about-image { border-radius: 16px }

  /* ── Policies page ── */
  .policy-layout { grid-template-columns: 1fr }
  .policy-nav    { position: static }
  .policy-nav ul {
    display: flex; flex-wrap: wrap; padding: 8px; gap: 4px;
  }
  .policy-nav li a {
    padding: 7px 12px; font-size: .78rem;
    border-left: none; border-bottom: 2px solid transparent;
    border-radius: 8px;
  }
  .policy-nav li a.active {
    border-bottom-color: var(--gold); background: #fffbf0;
  }
  .policy-content-header { padding: 22px 20px }
  .policy-content-header h1 { font-size: 1.4rem }
  .policy-body { padding: 22px 18px }
  .ptab { padding: 11px 14px; font-size: .78rem }

  /* ── Admin (basic mobile support) ── */
  .admin-layout { flex-direction: column }
  .sidebar { width: 100%; min-height: auto; position: static }
  .stats-grid { grid-template-columns: 1fr 1fr }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch }
  .admin-form-card { padding: 0 }
  .admin-form-body { padding: 16px }
  .form-row   { grid-template-columns: 1fr }
  .hp-grid    { grid-template-columns: 1fr !important }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 400px
   ═══════════════════════════════════════════════ */
@media (max-width: 400px) {
  :root { --header-h: 62px }
  .hero-headline   { font-size: clamp(1.9rem, 10vw, 2.6rem) }
  .booking-tabs    { grid-template-columns: 1fr 1fr }
  .booking-tab     { font-size: .72rem; padding: 8px 6px }
  .booking-tab i   { display: none }
  .hero-stats      { gap: 12px }
  .stat-val        { font-size: 1.4rem }
  .stats-grid      { grid-template-columns: 1fr }
  .footer-grid     { grid-template-columns: 1fr }
  .switcher-btn    { padding: 5px 7px; font-size: .7rem }
  h2.section-title { font-size: 1.5rem }
}

/* ═══════════════════════════════════════════════
   PAGE-SPECIFIC STYLES (consolidated from inline)
   ═══════════════════════════════════════════════ */

/* ── FLIGHTS PAGE ─────────────────────────────── */
.flight-search-box {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 32px rgba(10,22,40,.1);
  padding: 28px 32px; margin-bottom: 32px;
}
.search-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid #f0f2f7; margin-bottom: 24px;
}
.stab {
  padding: 10px 24px; font-size: .9rem; font-weight: 600;
  cursor: pointer; border-bottom: 3px solid transparent;
  color: var(--gray); margin-bottom: -2px; transition: .2s;
  background: none; border-top: none; border-left: none; border-right: none;
}
.stab.active { color: var(--navy); border-bottom-color: var(--gold) }
.stab:hover  { color: var(--navy) }

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 14px; align-items: end;
}
.search-grid .form-group { margin: 0 }

.flight-results { margin-top: 32px }
.flight-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 18px rgba(10,22,40,.08);
  padding: 22px 24px; margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center; gap: 20px; transition: .25s;
}
.flight-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,.14); transform: translateY(-2px) }

.airline-name  { font-size: .8rem; color: var(--gray); margin-bottom: 4px }
.flight-time   { font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1 }
.flight-city   { font-size: .85rem; color: var(--gray); margin-top: 2px }
.flight-code   { font-size: .75rem; color: var(--gold); font-weight: 600 }
.flight-line   { text-align: center }
.flight-line .duration { font-size: .78rem; color: var(--gray); margin-bottom: 4px }
.flight-arrow  { font-size: 1.5rem; color: var(--navy-light) }
.flight-stops  { font-size: .72rem; color: var(--gray); margin-top: 2px }
.flight-pricing { text-align: right }
.flight-base-price { font-size: .75rem; color: var(--gray); text-decoration: line-through }
.flight-our-price  { font-size: 1.4rem; font-weight: 700; color: var(--navy) }
.flight-markup {
  font-size: .7rem; background: #fef3c7; color: #92400e;
  padding: 2px 8px; border-radius: 10px; display: inline-block;
}
.flight-class { font-size: .75rem; color: var(--gray); margin-top: 2px }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray) }
.no-results .icon { font-size: 3rem; margin-bottom: 16px }

/* Flight modal */
.modal-ov { position: fixed; inset: 0; background: rgba(10,22,40,.8); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px }
.modal-ov.open { display: flex }
.fmodal { background: #fff; border-radius: 20px; width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto }
.fmodal-hd { padding: 24px 28px 0; display: flex; align-items: flex-start; justify-content: space-between }
.fmodal-hd h2 { font-size: 1.35rem; color: var(--navy) }
.fmodal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray); line-height: 1 }
.fmodal-bd { padding: 20px 28px 28px }

.fl-sum { background: #f8f9fc; border-radius: 12px; padding: 16px; margin-bottom: 18px }
.fl-sum h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px }
.fl-sum-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; text-align: center }
.fl-sum-grid .city { font-size: 1.2rem; font-weight: 700; color: var(--navy) }
.fl-sum-grid .code { font-size: .75rem; color: var(--gray) }

.pb { background: #fffbf0; border: 1px solid #fde68a; border-radius: 10px; padding: 14px 16px; margin: 14px 0 }
.pb-row { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: 6px }
.pb-row.total { border-top: 1px solid #fde68a; padding-top: 8px; margin-top: 8px; font-weight: 700; font-size: .95rem; margin-bottom: 0 }

.pay-sel { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0 }
.pay-opt { border: 2px solid #e5e7eb; border-radius: 10px; padding: 14px; cursor: pointer; text-align: center; transition: .2s }
.pay-opt:hover, .pay-opt.sel { border-color: var(--gold); background: #fffbf0 }
.pay-opt .pay-icon { font-size: 1.8rem; margin-bottom: 4px }
.pay-opt span { display: block; font-size: .8rem; color: var(--navy); font-weight: 600 }

.email-bar {
  background: #f0f4ff; border: 1px solid #c7d2fe;
  border-radius: 10px; padding: 14px 16px; margin-top: 14px;
  display: flex; align-items: center; gap: 12px; font-size: .85rem;
}
.email-bar a { color: #3b5bdb; font-weight: 600; text-decoration: none }

.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; color: #16a34a;
  font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.live-dot { width: 7px; height: 7px; background: #16a34a; border-radius: 50%; animation: livePulse 1.5s infinite }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── HOTELS PAGE ──────────────────────────────── */
.hotel-search-bar {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 32px rgba(10,22,40,.1);
  padding: 28px 32px; margin-bottom: 32px;
}
.hotel-search-bar h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; margin-bottom: 16px; color: var(--navy);
}
.search-row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr 1fr auto;
  gap: 12px; align-items: end;
}
.search-row .form-group { margin: 0 }

.hotel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }
.hotel-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.hotel-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,22,40,.15) }
.hotel-img-wrap { position: relative; overflow: hidden; height: 200px; background: var(--navy) }
.hotel-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s }
.hotel-card:hover .hotel-img { transform: scale(1.05) }
.hotel-img-ph {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.hotel-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,22,40,.75);
  color: #fff; font-size: .68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .04em;
}
.has-rooms-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
}
.hotel-body { padding: 20px; flex: 1; display: flex; flex-direction: column }
.hotel-stars { color: #f59e0b; font-size: .82rem; margin-bottom: 6px }
.hotel-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px; line-height: 1.3;
}
.hotel-loc { font-size: .78rem; color: var(--gray); margin-bottom: 10px; display: flex; align-items: center; gap: 4px }
.hotel-desc {
  font-size: .78rem; color: var(--gray); line-height: 1.5; margin-bottom: 12px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hotel-amenities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px }
.a-tag { background: #f0f4ff; color: #3b5bdb; font-size: .67rem; padding: 2px 8px; border-radius: 20px; font-weight: 500 }
.hotel-price-row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #f0f2f7; padding-top: 14px; margin-top: auto;
}
.price-from { font-size: .7rem; color: var(--gray); margin-bottom: 1px }
.hotel-price { font-size: 1.2rem; font-weight: 700; color: var(--navy); font-family: var(--font-display) }
.per-night { font-size: .7rem; color: var(--gray); font-weight: 400 }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap }
.page-btn {
  padding: 8px 14px; border: 1.5px solid #e5e7eb; border-radius: 9px;
  background: #fff; cursor: pointer; font-size: .85rem; transition: .2s; color: var(--navy);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy) }
.page-btn:disabled { opacity: .35; cursor: not-allowed }
.results-info {
  color: var(--gray); font-size: .85rem; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}

/* Hotels booking modal */
.modal { background: #fff; border-radius: 24px; width: 100%; max-width: 640px; max-height: 94vh; overflow-y: auto; box-shadow: 0 40px 100px rgba(0,0,0,.3) }
.modal-top { padding: 28px 32px 20px; display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid #f0f2f7 }
.modal-top h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy) }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--gray); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: .2s }
.modal-close:hover { background: #f3f4f6; color: var(--navy) }
.modal-body { padding: 24px 32px 32px }

.hotel-summary {
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
  border-radius: 14px; padding: 18px; margin-bottom: 22px;
  display: flex; gap: 14px; align-items: center; color: #fff;
}
.hotel-summary-img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: rgba(255,255,255,.1) }
.hotel-summary-ph { width: 64px; height: 64px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0 }
.hotel-summary h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 3px }
.hotel-summary p { font-size: .78rem; opacity: .75; margin: 0 }
.hotel-summary .gold-price { color: var(--gold); font-weight: 700; font-size: .95rem; margin-top: 4px }

.room-selector { margin-bottom: 18px }
.room-selector label { font-size: .78rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px }
.room-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px }
.room-opt { border: 2px solid #e5e7eb; border-radius: 12px; padding: 12px 10px; cursor: pointer; text-align: center; transition: .2s; position: relative }
.room-opt:hover, .room-opt.selected { border-color: var(--gold); background: #fffbf0 }
.ro-name { font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 2px }
.ro-price { font-size: .9rem; font-weight: 700; color: var(--gold) }
.ro-cap { font-size: .68rem; color: var(--gray) }

.price-breakdown { background: #fffbf0; border: 1px solid #fde68a; border-radius: 12px; padding: 14px 18px; margin: 14px 0 }
.pb-row { display: flex; justify-content: space-between; font-size: .83rem; margin-bottom: 5px; color: var(--navy) }
.pb-row.total { border-top: 1px solid #fde68a; padding-top: 8px; margin-top: 8px; font-weight: 700; font-size: .95rem }

.pay-select { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0 }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.form-group { margin-bottom: 14px }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: 5px }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 13px; border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-family: var(--font-body); font-size: .85rem; outline: none; transition: .2s; box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(204,139,43,.1) }

.btn-pay {
  width: 100%;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: #fff; border: none; border-radius: 12px;
  padding: 14px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: .2s; margin-top: 8px;
}
.btn-pay:hover { opacity: .9; transform: translateY(-1px) }
.btn-pay:disabled { opacity: .6; cursor: not-allowed; transform: none }

.success-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 14px; padding: 20px; color: #166534; text-align: center }
.big-check { font-size: 2.5rem; margin-bottom: 10px }
.msg-box { margin-top: 12px; padding: 12px 16px; border-radius: 10px; font-size: .83rem }
.msg-box.error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626 }

/* ── TRAVEL PACKAGES PAGE ─────────────────────── */
.pkg-filters {
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10,22,40,.1);
  padding: 22px 28px; margin-bottom: 32px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.pkg-filters h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-right: 8px; white-space: nowrap }
.filter-btn {
  padding: 8px 18px; border: 1.5px solid #e5e7eb; border-radius: 24px;
  background: #fff; cursor: pointer; font-size: .82rem; font-weight: 600;
  color: var(--navy); transition: .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy) }
.pkg-search {
  padding: 8px 14px; border: 1.5px solid #e5e7eb; border-radius: 24px;
  font-family: inherit; font-size: .82rem; outline: none; min-width: 220px; transition: .2s;
}
.pkg-search:focus { border-color: var(--gold) }

.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px }
.pkg-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,.08);
  transition: .3s; display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(10,22,40,.15) }
.pkg-img { width: 100%; height: 210px; object-fit: cover; position: relative }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; display: block }
.pkg-badge-wrap { position: absolute; top: 14px; left: 14px }
.pkg-badge { background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em }
.pkg-cat { position: absolute; top: 14px; right: 14px; background: rgba(10,22,40,.75); color: #fff; font-size: .7rem; padding: 4px 10px; border-radius: 20px; text-transform: capitalize }
.pkg-body { padding: 20px; flex: 1; display: flex; flex-direction: column }
.pkg-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.3 }
.pkg-dest { font-size: .8rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 4px }
.pkg-desc { font-size: .82rem; color: var(--gray); line-height: 1.55; flex: 1 }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f0f2f7; padding-top: 14px; margin-top: 14px }
.pkg-price { font-size: 1.3rem; font-weight: 700; color: var(--navy) }
.pkg-price small { font-size: .75rem; font-weight: 400; color: var(--gray) }
.pkg-dur { font-size: .78rem; color: var(--gray); margin-top: 3px; display: flex; align-items: center; gap: 4px }

.pkg-modal { background: #fff; border-radius: 20px; width: 100%; max-width: 640px; max-height: 92vh; overflow-y: auto; position: relative }
.pm-img { width: 100%; height: 240px; object-fit: cover; display: block }
.pm-body { padding: 24px 28px 28px }
.pm-title { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 6px }
.pm-dest { color: var(--gold); font-weight: 600; font-size: .9rem; margin-bottom: 14px }
.pm-desc { font-size: .9rem; color: var(--gray); line-height: 1.65; margin-bottom: 18px }
.pm-price-row { background: #f8f9fc; border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between }
.pm-price { font-size: 1.5rem; font-weight: 700; color: var(--navy) }
.pm-dur { font-size: .85rem; color: var(--gray) }
.pm-close { position: absolute; top: 14px; right: 14px; background: #fff; border: none; border-radius: 50%; width: 34px; height: 34px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.2) }

/* ── VISA SERVICES PAGE ───────────────────────── */
.visa-card {
  background: #fff; border-radius: 18px;
  box-shadow: 0 4px 24px rgba(10,22,40,.08);
  overflow: hidden; transition: .3s; display: flex; flex-direction: column;
}
.visa-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,22,40,.14) }
.visa-card-top { padding: 28px 24px 20px; background: linear-gradient(135deg, #0a1628, #1a3a6b) }
.visa-icon { font-size: 2.5rem; margin-bottom: 12px }
.visa-card-top h3 { font-size: 1.35rem; color: #fff; margin-bottom: 8px }
.visa-price-display { display: flex; align-items: center; gap: 10px; margin-top: 12px }
.visa-price-display .price-val { font-size: 1.5rem; font-weight: 700; color: var(--gold) }
.visa-price-display .price-label { font-size: .8rem; color: rgba(255,255,255,.6) }
.visa-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column }
.visa-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px }
.req-list { list-style: none; padding: 0; margin-bottom: 20px; flex: 1 }
.req-list li { font-size: .82rem; color: var(--navy); padding: 5px 0; border-bottom: 1px solid #f5f5f5; display: flex; align-items: flex-start; gap: 8px }
.req-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px }
.visa-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto }

.vmodal { background: #fff; border-radius: 20px; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto }
.vmodal-hd { padding: 24px 28px 0; display: flex; align-items: flex-start; justify-content: space-between }
.vmodal-hd h2 { font-size: 1.3rem; color: var(--navy) }
.vmodal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray); line-height: 1 }
.vmodal-bd { padding: 18px 28px 28px }

.visa-sum {
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 16px;
}
.vs-icon { font-size: 2rem }
.visa-sum h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px }
.visa-sum p { font-size: .82rem; color: rgba(255,255,255,.7); margin: 0 }
.price-highlight { color: var(--gold); font-weight: 700; font-size: 1.1rem; margin-top: 4px }

.wa-visa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: none;
  background: #25d366; color: #fff; font-weight: 700; font-size: .95rem;
  transition: var(--transition); cursor: pointer; width: 100%;
}
.wa-visa-btn:hover { filter: brightness(1.1); transform: translateY(-2px) }

.success-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 20px; color: #166534; text-align: center }
.big-check { font-size: 2.5rem; margin-bottom: 10px }

/* ── POLICIES PAGE ────────────────────────────── */
.policy-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start }
.policy-nav {
  position: sticky; top: calc(var(--header-h) + 16px);
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(10,22,40,.07); overflow: hidden;
}
.policy-nav-header {
  background: var(--navy); padding: 16px 20px;
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.policy-nav ul { list-style: none; padding: 8px 0; margin: 0 }
.policy-nav li a {
  display: flex; align-items: center; gap: 10px; padding: 11px 20px;
  font-size: .85rem; color: var(--text); text-decoration: none;
  transition: .18s; border-left: 3px solid transparent;
}
.policy-nav li a:hover { background: #f8f9fc; color: var(--navy) }
.policy-nav li a.active { background: #fffbf0; color: var(--navy); border-left-color: var(--gold); font-weight: 600 }
.policy-nav li a .nav-icon { font-size: 1rem; width: 20px; text-align: center }

.policy-content { background: #fff; border-radius: 14px; box-shadow: 0 4px 20px rgba(10,22,40,.07); overflow: hidden }
.policy-content-header { background: linear-gradient(135deg, var(--navy), #1a3a6b); padding: 32px 36px }
.policy-content-header h1 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: 6px }
.policy-content-header .meta { font-size: .8rem; color: rgba(255,255,255,.55); display: flex; gap: 16px; flex-wrap: wrap }
.policy-content-header .meta span { display: flex; align-items: center; gap: 5px }

.policy-body { padding: 36px; min-height: 300px }
.policy-body h2 { font-size: 1.15rem; color: var(--navy); margin: 28px 0 10px; font-weight: 700 }
.policy-body h2:first-child { margin-top: 0 }
.policy-body h3 { font-size: 1rem; color: var(--navy-mid); margin: 20px 0 8px; font-weight: 600 }
.policy-body p { font-size: .9rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px }
.policy-body ul, .policy-body ol { padding-left: 20px; margin-bottom: 14px }
.policy-body li { font-size: .88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 5px }
.policy-body a { color: var(--gold); text-decoration: none }
.policy-body a:hover { text-decoration: underline }
.policy-body strong { color: var(--navy) }
.policy-body hr { border: none; border-top: 1px solid #f0f2f7; margin: 24px 0 }
.policy-body blockquote { background: #f8f9fc; border-left: 3px solid var(--gold); padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 16px 0; font-size: .88rem; color: var(--text-soft) }
.policy-loading { text-align: center; padding: 60px 20px; color: var(--text-soft) }
.policy-loading .spin { font-size: 2rem; display: inline-block; margin-bottom: 12px }

.policy-tabs { display: flex; gap: 0; border-bottom: 1px solid #f0f2f7; overflow-x: auto; scrollbar-width: none; margin-bottom: 0 }
.policy-tabs::-webkit-scrollbar { display: none }
.ptab { padding: 14px 22px; font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--text-soft); border-bottom: 3px solid transparent; white-space: nowrap; transition: .2s; background: none; border-top: none; border-left: none; border-right: none }
.ptab:hover { color: var(--navy); background: #fafbfc }
.ptab.active { color: var(--navy); border-bottom-color: var(--gold); background: #fffbf0 }
.ptab .tab-icon { margin-right: 6px }

/* ── PAGE-SPECIFIC RESPONSIVE — handled in main breakpoints above ── */
