/* ═══════════════════════════════════════════════════════════
   SILVER SKY TRAVEL — Premium Redesign v3
   Fonts: Syne (headings) + DM Sans (body) + Playfair (italic)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --c-bg:        #fafaf8;
  --c-surface:   #ffffff;
  --c-navy:      #0a1628;
  --c-navy2:     #132340;
  --c-gold:      #c49a3c;
  --c-gold2:     #e0b84a;
  --c-gold-pale: #fdf6e3;
  --c-gold-mid:  #f5d87a;
  --c-ink:       #111827;
  --c-muted:     #64748b;
  --c-faint:     #94a3b8;
  --c-border:    rgba(0,0,0,0.07);
  --c-border-g:  rgba(196,154,60,0.28);

  --sh-xs:  0 1px 4px rgba(0,0,0,0.06);
  --sh-sm:  0 2px 12px rgba(0,0,0,0.08);
  --sh-md:  0 8px 32px rgba(0,0,0,0.10);
  --sh-lg:  0 24px 64px rgba(0,0,0,0.12);

  --r:      14px;
  --r-sm:   8px;
  --r-lg:   24px;
  --r-xl:   36px;
  --ease:   cubic-bezier(.22,.68,0,1.2);
  --t:      0.4s var(--ease);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
::selection { background: var(--c-gold-mid); color: var(--c-navy); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 4px; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor {
  width: 40px; height: 40px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .2s ease, height .2s ease, border-color .2s ease, background .2s ease;
  mix-blend-mode: multiply;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
body.cursor-hover .cursor {
  width: 64px; height: 64px;
  background: rgba(196,154,60,0.10);
  border-color: var(--c-gold2);
}

/* ── PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--c-navy);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-logo img { height: 100px; filter: brightness(0) invert(1); }
.pre-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.pre-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold2));
  border-radius: 2px;
  transition: width .05s linear;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── TYPE HELPERS ──────────────────────────────────────────── */
.sec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
  display: block;
}
.sec-label-light { color: var(--c-gold-mid); }

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.sec-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
}
.light-title { color: #fff; }
.light-title em { color: var(--c-gold-mid); }

.sec-head { text-align: center; margin-bottom: 72px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: var(--c-gold);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 99px;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(196,154,60,.35);
  position: relative; overflow: hidden;
  justify-content: center;
}
.btn-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-110%);
  transition: transform .35s ease;
  border-radius: inherit;
}
.btn-fill:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(196,154,60,.45); }
.btn-fill:hover::after { transform: translateX(0); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.9);
  font-weight: 600; font-size: .93rem; border-radius: 99px;
  transition: var(--t); backdrop-filter: blur(6px);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-ghost-dark svg { width: 15px; height: 15px; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px;
  border: 1.5px solid var(--c-border-g);
  color: var(--c-gold);
  font-weight: 600; font-size: .88rem; border-radius: 99px;
  transition: var(--t);
}
.btn-outline-dark:hover { background: var(--c-gold-pale); border-color: var(--c-gold); }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}
#header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-sm);
}
.hdr-inner {
  max-width: 1240px; margin: 0 auto; padding: 22px 32px;
  display: flex; align-items: center; gap: 48px;
  transition: padding .3s ease;
}
#header.scrolled .hdr-inner { padding-top: 14px; padding-bottom: 14px; }

.hdr-logo { flex-shrink: 0; }
#logoImg {
  /* height: 50px;  */
  width: auto; object-fit: contain;
  /* filter: brightness(0) invert(1); */
  height: 70px;
    filter: brightness(0) invert(1) drop-shadow(1px 1px 4px black);
  transition: filter .3s ease;
}
#header.scrolled #logoImg { filter: none; }

.hdr-nav { display: flex; gap: 36px; margin-left: auto; }
.nav-link {
  font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.8);
  position: relative; transition: color .3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-gold-mid);
  transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
#header.scrolled .nav-link { color: var(--c-muted); }
#header.scrolled .nav-link:hover, #header.scrolled .nav-link.active { color: var(--c-navy); }
#header.scrolled .nav-link::after { background: var(--c-gold); }

.hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  background: var(--c-gold);
  color: #fff; font-weight: 600; font-size: .87rem;
  border-radius: 99px;
  box-shadow: 0 3px 14px rgba(196,154,60,.4);
  transition: var(--t); flex-shrink: 0;
}
.hdr-cta svg { width: 14px; height: 14px; }
.hdr-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,154,60,.5); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  padding: 6px; margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff; border-radius: 2px; transition: var(--t);
}
#header.scrolled .burger span { background: var(--c-navy); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 32px; font-size: 1rem; font-weight: 500;
  color: var(--c-muted); border-bottom: 1px solid var(--c-border);
  transition: color .3s, background .3s;
}
.mobile-nav a:hover { color: var(--c-navy); background: var(--c-gold-pale); }
.mn-cta {
  margin: 16px 32px 20px !important;
  background: var(--c-gold) !important; color: #fff !important;
  border-radius: 99px !important; border: none !important;
  text-align: center; padding: 12px !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Right panel — full-bleed photo */
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,.55) 0%, transparent 60%);
}

/* Floating destination chips */
.dest-chip {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  overflow: hidden;
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  box-shadow: var(--sh-md);
  font-size: .8rem; font-weight: 600; color: var(--c-navy);
  animation: chip-float 6s ease-in-out infinite;
}
.dest-chip img { width: 52px; height: 36px; object-fit: cover; border-radius: 8px; }
.chip-1 { bottom: 28%; right: 6%; animation-delay: 0s; }
.chip-2 { top: 28%; right: 5%; animation-delay: -3s; }
@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-badge-float {
  position: absolute; bottom: 12%; left: 5%;
  background: var(--c-gold);
  border-radius: var(--r);
  padding: 18px 24px;
  color: #fff; text-align: center;
  box-shadow: 0 8px 28px rgba(196,154,60,.45);
  animation: chip-float 5s ease-in-out infinite alternate;
}
.hbf-num { display: block; font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.hbf-lbl { display: block; font-size: .7rem; opacity: .85; margin-top: 4px; letter-spacing: .06em; }

/* Left panel — content */
.hero-content {
  background: var(--c-navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 72px 80px 72px;
  position: relative; z-index: 1;
}
.hero-content::after {
  content: '';
  position: absolute; top: 0; right: -1px;
  width: 80px; height: 100%;
  background: var(--c-navy);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-gold-mid); margin-bottom: 32px;
}
.tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gold);
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(196,154,60,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(196,154,60,0); }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 800; line-height: .98;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 28px;
}
.hero-h1 .line { display: block; }
.hero-h1 .italic-line em {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  color: var(--c-gold-mid);
}
/* Stagger animation on load */
.hero-h1 .line { opacity: 0; transform: translateY(30px); animation: line-in .7s var(--ease) forwards; }
.hero-h1 .line:nth-child(1) { animation-delay: .7s; }
.hero-h1 .line:nth-child(2) { animation-delay: .9s; }
.hero-h1 .line:nth-child(3) { animation-delay: 1.1s; }
@keyframes line-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  color: rgba(255,255,255,.6); font-size: .97rem;
  line-height: 1.9; margin-bottom: 40px;
  opacity: 0; animation: line-in .6s ease 1.3s forwards;
}
.ar-hint {
    font-size: 1.83rem;
    color: rgba(240, 208, 128, .65);
    direction: rtl;
    display: block;
    margin-top: 4px;
    text-align: center;
    font-family: monospace;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0; animation: line-in .6s ease 1.5s forwards;
}

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  opacity: 0; animation: line-in .6s ease 1.7s forwards;
}
.hs { display: flex; flex-direction: column; }
.hs strong { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hs sup { font-size: 1rem; color: var(--c-gold-mid); }
.hs span { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 4px; letter-spacing: .08em; text-transform: uppercase; }
.hs-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); z-index: 5;
}
.scue-track {
  width: 1px; height: 56px;
  background: rgba(255,255,255,.1);
  position: relative; overflow: hidden;
}
.scue-dot {
  position: absolute; top: -100%; left: 0;
  width: 1px; height: 50%;
  background: var(--c-gold-mid);
  animation: scue-scroll 2s ease infinite;
}
@keyframes scue-scroll {
  from { top: -50%; }
  to   { top: 150%; }
}

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--c-gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative; z-index: 1;
}
.ticker-track {
  display: flex; gap: 0;
  animation: ticker-run 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  padding: 0 36px;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap; letter-spacing: .06em;
}
@keyframes ticker-run {
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.sec-services {
  padding: 120px 0;
  background: var(--c-bg);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.svc-card {
  background: var(--c-surface);
  padding: 44px 36px;
  position: relative;
  transition: background .3s ease, transform .3s ease;
  cursor: none;
}
.svc-card:hover { background: var(--c-navy); }

.svc-num {
  font-family: 'Syne', sans-serif;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; color: var(--c-gold);
  margin-bottom: 20px;
}
.svc-card:hover .svc-num { color: rgba(196,154,60,.7); }

.svc-icon { font-size: 2.2rem; margin-bottom: 16px; line-height: 1; }

.svc-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--c-navy); margin-bottom: 10px;
  transition: color .3s;
}
.svc-card:hover h3 { color: #fff; }

.svc-card p {
  font-size: .88rem; color: var(--c-muted); line-height: 1.75;
  transition: color .3s;
}
.svc-card:hover p { color: rgba(255,255,255,.55); }

.svc-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--c-border-g);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--c-gold);
  transition: var(--t); background: transparent;
}
.svc-card:hover .svc-arrow {
  background: var(--c-gold); color: #fff; border-color: var(--c-gold);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════════════════════════
   PACKAGES  (horizontal scroll slider)
══════════════════════════════════════════════════════════════ */
.sec-packages { padding: 120px 0; background: var(--c-surface); }

.pkg-hdr {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
}

.pkg-scroll-container { position: relative; }

.pkg-scroll-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
  padding: 8px 32px 24px;
  -webkit-overflow-scrolling: touch;
}
.pkg-scroll-track::-webkit-scrollbar { display: none; }

.pkg-slide {
  flex: 0 0 310px; scroll-snap-align: start;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.pkg-slide:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-8px);
  border-color: var(--c-border-g);
}

.pkg-photo-wrap {
  position: relative; height: 210px; overflow: hidden;
}
.pkg-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.pkg-slide:hover .pkg-photo-wrap img { transform: scale(1.07); }

.pkg-pill {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 99px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  font-size: .72rem; font-weight: 700;
  color: var(--c-navy); letter-spacing: .06em;
}
.pkg-pill-gold {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold2));
  color: #fff;
}

.pkg-info {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.pkg-info h3 {
  font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--c-navy); margin-bottom: 8px;
}
.pkg-info p {
  display:none;font-size: .85rem; color: var(--c-muted); line-height: 1.7; flex: 1; margin-bottom: 18px;
}

.pkg-btn {
  display: inline-flex; align-items: center;
  padding: 10px 20px; border-radius: 99px;
  border: 1.5px solid var(--c-border-g);
  color: var(--c-gold); font-size: .83rem; font-weight: 600;
  transition: var(--t); align-self: flex-start;
}
.pkg-btn:hover { background: var(--c-gold-pale); border-color: var(--c-gold); }

.pkg-btn-gold {
  background: var(--c-gold); color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(196,154,60,.35);
}
.pkg-btn-gold:hover { background: var(--c-gold2); transform: translateY(-2px); }

.pkg-slide-featured { border-color: var(--c-border-g); }

.pkg-nav {
  display: flex; gap: 10px;
  position: absolute; bottom: 36px; right: 32px;
}
.pkg-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  color: var(--c-muted); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); box-shadow: var(--sh-sm);
  cursor: none;
}
.pkg-nav-btn:hover {
  border-color: var(--c-gold); color: var(--c-gold);
  box-shadow: var(--sh-md); transform: scale(1.08);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.sec-about {
  padding: 120px 0;
  background: var(--c-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

/* Mosaic photo grid */
.about-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 620px;
}
.am-large {
  grid-row: 1 / 3;
  overflow: hidden;
}
.am-large img { width: 100%; height: 100%; object-fit: cover; }

.am-stack {
  display: grid; grid-template-rows: 1fr 1fr; gap: 4px;
}
.am-small { overflow: hidden; }
.am-small img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.am-small:hover img { transform: scale(1.06); }

.am-badge {
  position: absolute; bottom: 32px; left: 32px;
  background: var(--c-navy);
  border-radius: var(--r-xl); padding: 28px 36px;
  box-shadow: var(--sh-lg);
  border: 3px solid var(--c-gold-pale);
}
.amb-inner { text-align: center; }
.amb-inner strong {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--c-gold); display: block; line-height: 1;
}
.amb-inner span {
  font-size: .72rem; color: rgba(255,255,255,.55);
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.5;
}

/* Text side */
.about-text {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-surface);
}
.about-text p {
  font-size: .95rem; color: var(--c-muted); margin-bottom: 16px; line-height: 1.85;
}
.about-ar {
  direction: rtl; text-align: right;
  background: var(--c-gold-pale);
  border: 1px solid var(--c-border-g);
  border-radius: var(--r); padding: 14px 18px;
  font-size: .85rem; color: #7a5c18 !important;
  line-height: 2; margin-top: 8px;
  text-align: center;
    font-family: monospace;
}

.about-checks {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px; margin-top: 8px;
}
.about-checks li {
  font-size: .93rem; color: var(--c-muted);
  display: flex; align-items: center; gap: 12px;
}
.about-checks li::before {
  content: '✓';
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--c-gold-pale); border: 1.5px solid var(--c-border-g);
  color: var(--c-gold); font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════════════════════ */
.sec-partners { padding: 60px 0; background: var(--c-bg); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.sp-label {
  text-align: center; font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-faint); margin-bottom: 32px;
}
.marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.mp {
  flex-shrink: 0;
  margin-right: 20px;
  padding: 16px 28px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  min-width: 160px; transition: var(--t);
}
.mp:hover { border-color: var(--c-border-g); box-shadow: var(--sh-md); transform: translateY(-3px); }
.mp img { height: 60px; width: auto; object-fit: fill; filter: grayscale(1) opacity(.7); transition: filter .3s; aspect-ratio: 5/3;}
.mp:hover img { filter: none; }
.mp-text { font-size: .9rem; font-weight: 700; color: var(--c-faint); letter-spacing: .04em; }
.mp-text:hover { color: var(--c-navy); }

/* ══════════════════════════════════════════════════════════════
   BLOG  (featured + side list)
══════════════════════════════════════════════════════════════ */
.sec-blog { padding: 120px 0; background: var(--c-surface); }
.blog-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

/* Featured card */
.blog-featured {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--c-border);
  transition: var(--t);
}
.blog-featured:hover { box-shadow: var(--sh-lg); border-color: var(--c-border-g); }
.blf-img { position: relative; height: 320px; overflow: hidden; }
.blf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-featured:hover .blf-img img { transform: scale(1.06); }
.blf-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.5), transparent); }
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px; border-radius: 99px;
  background: var(--c-gold); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.blf-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .75rem; color: var(--c-faint); display: flex; gap: 16px; margin-bottom: 12px; }
.blf-body h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--c-navy); margin-bottom: 10px; line-height: 1.3; }
.blf-body p { font-size: .9rem; color: var(--c-muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-cta-link { font-size: .88rem; font-weight: 600; color: var(--c-gold); transition: letter-spacing .3s; }
.blog-featured:hover .blog-cta-link { letter-spacing: .02em; }

/* Side rows */
.blog-side { display: flex; flex-direction: column; gap: 16px; }
.blog-row {
  display: flex; gap: 18px; align-items: center;
  background: var(--c-bg);
  border-radius: var(--r); overflow: hidden;
  border: 1.5px solid var(--c-border);
  transition: var(--t);
}
.blog-row:hover { box-shadow: var(--sh-md); border-color: var(--c-border-g); transform: translateX(4px); }
.blr-img { width: 110px; height: 90px; flex-shrink: 0; overflow: hidden; }
.blr-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-row:hover .blr-img img { transform: scale(1.1); }
.blr-body { padding: 14px 16px 14px 0; flex: 1; }
.blr-body .blog-cat { position: static; display: inline-block; margin-bottom: 6px; }
.blr-body h3 { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; color: var(--c-navy); line-height: 1.35; margin-bottom: 6px; }

/* ══════════════════════════════════════════════════════════════
   BOOKING
══════════════════════════════════════════════════════════════ */
.sec-booking {
  position: relative; overflow: hidden;
  padding: 120px 0;
}
.booking-bg {
  position: absolute; inset: 0;
}
.booking-bg img { width: 100%; height: 100%; object-fit: cover; }
.booking-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.78) 60%, rgba(10,22,40,.92) 100%);
}

.booking-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center;
}

.booking-text .sec-title { margin-bottom: 20px; }
.booking-desc { color: rgba(255,255,255,.6); font-size: .97rem; margin-bottom: 8px; }
.booking-ar { direction: rtl; text-align: right; font-size: .83rem; color: rgba(240,208,128,.55); margin-bottom: 28px; }
.booking-features { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.bf { font-size: .87rem; color: rgba(255,255,255,.6); display: flex; gap: 10px; align-items: center; }
.bf span { color: var(--c-gold-mid); font-weight: 700; }

/* Form */
.booking-form {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  backdrop-filter: blur(20px);
}
.bform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.bform-group { display: flex; flex-direction: column; gap: 6px; }
.bform-full { margin-bottom: 16px; }
.bform-group label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.bform-group input,
.bform-group select,
.bform-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm); padding: 13px 16px;
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: .93rem;
  outline: none; transition: border .3s, background .3s, box-shadow .3s;
  -webkit-appearance: none;
}
.bform-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
}
.bform-group select option { background: #0a1628; }
.bform-group input:focus, .bform-group select:focus, .bform-group textarea:focus {
  border-color: var(--c-gold); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(196,154,60,.15);
}
.bform-group textarea { resize: vertical; min-height: 100px; }
::placeholder { color: rgba(255,255,255,.22); }

.bform-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border-radius: var(--r);
  background: var(--c-gold); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: .97rem; font-weight: 700;
  transition: var(--t); margin-top: 8px; cursor: none;
  box-shadow: 0 4px 20px rgba(196,154,60,.4);
}
.bform-submit svg { width: 17px; height: 17px; }
.bform-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(196,154,60,.55); }
.bform-submit:disabled { opacity: .6; transform: none; }

.bform-success {
  display: none; margin-top: 16px; padding: 13px 18px;
  background: rgba(72,199,142,.15); border: 1px solid rgba(72,199,142,.3);
  border-radius: var(--r-sm); color: #7effc4;
  text-align: center; font-weight: 600; font-size: .9rem;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.sec-testimonials { padding: 120px 0; background: var(--c-bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.testi-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg); padding: 40px 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.testi-card:hover { box-shadow: var(--sh-lg); border-color: var(--c-border-g); transform: translateY(-6px); }
.testi-card::before {
  content: '"';
  position: absolute; top: -10px; right: 28px;
  font-size: 8rem; line-height: 1;
  font-family: 'Playfair Display', serif;
  color: var(--c-gold-pale); pointer-events: none; user-select: none;
}

.tc-stars { font-size: 1rem; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 16px; }
.testi-card blockquote {
  font-size: .92rem; color: var(--c-muted);
  line-height: 1.85; font-style: italic; margin-bottom: 24px;
}
.tc-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--c-border); }
.tc-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-navy2));
  color: #fff; font-weight: 700; font-size: .87rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: .93rem; color: var(--c-navy); }
.tc-author span { font-size: .74rem; color: var(--c-faint); }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.sec-contact { padding: 120px 0; background: var(--c-surface); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }

.ct-items { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }
.ct-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border); border-radius: var(--r);
  transition: var(--t);
}
.ct-item:hover { border-color: var(--c-border-g); box-shadow: var(--sh-md); transform: translateX(4px); }
.ct-ico { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.ct-item strong { display: block; font-size: .72rem; font-weight: 700; color: var(--c-faint); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.ct-item span, .ct-item a { font-size: .9rem; color: var(--c-muted); display: block; transition: color .3s; }
.ct-item a:hover { color: var(--c-gold); }

.ct-socials { display: flex; gap: 10px; }
.ct-social {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-bg); border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); transition: var(--t);
}
.ct-social svg { width: 17px; height: 17px; }
.ct-social:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-3px); box-shadow: var(--sh-md); }
.ct-wa:hover { border-color: #25d366; color: #25d366; }

.contact-map {
  height: 600px; border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--c-border); box-shadow: var(--sh-md);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#footer { background: var(--c-navy); }
.footer-top { padding: 80px 0 56px; }
.footer-top-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.ft-brand { display: flex; flex-direction: column; gap: 14px; }
.ft-logo {
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
    width: 60%;
}
.ft-brand p { font-size: .86rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 260px; }
.ft-ar { direction: rtl; font-size: .78rem !important; color: rgba(196,154,60,.85) !important; font-family: monospace;text-align: center;}

.ft-col { display: flex; flex-direction: column; gap: 12px; }
.ft-col strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.ft-col a, .ft-col span { font-size: .86rem; color: rgba(255,255,255,.35); transition: color .3s; }
.ft-col a:hover { color: var(--c-gold-mid); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.fb-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.25);
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 700;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--t);
}
.wa-fab svg { width: 26px; height: 26px; }
.wa-fab:hover { background: #1ebe5d; transform: scale(1.1); }
.wa-ping {
  position: absolute; top: -2px; right: -2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ff4757; border: 2px solid var(--c-bg);
  animation: wa-ping 2.5s ease infinite 3s;
}
@keyframes wa-ping {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-content {
    padding: 140px 40px 60px;
    min-height: 100svh;
  }
  .hero-content::after { display: none; }
  .hero-media {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-media-overlay {
    background: linear-gradient(to right, rgba(10,22,40,.85) 0%, rgba(10,22,40,.55) 100%);
  }
  .about-mosaic { height: 440px; }
  .about-text { padding: 56px 40px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .sec-about { grid-template-columns: 1fr; }
  .about-mosaic { height: 380px; border-radius: 0; }
  .am-badge { bottom: 16px; left: 16px; }
  .about-text { padding: 56px 32px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blf-img { height: 260px; }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 340px; }
}
@media (max-width: 700px) {
  .hdr-nav, .hdr-cta { display: none; }
  .burger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .pkg-hdr { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-hdr { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bform-row { grid-template-columns: 1fr; }
  .booking-form { padding: 32px 22px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 24px; }
  .fb-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-h1 { font-size: 3rem; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .hdr-inner { padding: 18px 20px; }
  .hero-content { padding: 130px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-fill, .btn-ghost-dark { text-align: center; justify-content: center; }
  .about-mosaic { height: 300px; grid-template-columns: 1fr; }
  .am-stack { display: none; }
  .am-large { grid-column: 1; grid-row: 1; }
}

/* ═══ PROSE TYPOGRAPHY (blog posts & package details) ════════ */
.prose {
  color: var(--c-text, #1e293b);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 72ch;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--c-navy, #0a1628);
  line-height: 1.25;
  margin-top: 2em;
  margin-bottom: .6em;
}
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.5rem; border-bottom: 2px solid var(--c-gold, #c49a3c); padding-bottom: .35em; }
.prose h3 { font-size: 1.2rem; color: var(--c-gold, #c49a3c); }
.prose h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.prose p  { margin-bottom: 1.2em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.5em; }
.prose li { margin-bottom: .45em; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { font-weight: 700; color: var(--c-navy, #0a1628); }
.prose em { font-style: italic; }
.prose a { color: var(--c-gold, #c49a3c); text-decoration: underline; }
.prose a:hover { color: var(--c-gold-mid, #e0b84a); }
.prose blockquote {
  border-left: 4px solid var(--c-gold, #c49a3c);
  margin: 1.5em 0;
  padding: .75em 1.25em;
  background: rgba(196,154,60,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--c-muted, #64748b);
}
.prose hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,.1);
  margin: 2.5em 0;
}
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.2em; font-size: .95rem; }
.prose th, .prose td { padding: 10px 14px; border: 1px solid rgba(0,0,0,.1); }
.prose th { background: var(--c-navy, #0a1628); color: #fff; font-weight: 700; text-align: left; }
.prose tr:nth-child(even) { background: rgba(0,0,0,.025); }
.prose img { border-radius: 10px; margin: 1.5em 0; max-width: 100%; }
.prose code { background: rgba(0,0,0,.06); border-radius: 4px; padding: 2px 6px; font-size: .9em; }
.prose pre { background: var(--c-navy,#0a1628); color: #e2e8f0; border-radius: 10px; padding: 1.2em; overflow-x: auto; margin-bottom: 1.2em; }

/* Day badge style for package itineraries */
.prose h3.day-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-navy, #0a1628);
  color: var(--c-gold, #c49a3c);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 1rem;
  margin-top: 2.2em;
}

/* Package detail section */
.pkg-detail-section {
  padding: 80px 0;
  background: var(--c-bg, #f9fafb);
}
.pkg-detail-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.pkg-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.06);
}
.pkg-sidebar h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-navy, #0a1628);
  margin-bottom: 20px;
}
.pkg-sidebar .price-big {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-gold, #c49a3c);
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .pkg-detail-inner { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; }
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.pagi-nav { margin-top: 40px; }
.pagi-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagi-item a,
.pagi-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background .15s, color .15s;
  border: 1.5px solid transparent;
}
/* Public pages */
.pagi-item a {
  color: var(--c-navy, #0a1628);
  background: #fff;
  border-color: rgba(0,0,0,.12);
}
.pagi-item a:hover {
  background: var(--c-gold, #c49a3c);
  color: #fff;
  border-color: var(--c-gold, #c49a3c);
}
.pagi-item.active span {
  background: var(--c-gold, #c49a3c);
  color: #fff;
  border-color: var(--c-gold, #c49a3c);
}
.pagi-item.disabled span {
  color: #adb5bd;
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.pagi-item.ellipsis span {
  border-color: transparent;
  background: transparent;
  color: var(--c-muted, #64748b);
}

/* Admin pagination overrides (inside .card) */
.card .pagi-nav { margin-top: 20px; }
.card .pagi-item a {
  color: #374151;
  background: #f9fafb;
  border-color: #e5e7eb;
}
.card .pagi-item a:hover {
  background: #1e40af;
  color: #fff;
  border-color: #1e40af;
}
.card .pagi-item.active span {
  background: #1e40af;
  border-color: #1e40af;
}
