/* WAHY Travels — site chrome: tokens, base, header, footer, buttons.
   Values are taken directly from the Claude Design source (Umrah Visa.dc.html). */

:root {
  --ink: #121212;
  --ink-2: #2b2b2b;
  --black: #0a0a0a;
  --paper: #fbfaf8;
  --sand: #f2f0eb;
  --gold: #c9a24a;
  --gold-tint: #f0e6cf;
  --gold-wash: #f6f1e6;
  --line: #e8e6e0;
  --line-2: #d8d5cd;
  --line-3: #dedad2;
  --line-4: #f0eee8;
  --muted: #5a5a5a;
  --muted-2: #8c8c8c;
  --muted-3: #a8a8a8;
  --whatsapp: #25d366;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--muted); }
::selection { background: var(--gold); color: #fff; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.wrap { max-width: 1280px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* Type ------------------------------------------------------------------- */
.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.03;
  letter-spacing: -.02em;
  margin: 0;
}
.h1 em { font-style: italic; color: inherit; }
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0;
  color: var(--ink);
}
.h2 em { font-style: italic; color: inherit; }
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.lede { font-size: 16px; line-height: 1.75; color: var(--muted); }
.on-dark { color: #fff; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn svg { transition: transform .3s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(5px); }
.btn-dark { background: var(--ink); color: #fff; padding: 17px 30px; }
.btn-dark:hover { background: #3a3a3a; color: #fff; transform: translateY(-2px); }
.btn-gold { background: #fff; color: var(--ink); padding: 17px 30px; }
.btn-gold:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-line { border: 1px solid var(--line-2); color: var(--ink); padding: 16px 28px; background: transparent; }
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-lite { border: 1px solid rgba(255,255,255,.4); color: #fff; padding: 16px 28px; background: transparent; }
.btn-lite:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 13px 22px; font-size: 11.5px; }

/* Floating contact ------------------------------------------------------- */
.fabs {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.4);
  transition: transform .3s;
  position: relative;
}
.fab:hover { transform: translateY(-3px) scale(1.06); }
.fab-wa { background: var(--whatsapp); color: #fff; }
.fab-call { background: var(--ink); color: var(--gold); }
.fab-mail { background: var(--gold); color: var(--ink); }
.fab-wa:hover { color: #fff; }
.fab-call:hover { color: var(--gold); }
.fab-mail:hover { color: var(--ink); }
.fab .tp {
  position: absolute;
  right: 62px; top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: #fff;
  padding: 7px 13px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}
.fab:hover .tp, .fab:focus-visible .tp { opacity: 1; transform: translateY(-50%); }

/* Notice bar ------------------------------------------------------------- */
.notice { background: #111; color: rgba(255,255,255,.8); font-size: 11.5px; }
.notice .wrap {
  padding-top: 9px; padding-bottom: 9px;
  display: flex; align-items: center; justify-content: center;
  gap: 9px; text-align: center; flex-wrap: wrap;
}
.notice svg { color: var(--gold); flex-shrink: 0; }
.notice strong { font-weight: 600; color: #fff; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.hdr-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0;
}
.hdr-logo { display: flex; align-items: center; padding-right: 30px; flex-shrink: 0; }
.hdr-logo img { height: 118px; width: auto; object-fit: contain; display: block; }
.hdr-col { display: flex; flex-direction: column; min-width: 0; }

.hdr-top {
  display: flex; align-items: center; gap: 24px;
  padding-top: 10px; padding-bottom: 10px;
  font-size: 11.5px; letter-spacing: .1em;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
}
.office {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
  gap: 5px; white-space: nowrap; min-width: 0;
}
.office-label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); font-weight: 600; margin-right: 8px;
}
.flagbtn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid transparent;
  color: #3a3a3a;
  font-family: inherit;
  font-size: 10.5px; letter-spacing: .16em; font-weight: 600;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  text-decoration: none;
}
.flagbtn svg { border: 1px solid rgba(0,0,0,.14); display: block; opacity: .85; transition: opacity .25s; flex-shrink: 0; }
.flagbtn:hover { color: var(--ink); border-color: #dcd8d0; }
.flagbtn:hover svg { opacity: 1; }
.flagbtn.on { color: var(--ink); background: var(--gold-tint); border-color: var(--gold); }
.flagbtn.on svg { opacity: 1; border-color: rgba(17,17,17,.25); }

.hdr-side { flex: 0 1 300px; min-width: 0; display: flex; justify-content: flex-end; }
.util { align-items: center; gap: 18px; color: var(--ink); font-weight: 500; white-space: nowrap; }
.util a { color: inherit; display: inline-flex; align-items: center; gap: 8px; }
.util svg { color: var(--gold); flex-shrink: 0; }

.hdr-bottom { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.hdr-nav {
  display: flex; align-items: center; gap: 20px;
  flex: 1; justify-content: center; min-width: 0;
}
.nl {
  position: relative;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: #3a3a3a;
  padding: 24px 0;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex; align-items: center;
}
.nl::after {
  content: "";
  position: absolute; left: 0; bottom: 20px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nl:hover { color: var(--ink); }
.nl:hover::after, .nl.on::after { transform: scaleX(1); }
.nl.on { color: var(--ink); }
.nl svg { margin-left: 3px; }

.nav-item { position: relative; display: flex; align-items: center; }
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 210px;
  background: #fff;
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,.28);
  padding: 6px 0;
  opacity: 0; visibility: hidden;
  transition: .28s;
  z-index: 80;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 22px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #3a3a3a; white-space: nowrap;
  transition: background .22s, color .22s;
}
.dropdown a:hover { background: var(--gold-wash); color: var(--ink); }

.nav-toggle { display: none; }

@media (max-width: 1200px) {
  .hdr-side { flex: 0 0 auto; }
  .hdr-nav { gap: 14px; font-size: 11px; }
  .hdr-nav .nl { font-size: 11px; letter-spacing: .06em; }
  .util { gap: 12px; font-size: 11px; }
}
@media (max-width: 980px) {
  .hdr-nav { flex-wrap: wrap; row-gap: 0; justify-content: flex-start; }
  .hdr-nav .nl { padding-top: 10px; padding-bottom: 10px; }
  .nl::after { bottom: 6px; }
}

/* Small screens: the design stops at 980px, so below 760px the header
   collapses to a compact bar with a toggle for the navigation. */
@media (max-width: 760px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hdr-grid { grid-template-columns: 1fr; }
  .hdr-logo { padding: 10px 0; justify-content: space-between; }
  .hdr-logo img { height: 64px; }
  .hdr-top { border-bottom: 0; padding-top: 0; padding-bottom: 6px; min-height: 0; }
  .util { display: none; }
  .office { justify-content: flex-start; }
  .hdr-bottom { min-height: 0; flex-direction: column; align-items: stretch; gap: 0; }
  .hdr-nav {
    flex-direction: column; align-items: stretch;
    border-top: 1px solid var(--line);
    padding: 6px 0 10px;
    display: none;
  }
  .site-header.nav-open .hdr-nav { display: flex; }
  .hdr-nav .nl { padding: 10px 0; }
  .nl::after { display: none; }
  .nav-item { flex-direction: column; align-items: stretch; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border-top: 0; padding: 0 0 6px 16px; min-width: 0;
  }
  .dropdown a { padding: 8px 0; }
  .hdr-side.hdr-cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line-2); background: #fff; color: var(--ink);
    cursor: pointer;
    position: absolute; right: 20px; top: 20px;
  }
  .site-header { position: relative; }
  .fabs { right: 14px; bottom: 14px; gap: 8px; }
  .fab { width: 46px; height: 46px; }
}

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--black); color: rgba(255,255,255,.68); padding: 60px 0 30px; }
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 44px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-logo { width: 78px; height: 78px; object-fit: contain; background: #fff; padding: 6px; margin-bottom: 18px; }
.foot-blurb { font-size: 13.5px; line-height: 1.8; margin: 0; max-width: 320px; font-weight: 300; }
.foot-head { margin-bottom: 16px; color: #fff; }
.foot-links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; font-weight: 300; }
.foot-links a { color: inherit; display: inline-flex; align-items: center; gap: 9px; }
.foot-links a:hover { color: #fff; }
.foot-desk { text-align: right; }
.foot-desk .foot-links { align-items: flex-end; margin-bottom: 20px; }
.foot-desk svg { color: var(--gold); }
.foot-desk svg.wa { color: var(--whatsapp); }
.badges { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.badge { border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 6px 11px; font-size: 10px; letter-spacing: .16em; }
.foot-base {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 11.5px; color: rgba(255,255,255,.45); font-weight: 300;
}
.foot-base a { color: inherit; }
.foot-base a:hover { color: #fff; }
.foot-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-base strong { font-weight: 500; color: rgba(255,255,255,.7); }
@media (max-width: 760px) {
  .foot-desk { text-align: left; }
  .foot-desk .foot-links { align-items: flex-start; }
  .badges { justify-content: flex-start; }
}

/* Scroll reveal ---------------------------------------------------------- */
.js-rv [data-rv] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js-rv [data-rv].in { opacity: 1; transform: none; }
.js-rv [data-rv="1"] { transition-delay: .09s; }
.js-rv [data-rv="2"] { transition-delay: .18s; }
.js-rv [data-rv="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-rv [data-rv] { opacity: 1; transform: none; transition: none; }
  [data-plx] { transform: none !important; }
  .btn, .fab, .step, .flagcard { transition: none; }
}

/* Cormorant Garamond defaults to old-style (text) figures, which makes
   numbers like "12" read as "I2" and sit unevenly. Force lining figures
   everywhere the display face carries numbers, for a consistent look. */
.h1, .h2, .h3,
.price, .stat, .stat-n, .spot-stats b, .tcard-price, .tier-p b, .tier-n,
.pstat .num, .num, .about-badge .num, .step-n, .pstep-n, .occ-n,
.d-name, .dest-name, .hero-title, .season-t {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

/* Homepage-style footer (.hf) — shared by index.html and the generated
   content pages, all of which use this footer markup. */
/* Footer (homepage variant) ------------------------------------------------ */
.hf { background: var(--black); color: rgba(255,255,255,.7); padding: 72px 0 36px; }
.hf a { transition: color .25s; }
.hf a:hover { color: var(--gold); }
.hf-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.hf-logo { width: 88px; height: 88px; object-fit: contain; background: #fff; padding: 6px; border-radius: 4px; margin-bottom: 20px; }
.hf-brand p { font-size: 14px; line-height: 1.75; margin: 0 0 22px; max-width: 340px; }
.socials { display: flex; gap: 10px; }
.soc { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); color: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all .3s; }
/* Selector must outweigh `.hf a:hover` (which forces links gold) so the icon
   turns dark on the gold circle instead of vanishing gold-on-gold. */
.socials .soc:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-3px); }
.hf-col .eyebrow { margin-bottom: 18px; }
.hf-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.hf-links a { color: inherit; }
.hf-trust { padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 36px; align-items: center; }
.hf-k { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.hf-t { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 14px; }
.badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-start; }
.badge { border: 1px solid rgba(201,162,74,.4); color: var(--gold-pale); padding: 7px 13px; font-size: 10.5px; letter-spacing: .16em; font-weight: 600; border-radius: 2px; }
.pay { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.pay span { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff; padding: 8px 14px; font-size: 11px; letter-spacing: .1em; font-weight: 700; border-radius: 3px; }
.ssl { display: flex; align-items: center; gap: 9px; font-size: 12px; color: rgba(255,255,255,.55); }
.ssl svg { color: var(--gold); }
.hf-talk { text-align: right; }
.hf-talk .hf-links { align-items: flex-end; gap: 9px; font-size: 13.5px; }
.hf-talk a { color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 10px; }
.hf-talk svg { color: var(--gold); }
.hf-talk svg.wa { color: var(--whatsapp); }
.hf-base { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(255,255,255,.5); }
.hf-base a { color: inherit; }
.hf-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.hf-accr { display: flex; gap: 12px; letter-spacing: .14em; }
.hf-accr .sep { opacity: .4; }
.hf-by { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); text-align: center; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hf-by a { color: var(--gold); font-weight: 600; }
@media (max-width: 900px) { .hf-grid { grid-template-columns: 1fr 1fr 1fr; } .hf-brand { grid-column: 1 / -1; } }
@media (max-width: 760px) { .hf-talk { text-align: left; } .hf-talk .hf-links { align-items: flex-start; } }
@media (max-width: 560px) { .hf-grid { grid-template-columns: 1fr 1fr; } .hf { padding: 56px 0 28px; } }


/* Cookie consent — banner + preferences modal (injected by site.js) ------- */
.cc-banner { position: fixed; left:0; right:0; bottom:0; z-index:95; background:var(--ink); color:rgba(255,255,255,.85); border-top:2px solid var(--gold); box-shadow:0 -12px 30px -14px rgba(0,0,0,.5); transform:translateY(0); transition:transform .35s var(--ease), opacity .35s var(--ease); }
.cc-banner.hide { transform:translateY(110%); opacity:0; pointer-events:none; }
.cc-banner .wrap { display:flex; align-items:center; justify-content:space-between; gap:14px 28px; flex-wrap:wrap; padding-top:15px; padding-bottom:15px; }
.cc-text { font-size:13px; line-height:1.6; max-width:820px; }
.cc-text strong { color:#fff; font-weight:600; }
.cc-text a { color:var(--gold); border-bottom:1px solid rgba(201,162,74,.5); }
.cc-text a:hover { color:#fff; border-bottom-color:#fff; }
.cc-actions { display:flex; gap:10px; flex-shrink:0; flex-wrap:wrap; }
.cc-btn { font-family:inherit; font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; padding:11px 18px; cursor:pointer; border-radius:2px; border:1px solid transparent; transition:background .25s,color .25s,border-color .25s; white-space:nowrap; }
.cc-gold { background:var(--gold); color:var(--ink); }
.cc-gold:hover { background:#e0bb60; }
.cc-navy { background:var(--ink); color:#fff; }
.cc-navy:hover { background:#3a3a3a; }
.cc-ghost { background:transparent; color:#fff; border-color:rgba(255,255,255,.4); }
.cc-ghost:hover { background:rgba(255,255,255,.12); border-color:#fff; }
@media (max-width:620px){ .cc-banner .wrap{flex-direction:column; align-items:stretch;} .cc-actions{justify-content:flex-end;} }

.cc-modal { position:fixed; inset:0; z-index:100; display:flex; align-items:center; justify-content:center; padding:20px; background:rgba(10,10,10,.6); opacity:0; visibility:hidden; transition:opacity .25s, visibility .25s; }
.cc-modal.open { opacity:1; visibility:visible; }
.cc-dialog { background:#fff; color:var(--ink); width:100%; max-width:560px; max-height:90vh; overflow-y:auto; border-radius:6px; border-top:3px solid var(--gold); box-shadow:0 40px 80px -20px rgba(0,0,0,.5); padding:28px 30px; transform:translateY(12px); transition:transform .25s; }
.cc-modal.open .cc-dialog { transform:none; }
.cc-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.cc-head h2 { font-family:var(--font-display); font-weight:500; font-size:26px; margin:0; color:var(--ink); }
.cc-close { background:transparent; border:none; font-size:26px; line-height:1; color:var(--muted-2); cursor:pointer; padding:2px 8px; }
.cc-close:hover { color:var(--ink); }
.cc-dialog > p { font-size:14px; line-height:1.7; color:var(--muted); margin:0 0 20px; }
.cc-cat { border:1px solid var(--line); border-radius:4px; padding:18px; margin-bottom:14px; }
.cc-cat-head { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.cc-cat-t { font-size:15px; font-weight:600; color:var(--ink); }
.cc-cat p { font-size:13px; line-height:1.65; color:var(--muted); margin:0; }
.cc-cat p em { font-style:normal; color:var(--ink-2); }
.cc-always { font-size:11px; letter-spacing:.12em; text-transform:uppercase; font-weight:700; color:#2e7d32; white-space:nowrap; }
.cc-switch { position:relative; display:inline-block; width:46px; height:26px; flex-shrink:0; }
.cc-switch input { position:absolute; opacity:0; width:0; height:0; }
.cc-slider { position:absolute; inset:0; background:#cfcabe; border-radius:26px; transition:background .25s; cursor:pointer; }
.cc-slider::before { content:""; position:absolute; height:20px; width:20px; left:3px; top:3px; background:#fff; border-radius:50%; transition:transform .25s; box-shadow:0 1px 3px rgba(0,0,0,.3); }
.cc-switch input:checked + .cc-slider { background:var(--gold); }
.cc-switch input:checked + .cc-slider::before { transform:translateX(20px); }
.cc-switch input:focus-visible + .cc-slider { outline:2px solid var(--gold); outline-offset:2px; }
.cc-modal-actions { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; margin-top:22px; }
.cc-modal-actions .cc-ghost { color:var(--ink); border-color:var(--line-2); }
.cc-modal-actions .cc-ghost:hover { background:var(--ink); color:#fff; border-color:var(--ink); }
@media (max-width:560px){ .cc-modal-actions{ justify-content:stretch; } .cc-modal-actions .cc-btn{ flex:1 1 auto; text-align:center; } .cc-dialog{ padding:24px 20px; } }
@media (prefers-reduced-motion: reduce){ .cc-banner,.cc-modal,.cc-dialog{ transition:none; } }

/* Struck original price (early-bird), shared by homepage + hajj page */
.tier-p .was { text-decoration: line-through; color: var(--muted-2); font-weight: 400; font-size: 15px; margin-right: 8px; }

/* Package inclusion list + full-width CTA (Silver/Gold/Platinum cards) */
.pkg-incs { list-style: none; padding: 0; margin: 4px 0 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-incs li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.pkg-incs svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pkg-cta { width: 100%; justify-content: center; margin-top: auto; }

/* Center the main nav across the full header width on desktop (the logo sits
   in its own grid column, which otherwise pushes the nav right of centre). */
@media (min-width: 1201px) {
  .site-header .hdr-grid { position: relative; }
  .hdr-bottom { justify-content: flex-end; }
  .hdr-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 72px;
    align-items: center;
    flex: 0 1 auto;
  }
  /* Centre the office/flag switcher on the same axis as the nav; the
     contact links (now the only in-flow child) sit at the right edge. */
  .hdr-top { position: static; justify-content: flex-end; }
  .office {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 1 auto;
  }
}
