/* ============================================================
   Karwan-e-Lahore Travel & Tours — Design System
   Navy + Gold pilgrimage brand. Hand-crafted, no framework.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --ink:        #0b1d3f;   /* deep navy */
  --ink-700:    #102a57;
  --ink-800:    #0a1832;
  --ink-900:    #06122a;
  --gold:       #c4a052;
  --gold-300:   #e6cd8e;
  --gold-400:   #d8bb6f;
  --gold-600:   #a47f31;
  --emerald:    #0f6b4f;   /* Madinah dome green */
  --emerald-700:#0a4f3a;

  /* Neutrals */
  --paper:   #ffffff;
  --cream:   #faf6ec;
  --sand:    #f3ecdd;
  --text:    #1b2434;
  --muted:   #5d6678;
  --line:    rgba(11, 29, 63, 0.10);
  --line-2:  rgba(11, 29, 63, 0.06);

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --arabic:  "Amiri", "Scheherazade New", serif;

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(8, 20, 45, .06), 0 2px 6px rgba(8, 20, 45, .05);
  --sh:    0 6px 18px rgba(8, 20, 45, .08), 0 2px 6px rgba(8, 20, 45, .05);
  --sh-lg: 0 24px 60px rgba(8, 20, 45, .16), 0 8px 22px rgba(8, 20, 45, .08);
  --sh-gold: 0 14px 30px rgba(164, 127, 49, .28);

  --container: 1200px;
  --container-wide: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
svg { max-width: 100%; }
/* Inline icons (from ic()) carry no class — default them to text size so they never stretch.
   Components that need a specific size set `.parent svg { width: … }` and win on source order. */
svg:not([class]) { width: 1.05em; height: 1.05em; display: inline-block; vertical-align: -.16em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--muted); }
strong { color: var(--text); font-weight: 700; }

.display-italic { font-style: italic; font-variation-settings: "opsz" 80; }
.text-gold { color: var(--gold-600); }
.arabic { font-family: var(--arabic); direction: rtl; }

/* Kicker / eyebrow label */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600);
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: linear-gradient(90deg, var(--gold), transparent); }
.kicker.center { justify-content: center; }
.kicker.on-dark { color: var(--gold-300); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2.4rem, var(--container-wide)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 8vw, 7.5rem); position: relative; }
.section.tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section-head { max-width: 660px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.08rem; }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-ink   { background: var(--ink); color: #e9eefb; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.divider-orn { color: var(--gold); width: 220px; margin: 1.2rem auto 0; opacity: .9; }
.divider-orn.left { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .92rem 1.6rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  background: var(--bg); color: var(--fg);
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn:active { transform: translateY(0); }
.btn-gold { background: linear-gradient(135deg, var(--gold-300), var(--gold) 55%, var(--gold-600)); color: var(--ink); }
.btn-gold::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-130%);
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.55) 50%, transparent 65%);
  transition: transform .7s var(--ease);
}
.btn-gold:hover::after { transform: translateX(130%); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-700); box-shadow: var(--sh); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn-ghost.on-dark:hover { box-shadow: inset 0 0 0 1.5px var(--gold-300); }
.btn-wa { background: #25d366; color: #07331b; }
.btn-wa:hover { background: #20c15c; box-shadow: 0 14px 30px rgba(37,211,102,.32); }
.btn-sm { padding: .6rem 1.05rem; font-size: .88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 236, .86);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(196, 160, 82, .26);
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s;
}
.site-header.scrolled { background: rgba(252, 249, 242, .96); box-shadow: 0 8px 28px rgba(11,29,63,.10); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding-block: .6rem; }
.site-header.scrolled .header-inner { padding-block: .45rem; }

/* Brand lockup */
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; display: block; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo { height: 48px; }
.brand .brand-mark { width: 46px; height: 46px; flex-shrink: 0; transition: transform .4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.04); }
.brand-mark .bm-arch, .brand-mark .bm-crescent, .brand-mark .bm-star,
.brand-mark .bm-kiswah, .brand-mark .bm-swoosh, .brand-mark .bm-plane { stroke: var(--gold-300); fill: var(--gold-300); }
.brand-mark .bm-arch, .brand-mark .bm-swoosh { fill: none; }
.brand-mark .bm-kaaba { fill: #f4ead0; }
.brand-mark .bm-door { fill: var(--gold-600); }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--display); font-size: 1.32rem; font-weight: 600; letter-spacing: .01em; color: #fff; }
.brand-name span { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-300); margin-top: .28rem; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.main-nav a {
  color: #36425c; font-size: .96rem; font-weight: 600; padding: .55rem .85rem; border-radius: var(--r-pill);
  position: relative; transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 50%; bottom: .28rem; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-600);
}
.header-cta { display: flex; align-items: center; gap: .7rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); font-weight: 700; font-size: .96rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--gold-600); }
.header-phone small { display: block; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; margin-left: auto;
  background: rgba(11,29,63,.06); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; color: #eaf0ff;
  padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: 0;
  background: var(--ink-900);
  overflow: hidden;
}
/* Hero image slider */
.hero-slider { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease); will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-slide.active { animation: kenburns 9s ease-out forwards; }
}
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1.02); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(7,18,42,.95) 0%, rgba(7,18,42,.66) 38%, rgba(7,18,42,.22) 60%, rgba(7,18,42,.5) 100%),
    linear-gradient(0deg, rgba(7,18,42,.8), transparent 42%);
}
.hero-controls { position: absolute; left: 0; right: 0; bottom: 1.1rem; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 1.2rem; pointer-events: none; }
.hero-dots { display: flex; gap: .5rem; pointer-events: auto; }
.hero-dot { width: 30px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.35); cursor: pointer; transition: .35s var(--ease); padding: 0; }
.hero-dot:hover { background: rgba(255,255,255,.6); }
.hero-dot.active { background: var(--gold-300); width: 46px; }
.hero-arrow { pointer-events: auto; width: 44px; height: 44px; border-radius: 50%; display: none; place-items: center;
  background: rgba(8,20,45,.4); border: 1px solid rgba(255,255,255,.22); color: #fff; backdrop-filter: blur(4px); transition: .25s; }
.hero-arrow:hover { background: rgba(8,20,45,.7); border-color: var(--gold-300); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow svg.rot-r { transform: rotate(90deg); }
.hero-arrow svg.rot-l { transform: rotate(-90deg); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; padding-bottom: 4rem; }
.hero-bismillah { font-family: var(--arabic); font-size: 1.5rem; color: var(--gold-300); margin-bottom: 1rem; opacity: .92; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero-lead { font-size: 1.18rem; color: #c5cfe6; max-width: 40ch; margin-top: 1.3rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; margin-top: 2.3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust div { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: #c8d2e8; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-300); flex-shrink: 0; }

/* Hero side card */
.hero-card {
  background: rgba(9,21,46,.66); border: 1px solid rgba(196,160,82,.30);
  border-radius: var(--r-lg); padding: 1.6rem; backdrop-filter: blur(10px);
  box-shadow: var(--sh-lg);
}
.hero-card .hc-tag { display: inline-flex; align-items: center; gap: .4rem; background: rgba(196,160,82,.16); color: var(--gold-300);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .7rem; border-radius: var(--r-pill); }
.hero-card h3 { color: #fff; margin: .9rem 0 .2rem; }
.hero-card .hc-route { color: #b9c4dd; font-size: .92rem; }
.hero-card .hc-price { display: flex; align-items: baseline; gap: .5rem; margin: 1rem 0 .2rem; }
.hero-card .hc-price b { font-family: var(--display); font-size: 2.3rem; color: var(--gold-300); }
.hero-card .hc-price span { color: #aab6d2; font-size: .9rem; }
.hero-card ul { display: grid; gap: .55rem; margin: 1.1rem 0 1.3rem; }
.hero-card ul li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: #d4ddf0; }
.hero-card ul li svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }
.hero-card ul li svg.gold { color: var(--gold-300); }

.hero-skyline { width: 100%; color: rgba(8,18,40,.55); margin-bottom: -2px; }
.hero-skyline svg { width: 100%; height: auto; filter: drop-shadow(0 -1px 0 rgba(196,160,82,.25)); }

/* Marquee trust bar */
.trustbar { background: var(--ink-900); border-top: 1px solid rgba(196,160,82,.16); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; padding-block: 1.1rem; }
.trustbar span { display: inline-flex; align-items: center; gap: .55rem; color: #b9c4dd; font-size: .86rem; font-weight: 600; letter-spacing: .02em; }
.trustbar svg { width: 17px; height: 17px; color: var(--gold-300); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--gold-300), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--ink), var(--ink-700)); color: var(--gold-300); margin-bottom: 1.2rem; }
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { font-size: .98rem; }
.svc-card .svc-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 700; color: var(--ink); font-size: .92rem; }
.svc-card .svc-link svg { width: 16px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-card .svc-link { color: var(--gold-600); }

/* ---------- Feature / why-us ---------- */
.feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature .f-ic { width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--sand); color: var(--gold-600); }
.feature .f-ic svg { width: 24px; height: 24px; }
.feature h4 { margin-bottom: .3rem; }
.feature p { font-size: .95rem; }
.bg-ink .feature .f-ic { background: rgba(255,255,255,.07); color: var(--gold-300); }
.bg-ink .feature p { color: #b6c1da; }
.bg-ink .feature h4 { color: #fff; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat b { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-300); display: block; line-height: 1; }
.stat span { color: #aeb9d4; font-size: .92rem; margin-top: .5rem; display: block; letter-spacing: .02em; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.1); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.media-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3.4;
  background: linear-gradient(150deg, var(--ink-700), var(--ink-900));
  box-shadow: var(--sh-lg); }
.media-frame.portrait { aspect-ratio: 3.4 / 4; }
.media-frame .mf-photo { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.media-frame::after { content: ""; position: absolute; inset: 0;
  background: url("../img/pattern.svg") center/300px; opacity: .12; }
.media-frame .mf-badge { position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  background: rgba(8,20,45,.7); backdrop-filter: blur(6px); border: 1px solid rgba(196,160,82,.3);
  border-radius: var(--r); padding: .9rem 1.1rem; color: #fff; }
.media-frame .mf-badge b { font-family: var(--display); font-size: 1.5rem; color: var(--gold-300); }
.media-frame .mf-badge span { display: block; font-size: .8rem; color: #c7d1e8; }
.media-frame .mf-skyline { position: absolute; left:0; right:0; bottom:0; color: rgba(0,0,0,.35); }
.checklist { display: grid; gap: .85rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text); font-weight: 500; }
.checklist li svg { width: 22px; height: 22px; color: var(--emerald); flex-shrink: 0; margin-top: 1px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .s-num { font-family: var(--display); font-size: 2.6rem; color: var(--gold); opacity: .55; line-height: 1; }
.step h4 { margin: .6rem 0 .4rem; }
.step p { font-size: .94rem; }
.step::before { content: ""; position: absolute; top: 1.55rem; left: 3.2rem; right: -1.4rem; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 7px, transparent 7px 14px); opacity: .4; }
.step:last-child::before { display: none; }

/* ============================================================
   PACKAGES
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-bottom: 2rem; }
.filters .f-label { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: .3rem; }
.chip {
  padding: .5rem 1.05rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600;
  background: var(--paper); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line);
  transition: .25s var(--ease);
}
.chip:hover { box-shadow: inset 0 0 0 1.5px var(--gold); }
.chip.active { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.chip .count { opacity: .55; font-weight: 600; margin-left: .15rem; }

.room-toggle { margin-left: auto; display: inline-flex; background: var(--sand); border-radius: var(--r-pill); padding: .25rem; gap: .15rem; }
.room-toggle button { padding: .42rem .9rem; border-radius: var(--r-pill); font-size: .82rem; font-weight: 700; color: var(--muted); transition: .2s; }
.room-toggle button.active { background: var(--paper); color: var(--ink); box-shadow: var(--sh-sm); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.pkg-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.pkg-card.is-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--sh); }

.pkg-top { padding: 1.25rem 1.35rem 1rem; border-bottom: 1px solid var(--line-2); position: relative;
  background: linear-gradient(180deg, #fff, var(--cream)); }
.pkg-airline { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700; color: #fff;
  padding: .3rem .7rem; border-radius: var(--r-pill); letter-spacing: .02em; }
.pkg-airline::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-300); }
.pkg-badges { position: absolute; top: 1.1rem; right: 1.1rem; display: flex; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.tagpill { font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .26rem .6rem; border-radius: var(--r-pill); }
.tagpill.gold { background: linear-gradient(135deg, var(--gold-300), var(--gold)); color: var(--ink); }
.tagpill.green { background: rgba(15,107,79,.12); color: var(--emerald); }
.tagpill.ink { background: var(--ink); color: #fff; }
.pkg-name { font-family: var(--display); font-size: 1.32rem; color: var(--ink); margin-top: .8rem; line-height: 1.15; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; margin-top: .6rem; font-size: .82rem; color: var(--muted); }
.pkg-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.pkg-meta svg { width: 14px; height: 14px; color: var(--gold-600); }

.pkg-hotels { padding: 1.1rem 1.35rem; display: grid; gap: .9rem; }
.hotel-row { display: flex; gap: .75rem; align-items: flex-start; }
.hotel-row .h-pin { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; font-size: .66rem; font-weight: 800; letter-spacing: .04em; }
.hotel-row .h-pin.makkah { background: var(--ink); color: var(--gold-300); }
.hotel-row .h-pin.madina { background: var(--emerald); color: #eafff6; }
.hotel-row .h-info b { display: block; font-size: .96rem; color: var(--text); font-weight: 700; line-height: 1.2; }
.hotel-row .h-info span { font-size: .82rem; color: var(--muted); }
.hotel-row .h-dist { margin-left: auto; text-align: right; font-size: .76rem; color: var(--gold-600); font-weight: 700; white-space: nowrap; }

.pkg-prices { padding: 0 1.35rem 1.1rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.price-cell { display: flex; justify-content: space-between; align-items: baseline; gap: .4rem;
  padding: .6rem .75rem; border-radius: var(--r-sm); background: var(--cream); transition: .25s; }
.price-cell.hot { background: var(--ink); }
.price-cell.hot .pc-label { color: var(--gold-300); }
.price-cell.hot .pc-val { color: #fff; }
.price-cell .pc-label { font-size: .76rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.price-cell .pc-val { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink); white-space: nowrap; font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; }
.m-price-table td:last-child, .hc-price b, .stat b { font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; }
.price-cell .pc-val small { font-family: var(--body); font-size: .64rem; font-weight: 700; color: var(--muted); }

.pkg-foot { margin-top: auto; padding: 1.05rem 1.35rem 1.35rem; display: flex; gap: .6rem; border-top: 1px solid var(--line-2); }
.pkg-foot .btn { flex: 1; }

/* Group header (airline section) */
.pkg-group-head { display: flex; align-items: center; gap: 1rem; margin: 2.6rem 0 1.4rem; }
.pkg-group-head:first-of-type { margin-top: 0; }
.pkg-group-head .gh-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.pkg-group-head .gh-icon svg { width: 22px; height: 22px; }
.hc-route svg, .m-route svg { width: 1em; height: 1em; vertical-align: -.12em; color: var(--gold-300); }
.pkg-group-head h3 { color: var(--ink); }
.pkg-group-head p { font-size: .9rem; margin-top: .1rem; }
.pkg-group-head .gh-line { flex: 1; height: 1px; background: var(--line); }

.empty-state { text-align: center; padding: 3rem; color: var(--muted); background: var(--cream); border-radius: var(--r-lg); display: none; }

/* ---------- Price range band ---------- */
.range-band { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.6rem; text-align: center; }
.rb-item { display: flex; flex-direction: column; align-items: center; padding: .3rem 1rem; }
.rb-item b { font-family: var(--display); font-size: clamp(1.25rem, 2.3vw, 1.85rem); color: var(--gold-300); line-height: 1.1; font-variant-numeric: tabular-nums; }
.rb-item small { color: #aeb9d4; font-size: .8rem; margin-top: .15rem; }
.rb-item span { color: #8ea0c6; font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; margin-top: .35rem; }
.rb-item + .rb-item { border-left: 1px solid rgba(255,255,255,.13); }

/* ---------- Package tier cards ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: stretch; }
.tier-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--sh-sm); position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tier-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.tier-card.is-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--sh); }
.tier-badge { position: absolute; top: -11px; left: 1.5rem; background: linear-gradient(135deg, var(--gold-300), var(--gold)); color: var(--ink);
  font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--r-pill); box-shadow: var(--sh-sm); }
.tier-top h3 { font-size: 1.5rem; margin-top: .3rem; }
.tier-tag { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.tier-price { display: flex; align-items: baseline; gap: .35rem; margin-top: .9rem; }
.tier-price > span { font-size: .82rem; color: var(--muted); }
.tier-price b { font-family: var(--display); font-size: 1.95rem; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1; }
.tier-price small { font-size: .78rem; color: var(--muted); font-family: var(--body); }
.tier-blurb { font-size: .9rem; color: var(--muted); margin: 1rem 0 1.1rem; border-top: 1px solid var(--line-2); padding-top: 1.1rem; }
.tier-hotels { display: grid; gap: .8rem; }
.th-row { display: flex; gap: .7rem; align-items: flex-start; }
.th-row .th-label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .1rem; }
.th-row b { font-size: .9rem; color: var(--text); line-height: 1.3; font-weight: 600; }
.pin { width: 34px; height: 26px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center; font-size: .6rem; font-weight: 800; letter-spacing: .03em; }
.pin.mak { background: var(--ink); color: var(--gold-300); }
.pin.mad { background: var(--emerald); color: #eafff6; }
.tier-rooms { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1.1rem 0 1.3rem; }
.tier-rooms span { font-size: .72rem; font-weight: 700; color: var(--gold-600); background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .25rem .6rem; }
.tier-card .btn { margin-top: auto; }

/* ---------- Hotels list ---------- */
.hotels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.hotel-col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.7rem; box-shadow: var(--sh-sm); }
.hc-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.hc-head h3 { font-size: 1.3rem; }
.hotel-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .72rem 0; border-bottom: 1px solid var(--line-2); }
.hotel-list li:last-child { border-bottom: 0; }
.hl-name { font-weight: 600; color: var(--text); font-size: .98rem; }
.hl-dist { font-size: .8rem; color: var(--gold-600); font-weight: 700; text-align: right; white-space: nowrap; flex-shrink: 0; }
.hotels-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 1.6rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.gallery figure { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3.2; box-shadow: var(--sh); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 1.5rem 1.3rem 1.2rem; color: #fff;
  background: linear-gradient(0deg, rgba(7,18,42,.9), rgba(7,18,42,.2) 70%, transparent);
  font-family: var(--display); font-size: 1.3rem; line-height: 1.15; }
.gallery figcaption span { display: block; font-family: var(--body); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-300); font-weight: 700; margin-bottom: .25rem; }

/* ---------- Ziyarat trip cards (Iraq & Iran) ---------- */
.trips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trip-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); display: flex; flex-direction: column; }
.trip-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.trip-photo { position: relative; aspect-ratio: 3 / 2; background-size: cover; background-position: center;
  background-color: var(--ink-700); }
.trip-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,18,42,.45), transparent 45%); }
.trip-country { position: absolute; top: .8rem; left: .8rem; z-index: 1; background: rgba(8,20,45,.72); color: var(--gold-300);
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .32rem .7rem; border-radius: var(--r-pill);
  backdrop-filter: blur(4px); display: inline-flex; align-items: center; gap: .4rem; }
.trip-body { padding: 1.15rem 1.3rem 1.4rem; }
.trip-body h4 { font-size: 1.22rem; margin-bottom: .2rem; }
.trip-city { font-size: .84rem; color: var(--gold-600); font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; margin-bottom: .55rem; }
.trip-city svg { width: 14px; height: 14px; }
.trip-body p { font-size: .92rem; }

/* ---------- Itinerary timeline ---------- */
.timeline { max-width: 760px; margin-inline: auto; }
.tl-item { display: flex; gap: 1.3rem; position: relative; padding-bottom: 1.9rem; }
.tl-item::before { content: ""; position: absolute; left: 21px; top: 46px; bottom: -2px; width: 2px;
  background: repeating-linear-gradient(var(--gold) 0 6px, transparent 6px 13px); opacity: .55; }
.tl-item:last-child::before { display: none; }
.tl-num { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  background: var(--paper); box-shadow: inset 0 0 0 2px var(--gold), var(--sh-sm); z-index: 1; }
.tl-body { padding-top: .35rem; }
.tl-body h4 { font-size: 1.16rem; margin-bottom: .3rem; }
.tl-body p { font-size: .95rem; }

/* ---------- Document checklist card ---------- */
.doc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.8rem; box-shadow: var(--sh); }
.doc-card h4 { font-family: var(--body); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-600); margin-bottom: 1.1rem; }
.doc-card .checklist li { font-size: .98rem; }
.doc-note { display: flex; gap: .6rem; align-items: flex-start; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted); }
.doc-note svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 1px; }

/* ---------- Footer logo (no plate — blends on light footer) ---------- */
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 84px; width: auto; display: block; }

/* ---------- Testimonials ---------- */
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; height: 100%; }
.tcard .stars { color: var(--gold); display: flex; gap: .15rem; margin-bottom: .9rem; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard blockquote { font-family: var(--display); font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-weight: 500; }
.tcard .who { display: flex; align-items: center; gap: .75rem; margin-top: 1.3rem; }
.tcard .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--ink), var(--ink-700)); color: var(--gold-300);
  display: grid; place-items: center; font-weight: 800; font-family: var(--display); flex-shrink: 0; }
.tcard .who b { font-size: .95rem; color: var(--text); }
.tcard .who span { font-size: .82rem; color: var(--muted); display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; gap: 1rem; padding: 1.3rem 0; font-weight: 700; font-size: 1.08rem; color: var(--ink); font-family: var(--display); }
.faq-q .fq-ic { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: var(--sand); color: var(--gold-600); transition: .3s var(--ease); }
.faq-q .fq-ic svg { width: 16px; height: 16px; }
.faq-item.open .fq-ic { background: var(--ink); color: var(--gold-300); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: 1.3rem; color: var(--muted); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--ink-700), var(--ink) 55%, var(--ink-900)); color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem); text-align: center; box-shadow: var(--sh-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: url("../img/pattern.svg") center/300px; opacity: .1; }
.cta-band::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(196,160,82,.4), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #c7d1e8; max-width: 50ch; margin: 1rem auto 1.8rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner { position: relative; isolation: isolate; color: #eaf0ff; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem,5vw,4rem);
  background: radial-gradient(120% 120% at 85% -20%, rgba(196,160,82,.22), transparent 55%), linear-gradient(180deg, var(--ink-800), var(--ink)); overflow: hidden; }
.page-banner::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .1; background: url("../img/pattern.svg") 360px; background-size: 360px; -webkit-mask-image: linear-gradient(180deg,#000,transparent); mask-image: linear-gradient(180deg,#000,transparent); }
.page-banner h1 { color: #fff; max-width: 16ch; }
.page-banner .pb-lead { color: #c5cfe6; font-size: 1.12rem; max-width: 56ch; margin-top: 1rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: #9fabc9; margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { opacity: .5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; box-shadow: var(--sh-sm); transition: .3s var(--ease); }
.info-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.info-card .ic-ic { width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(150deg, var(--ink), var(--ink-700)); color: var(--gold-300); }
.info-card .ic-ic svg { width: 23px; height: 23px; }
.info-card h4 { margin-bottom: .25rem; }
.info-card a, .info-card p { color: var(--muted); font-size: .98rem; }
.info-card a:hover { color: var(--gold-600); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--sh); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--cream);
  font: inherit; color: var(--text); transition: .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(196,160,82,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Floating WhatsApp ---------- */
.fab-wa { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 70; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); }
.fab-wa svg { width: 30px; height: 30px; color: #fff; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,18,42,.62); backdrop-filter: blur(4px); animation: fade .3s var(--ease); }
.modal-dialog { position: relative; width: min(600px, 100%); max-height: 90vh; overflow-y: auto; background: var(--paper);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); animation: pop .35s var(--ease); }
.modal-head { padding: 1.5rem 1.6rem 1.2rem; background: linear-gradient(135deg, var(--ink-700), var(--ink)); color: #fff; position: relative; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.modal-head .pkg-airline { margin-bottom: .6rem; }
.modal-head h3 { color: #fff; }
.modal-head .m-route { color: #c5cfe6; font-size: .92rem; margin-top: .3rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; transition: .2s; }
.modal-close:hover { background: rgba(255,255,255,.25); }
.modal-body { padding: 1.5rem 1.6rem; }
.modal-body .m-sec { margin-bottom: 1.4rem; }
.modal-body .m-sec h4 { font-family: var(--body); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-600); margin-bottom: .7rem; }
.m-price-table { width: 100%; border-collapse: collapse; }
.m-price-table td { padding: .7rem .4rem; border-bottom: 1px solid var(--line-2); }
.m-price-table td:first-child { color: var(--muted); font-weight: 600; }
.m-price-table td:last-child { text-align: right; font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.m-dates { display: flex; flex-wrap: wrap; gap: .5rem; }
.m-dates span { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-pill); padding: .4rem .85rem; font-size: .85rem; font-weight: 600; color: var(--ink); }
.modal-foot { padding: 1.2rem 1.6rem 1.6rem; display: flex; gap: .7rem; position: sticky; bottom: 0; background: var(--paper); }
.modal-foot .btn { flex: 1; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }

/* ---------- Footer (light — logo blends, no box) ---------- */
.site-footer { background: linear-gradient(180deg, #f8f3e9, var(--sand)); color: var(--muted); padding-top: clamp(3rem, 6vw, 4.5rem); position: relative; border-top: 1px solid rgba(196,160,82,.3); }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.site-footer::after { content: ""; position: absolute; inset: 0; background: url("../img/pattern.svg") center/300px; opacity: .04; pointer-events: none; }
.site-footer > * { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: .94rem; max-width: 34ch; color: var(--muted); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: var(--paper); box-shadow: var(--sh-sm); display: grid; place-items: center; color: var(--ink); transition: .25s; }
.footer-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); box-shadow: var(--sh); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h5 { color: var(--ink); font-family: var(--display); font-size: 1.1rem; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .94rem; color: var(--muted); transition: .2s; display: inline-flex; align-items: center; gap: .5rem; }
.footer-col a:hover { color: var(--gold-600); }
.footer-col a svg { color: var(--gold-600); }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; font-size: .94rem; margin-bottom: .8rem; color: var(--muted); }
.footer-contact a:hover { color: var(--gold-600); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-600); }
.footer-note { font-size: .8rem; color: #8a7f63; background: rgba(11,29,63,.05); padding: 1rem 0; position: relative; z-index: 1; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .btn-gold::after, .fab-wa::after { animation: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Mobile menu base (hidden desktop) ---------- */
.mobile-panel { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .trips { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
}

@media (min-width: 861px) { .hero-arrow { display: grid; } }

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: grid; }
  .gallery { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(odd) { border-left: 0; }

  /* Full-screen mobile menu */
  .mobile-panel { display: block; position: fixed; inset: 0; z-index: 55; background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
    padding: 6rem 1.6rem 2rem; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; }
  body.nav-open .mobile-panel { transform: none; }
  body.nav-open { overflow: hidden; }
  .mobile-panel nav { display: grid; gap: .3rem; }
  .mobile-panel nav a { color: #e7ecfa; font-family: var(--display); font-size: 1.6rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; }
  .mobile-panel nav a svg { width: 20px; color: var(--gold-300); }
  .mobile-panel .mp-cta { margin-top: 1.8rem; display: grid; gap: .7rem; }
  .mobile-panel .mp-contact { margin-top: 2rem; color: #aeb9d4; font-size: .92rem; display: grid; gap: .6rem; }
  .mobile-panel .mp-contact a { color: var(--gold-300); font-weight: 700; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cols-2 { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .trips { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .rb-item + .rb-item { border-left: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-trust { gap: .8rem 1.2rem; }
  .room-toggle { margin-left: 0; width: 100%; justify-content: space-between; }
  .filters { gap: .5rem; }
  .pkg-group-head .gh-line { display: none; }
  .fab-wa { width: 52px; height: 52px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .fab-wa, .footer-social, .hero-cta, .nav-toggle { display: none !important; }
  body { font-size: 12px; }
  .pkg-card, .svc-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
