/* ============================================================
   Safari Jawai — Main Stylesheet (Clean Redesign)
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette — drawn from logo: black + orange + gold */
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --light:       #F4F1EC;
  --border:      #E8E2D9;
  --muted:       #9A8F82;
  --text:        #1C1612;
  --text-lt:     #5C4F43;
  --orange:      #D4721A;
  --orange-dk:   #B85E10;
  --orange-lt:   #FFF0E4;
  --gold:        #C8941A;
  --dark:        #111009;
  --dark2:       #1E1A14;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(28,22,18,.06);
  --sh-sm: 0 2px 12px rgba(28,22,18,.08);
  --sh-md: 0 6px 24px rgba(28,22,18,.10);
  --sh-lg: 0 16px 48px rgba(28,22,18,.14);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --ease: .3s cubic-bezier(.25,.8,.25,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { overflow: visible; flex-shrink: 0; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,4vw,3.4rem); font-weight: 700; line-height: 1.18; color: var(--text); }
.h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 700; line-height: 1.2; color: var(--text); }
.h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--text); }
.lead { font-size: 1rem; color: var(--text-lt); line-height: 1.75; max-width: 580px; margin-top: .6rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 600; letter-spacing: .02em;
  padding: .75rem 1.65rem; border-radius: 50px;
  border: none; cursor: pointer; transition: var(--ease);
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,114,26,.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-ghost-white { background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn-ghost-white:hover { background: rgba(255,255,255,.22); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.2rem; font-size: .8rem; }

/* ── BADGE / TAG ─────────────────────────────────────────── */
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--orange-lt); color: var(--orange-dk);
  padding: .25rem .75rem; border-radius: 50px;
}

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.hdr.scrolled { box-shadow: var(--sh-sm); }
.hdr-inner {
  max-width: 1240px; margin: 0 auto;
  height: 68px; padding: 0 24px;
  display: flex; align-items: center; gap: 1rem;
}
/* Logo */
.hdr-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.hdr-logo-img { height: 42px; width: auto; display: block; }
.hdr-logo-w1 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--text); }
.hdr-logo-w2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--orange); margin-left: .25rem; }

/* Nav */
.hdr-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: .15rem; }
.hdr-nav-link {
  font-size: .855rem; font-weight: 500; color: var(--text-lt);
  padding: .45rem .8rem; border-radius: 6px; transition: color .2s, background .2s;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 3px;
}
.hdr-nav-link:hover, .hdr-nav-link.active { color: var(--text); background: var(--light); }
.hdr-drop-arrow { width: 13px; height: 13px; transition: transform .22s; }
.hdr-drop-wrap { position: relative; }
.hdr-drop-wrap::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 8px; }
.hdr-drop-wrap:hover .hdr-drop-arrow { transform: rotate(180deg); }
.hdr-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 6px; min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s; transform: translateX(-50%) translateY(-6px);
}
.hdr-drop-wrap:hover .hdr-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.hdr-dd-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem .85rem; border-radius: 8px; font-size: .83rem; font-weight: 500;
  color: var(--text-lt); transition: background .18s, color .18s;
}
.hdr-dd-row:hover { background: var(--light); color: var(--text); }
.hdr-dd-all { color: var(--orange); font-weight: 600; }
.hdr-dd-price { font-size: .75rem; color: var(--muted); }

.hdr-right { display: flex; align-items: center; gap: .6rem; }
.hdr-book-btn {
  background: var(--orange); color: #fff;
  font-size: .83rem; font-weight: 600; letter-spacing: .02em;
  padding: .55rem 1.25rem; border-radius: 50px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.hdr-book-btn:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(212,114,26,.3); }
.hdr-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer;
}
.hdr-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--ease); }
.hdr-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.is-open span:nth-child(2) { opacity: 0; }
.hdr-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mob-overlay { display: none; position: fixed; inset: 0; z-index: 940; background: rgba(28,22,18,.5); }
.mob-overlay.open { display: block; }
.mob-drawer {
  position: fixed; inset: 0 0 0 auto; z-index: 950; width: 300px;
  background: var(--white); transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }
.mob-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mob-hd-logo-img, .mob-hd-logo .hdr-logo-img { height: 36px; }
.mob-hd-close { background: none; border: none; padding: 6px; cursor: pointer; color: var(--text-lt); }
.mob-hd-close svg { width: 20px; height: 20px; }
.mob-nav { flex: 1; padding: 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.mob-nav-link {
  display: block; padding: .65rem 1rem; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--text-lt); transition: background .18s, color .18s;
}
.mob-nav-link:hover, .mob-nav-link.active { background: var(--light); color: var(--text); }
.mob-acc-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .65rem 1rem; border-radius: 8px;
  background: none; border: none; font-size: .9rem; font-weight: 500; color: var(--text-lt);
  cursor: pointer; transition: background .18s, color .18s;
}
.mob-acc-trigger:hover { background: var(--light); color: var(--text); }
.mob-acc-icon { width: 16px; height: 16px; transition: transform .22s; stroke: currentColor; fill: none; stroke-width: 2; }
.mob-acc-panel { display: none; padding: 4px 0 4px 12px; }
.mob-acc-panel.open { display: block; }
.mob-acc-panel.open ~ .mob-acc-trigger .mob-acc-icon { transform: rotate(180deg); }
.mob-sub-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1rem; border-radius: 7px; font-size: .83rem; color: var(--text-lt);
  transition: background .18s; font-weight: 500;
}
.mob-sub-link:hover { background: var(--light); color: var(--text); }
.mob-sub-all { color: var(--orange); font-weight: 600; }
.mob-sub-price { font-size: .75rem; color: var(--muted); }
.mob-foot { padding: 16px 20px; border-top: 1px solid var(--border); }
.mob-book-btn {
  display: block; text-align: center; background: var(--orange); color: #fff;
  padding: .8rem; border-radius: 50px; font-weight: 600; font-size: .9rem;
}

/* ══════════════════════════════════════════════════════════
   HERO — FULL WIDTH CENTERED
══════════════════════════════════════════════════════════ */
.hero-full { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding-top: 68px; }
.hero-full-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-full-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,10,9,.5) 0%, rgba(17,10,9,.55) 55%, rgba(17,10,9,.82) 100%); }
.hero-full-inner { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 840px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-full-eyebrow { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; font-size: .73rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.hero-full-eyebrow-line { display: inline-block; width: 28px; height: 1.5px; background: var(--gold); opacity: .8; }
.hero-full-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,6vw,4.4rem); font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 1.3rem; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero-full-title em { font-style: italic; color: #F0B55A; }
.hero-full-desc { font-size: clamp(.9rem,1.5vw,1.05rem); color: rgba(255,255,255,.78); max-width: 600px; line-height: 1.78; margin-bottom: 2.2rem; }
.hero-full-cta { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; justify-content: center; }
.hero-full-stats { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: center; background: rgba(17,10,9,.6); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 24px; flex-wrap: wrap; }
.hero-full-stat { flex: 1; min-width: 120px; text-align: center; padding: .4rem .75rem; }
.hero-full-stat-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: #F0B55A; line-height: 1; }
.hero-full-stat-lbl { font-size: .68rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .25rem; }
.hero-full-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════════ */
.sec-hd { margin-bottom: 3rem; }
.sec-hd-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* ══════════════════════════════════════════════════════════
   SAFARI CARDS
══════════════════════════════════════════════════════════ */
.safari-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.safari-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.safari-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.safari-card-img-wrap { position: relative; height: 210px; overflow: hidden; }
.safari-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.safari-card:hover .safari-card-img { transform: scale(1.05); }
.safari-card-badge { position: absolute; top: .85rem; right: .85rem; background: var(--orange); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .28rem .75rem; border-radius: 50px; }
.safari-card-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.safari-card-duration { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .45rem; }
.safari-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; line-height: 1.3; }
.safari-card-desc { font-size: .85rem; color: var(--text-lt); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.safari-card-features { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.safari-card-feature { display: flex; align-items: flex-start; gap: .5rem; font-size: .8rem; color: var(--text-lt); line-height: 1.45; }
.safari-card-feature::before { content: ''; flex-shrink: 0; margin-top: .38rem; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.safari-card-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; flex-wrap: wrap; }
.safari-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1; }
.safari-price span { font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 400; color: var(--muted); margin-left: 2px; }

/* ══════════════════════════════════════════════════════════
   SAFARI SLIDER (homepage)
══════════════════════════════════════════════════════════ */
.safari-grid-wrap { position: relative; overflow: hidden; }
.safari-grid-inner { display: flex; gap: 1.5rem; transition: transform .42s cubic-bezier(.4,0,.2,1); }
.safari-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: var(--white); border: 1px solid var(--border);
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease); box-shadow: var(--sh-sm);
}
.safari-slider-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.safari-slider-btn svg { width: 18px; height: 18px; }
.safari-slider-prev { left: -20px; }
.safari-slider-next { right: -20px; }

/* ══════════════════════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════════════════════ */
.why-section { background: var(--dark); }
.why-section .eyebrow { color: #F0B55A; }
.why-section .eyebrow::before { background: #F0B55A; }
.why-section .h2 { color: #fff; }
.why-section .lead { color: rgba(255,255,255,.55); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.8rem; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); padding: 1.6rem; transition: background var(--ease), border-color var(--ease); }
.why-card:hover { background: rgba(212,114,26,.12); border-color: rgba(212,114,26,.25); }
.why-icon { width: 44px; height: 44px; background: rgba(212,114,26,.18); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon svg { width: 22px; height: 22px; stroke: #F0B55A; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; line-height: 1.3; }
.why-desc { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   GALLERY SLIDER
══════════════════════════════════════════════════════════ */
.journal3-wrap { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.journal3-viewport { overflow: hidden; border-radius: var(--r-lg); }
.journal3-track { display: flex; gap: 12px; transition: transform .42s cubic-bezier(.4,0,.2,1); }
.journal3-slide { flex-shrink: 0; border-radius: var(--r-md); overflow: hidden; }
.journal3-slide img { width: 100%; height: 260px; object-fit: cover; display: block; }
.journal3-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  background: rgba(255,255,255,.9); border: none; border-radius: 50%;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease); box-shadow: var(--sh-sm);
}
.journal3-btn:hover { background: var(--orange); color: #fff; }
.journal3-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.journal3-prev { left: 10px; }
.journal3-next { right: 10px; }

/* ══════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════ */
.reviews-section { background: var(--light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.8rem; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars-top { color: var(--orange); font-size: .95rem; letter-spacing: 2px; }
.review-text { font-size: .88rem; color: var(--text-lt); line-height: 1.75; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .65rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: var(--light); }
.review-name { font-size: .85rem; font-weight: 600; color: var(--text); }
.review-location { font-size: .78rem; color: var(--muted); }
.review-author-line { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.review-sep { color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════════════════════ */
.blog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: .5rem; }
.blog-preview-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--ease), box-shadow var(--ease); }
.blog-preview-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.blog-preview-img { position: relative; height: 192px; overflow: hidden; }
.blog-preview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-preview-card:hover .blog-preview-img img { transform: scale(1.05); }
.blog-preview-cat { position: absolute; top: .8rem; left: .8rem; background: var(--orange); color: #fff; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .7rem; border-radius: 50px; }
.blog-preview-body { padding: 1.2rem 1.3rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.blog-preview-meta { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .4rem; }
.blog-preview-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: .5rem; }
.blog-preview-excerpt { font-size: .82rem; color: var(--text-lt); line-height: 1.65; flex: 1; margin-bottom: .9rem; }
.blog-preview-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; color: var(--orange); }
.blog-preview-link svg { width: 14px; height: 14px; transition: transform .2s; }
.blog-preview-card:hover .blog-preview-link svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; padding-top: 68px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,10,9,.3) 0%, rgba(17,10,9,.72) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: 32px 24px 48px; max-width: 1240px; margin: 0 auto; width: 100%; }
.page-hero-breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: .85rem; }
.page-hero-breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero-breadcrumb a:hover { color: #F0B55A; }
.page-hero-breadcrumb-sep { color: rgba(255,255,255,.35); }
.page-hero-breadcrumb span:last-child { color: #F0B55A; font-weight: 600; }
.page-hero .tag { background: rgba(212,114,26,.25); color: #F0B55A; margin-bottom: .6rem; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: .6rem; }
.page-hero-desc { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 560px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   BREADCRUMB BAR
══════════════════════════════════════════════════════════ */
.breadcrumb { background: var(--light); border-bottom: 1px solid var(--border); padding: .7rem 24px; display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--muted); max-width: 100%; }
.breadcrumb a { color: var(--text-lt); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--border); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-intro-img { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.about-intro-img img { width: 100%; height: 400px; object-fit: cover; }
.about-intro-img-badge { position: absolute; bottom: 1rem; left: 1rem; background: rgba(17,10,9,.75); backdrop-filter: blur(8px); color: rgba(255,255,255,.85); font-size: .72rem; font-weight: 500; padding: .35rem .9rem; border-radius: 50px; border: 1px solid rgba(255,255,255,.12); }
.about-body-text { font-size: .92rem; color: var(--text-lt); line-height: 1.85; margin-bottom: 1rem; }
.about-stat-row { display: flex; gap: 2rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--orange); line-height: 1; display: block; }
.about-stat-lbl { font-size: .75rem; color: var(--text-lt); margin-top: .18rem; }
.about-fact-list { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.25rem; }
.about-fact { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text-lt); }
.about-fact svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--orange); }
.about-safari-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.about-safari-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem; transition: border-color var(--ease); }
.about-safari-card:hover { border-color: var(--orange); }
.about-safari-icon { width: 40px; height: 40px; background: var(--orange-lt); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: .9rem; }
.about-safari-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.about-safari-card-title { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.about-safari-card-desc { font-size: .82rem; color: var(--text-lt); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   SAFARI DETAIL
══════════════════════════════════════════════════════════ */
.safari-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.safari-detail-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1.5rem; }
.safari-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.safari-detail-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--text); margin: .6rem 0 .75rem; }
.safari-detail-desc { font-size: .92rem; color: var(--text-lt); line-height: 1.85; margin-bottom: 1.5rem; }
.safari-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.safari-inc, .safari-exc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.1rem 1.25rem; }
.safari-inc-title { font-size: .8rem; font-weight: 700; color: #16a34a; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .65rem; }
.safari-exc-title { font-size: .8rem; font-weight: 700; color: #dc2626; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .65rem; }
.safari-inc-item, .safari-exc-item { font-size: .83rem; color: var(--text-lt); padding: .25rem 0; border-bottom: 1px solid var(--border); }
.safari-inc-item:last-child, .safari-exc-item:last-child { border-bottom: none; }
/* Booking card */
.safari-book-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; position: sticky; top: 88px; box-shadow: var(--sh-md); }
.safari-book-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1; }
.safari-book-price-sub { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 400; color: var(--muted); }
.safari-book-divider { height: 1px; background: var(--border); margin: 1.1rem 0; }
.safari-book-meta { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.1rem; }
.safari-book-meta-row { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; }
.safari-book-meta-label { color: var(--muted); }
.safari-book-meta-val { font-weight: 600; color: var(--text); }
.safari-slots { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.safari-slot-btn { background: var(--light); border: 1.5px solid var(--border); color: var(--text-lt); font-size: .78rem; font-weight: 500; padding: .4rem .85rem; border-radius: 50px; cursor: pointer; transition: var(--ease); display: flex; align-items: center; gap: .4rem; }
.safari-slot-btn:hover, .safari-slot-btn.selected { background: var(--orange-lt); border-color: var(--orange); color: var(--orange-dk); }
/* Other safaris */
.other-safaris-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.other-safari-card { display: block; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: transform var(--ease), box-shadow var(--ease); }
.other-safari-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: transparent; }
.other-safari-img { position: relative; height: 165px; overflow: hidden; }
.other-safari-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.other-safari-card:hover .other-safari-img img { transform: scale(1.06); }
.other-safari-body { padding: .9rem 1rem; background: var(--white); }
.other-safari-name { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.other-safari-price { font-size: .82rem; color: var(--text-lt); }
.other-safari-price span { color: var(--muted); font-size: .75rem; }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-sm); }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); }
.contact-info-icon { width: 38px; height: 38px; background: var(--orange-lt); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; }
.contact-info-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.contact-info-value { font-size: .88rem; color: var(--text); font-weight: 500; }
.contact-info-value a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════════
   BOOKING PAGE
══════════════════════════════════════════════════════════ */
.book-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.book-trust { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.25rem; }
.book-trust-item { display: flex; align-items: center; gap: .65rem; font-size: .83rem; color: var(--text-lt); }
.book-trust-item svg { width: 16px; height: 16px; stroke: var(--orange); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-label span { color: var(--orange); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .72rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: .88rem; color: var(--text);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  font-family: inherit; line-height: 1.5;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(212,114,26,.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { font-size: .78rem; color: #dc2626; margin-top: .3rem; }
.alert { padding: .85rem 1.1rem; border-radius: var(--r-sm); font-size: .88rem; margin-bottom: 1rem; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(17,10,9,.4); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom-icon svg { width: 28px; height: 28px; stroke: #fff; }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--r-md); object-fit: contain; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,.12); border: none; color: #fff; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.4rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,.6); color: rgba(255,255,255,.8); font-size: .8rem; padding: .4rem 1rem; border-radius: 50px; }

/* ══════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════ */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.blog-main { min-width: 0; }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); margin-bottom: 2rem; border: 1px solid var(--border); text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; display: block; }
.blog-featured-body { background: var(--white); padding: 1.8rem; display: flex; flex-direction: column; justify-content: flex-end; }
.blog-feat-cat { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }
.blog-feat-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: .6rem; }
.blog-feat-excerpt { font-size: .85rem; color: var(--text-lt); line-height: 1.7; }
.blog-post-list { display: flex; flex-direction: column; gap: 1.1rem; }
.blog-post-row { display: flex; gap: 1.1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: transform var(--ease), box-shadow var(--ease); }
.blog-post-row:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: transparent; }
.blog-post-img { width: 120px; flex-shrink: 0; }
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-body { padding: .85rem 1rem .85rem 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.blog-post-cat { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--orange); margin-bottom: .3rem; }
.blog-post-title { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: .4rem; }
.blog-post-excerpt { font-size: .8rem; color: var(--text-lt); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-sidebar-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem; margin-bottom: 1rem; }
.blog-sidebar-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text); margin-bottom: 1rem; }
.blog-sidebar-cat { display: flex; align-items: center; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid var(--border); font-size: .83rem; color: var(--text-lt); }
.blog-sidebar-cat:last-child { border-bottom: none; }
.blog-sidebar-cat:hover { color: var(--orange); }
.blog-sidebar-count { background: var(--light); font-size: .72rem; font-weight: 600; padding: .15rem .55rem; border-radius: 50px; color: var(--muted); }
.blog-pagination { display: flex; gap: .5rem; margin-top: 1.75rem; flex-wrap: wrap; }
.blog-pg-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .83rem; color: var(--text-lt); transition: var(--ease); }
.blog-pg-btn:hover, .blog-pg-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-logo-img { height: 44px; width: auto; margin-bottom: .75rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.logo-text span { color: var(--orange); }
.footer-desc { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.45); margin-top: .5rem; max-width: 260px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--ease); }
.footer-social a:hover { border-color: var(--orange); background: rgba(212,114,26,.2); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.6); }
.footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; padding: .1rem 0; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-compact { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact-row { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact-ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .05rem; }
.footer-contact-ico svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; }
.footer-contact-text { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,.55); }
.footer-contact-text a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 24px; max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom > div { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   CALL TO ACTION SECTIONS
══════════════════════════════════════════════════════════ */
.book-section { background: var(--dark); }
.btn-call {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: #fff;
  padding: .8rem 1.5rem; border-radius: 50px; font-size: .88rem; font-weight: 600;
  transition: var(--ease);
}
.btn-call:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-call svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.btn-booknow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--orange); color: #fff;
  padding: .8rem 1.5rem; border-radius: 50px; font-size: .88rem; font-weight: 600;
  transition: var(--ease);
}
.btn-booknow:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,114,26,.4); }
.btn-booknow svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.book-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   SAFARIS PAGE (full list)
══════════════════════════════════════════════════════════ */
.saf-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; }
.saf-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; }
.saf-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(17,10,9,.7) 0%, rgba(17,10,9,.5) 45%, rgba(17,10,9,.85) 100%); }
.saf-hero-inner { position: relative; z-index: 2; padding: 120px 24px 0; width: 100%; max-width: 1240px; margin: 0 auto; }
.saf-breadcrumb { display: flex; align-items: center; gap: .4rem; margin-bottom: 1.4rem; font-size: .78rem; color: rgba(255,255,255,.5); }
.saf-breadcrumb a { color: rgba(255,255,255,.6); }
.saf-breadcrumb a:hover { color: #F0B55A; }
.saf-breadcrumb svg { width: 12px; height: 12px; }
.saf-breadcrumb span:last-child { color: #F0B55A; font-weight: 600; }
.saf-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5.5vw,4rem); font-weight: 700; color: #fff; line-height: 1.12; margin: 1rem 0 1.2rem; max-width: 680px; }
.saf-hero-desc { font-size: 1rem; color: rgba(255,255,255,.72); max-width: 520px; line-height: 1.75; margin-bottom: 2rem; }
.saf-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.saf-hero-stats { display: flex; align-items: center; background: rgba(17,10,9,.6); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 24px; margin: 0; flex-wrap: wrap; }
.saf-hero-stat { flex: 1; min-width: 120px; display: flex; flex-direction: column; align-items: center; text-align: center; padding: .4rem 1rem; }
.saf-hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700; color: #F0B55A; line-height: 1; }
.saf-hero-stat-lbl { font-size: .68rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .25rem; }
.saf-hero-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.saf-list-section { background: var(--white); }
.saf-list-header { text-align: center; margin-bottom: 3rem; }
.saf-list-header .lead { margin: .65rem auto 0; }
.saf-equal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.saf-eq-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.saf-eq-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.saf-eq-img-wrap { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.saf-eq-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.saf-eq-card:hover .saf-eq-img { transform: scale(1.05); }
.saf-eq-badge { position: absolute; top: .85rem; right: .85rem; background: var(--orange); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .28rem .75rem; border-radius: 50px; }
.saf-eq-duration { position: absolute; bottom: .75rem; left: .85rem; background: rgba(17,10,9,.7); backdrop-filter: blur(6px); color: rgba(255,255,255,.9); font-size: .68rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: .28rem .75rem; border-radius: 50px; }
.saf-eq-body { padding: 1.3rem 1.4rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.saf-eq-title { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 700; color: var(--text); margin-bottom: .45rem; line-height: 1.3; }
.saf-eq-desc { font-size: .84rem; color: var(--text-lt); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.saf-eq-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; padding-top: .9rem; border-top: 1px solid var(--border); margin-top: auto; }
.saf-eq-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1; }
.saf-eq-price-note { font-size: .7rem; color: var(--muted); margin-top: .15rem; }
.saf-eq-btns { display: flex; gap: .5rem; }
.saf-btn-sm { font-size: .76rem !important; padding: .52rem 1.05rem !important; }
.saf-help-strip { background: var(--light); border-top: 1px solid var(--border); padding: 48px 0; }
.saf-help-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.saf-help-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.saf-help-desc { font-size: .88rem; color: var(--text-lt); }
.saf-help-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   STARS helper
══════════════════════════════════════════════════════════ */
.stars { color: var(--orange); font-size: .88rem; letter-spacing: 2px; }

/* ══════════════════════════════════════════════════════════
   POLICY PAGES
══════════════════════════════════════════════════════════ */
.policy-body { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.policy-body h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); margin: 2rem 0 .6rem; }
.policy-body p { font-size: .9rem; color: var(--text-lt); line-height: 1.85; margin-bottom: .85rem; }
.policy-body ul { padding-left: 1.2rem; list-style: disc; }
.policy-body ul li { font-size: .9rem; color: var(--text-lt); line-height: 1.75; margin-bottom: .4rem; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .safari-grid { grid-template-columns: repeat(2,1fr); }
  .saf-equal-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .blog-preview-grid { grid-template-columns: repeat(2,1fr); }
  .about-safari-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .hdr-book-btn { display: none; }
  .hdr-burger { display: flex; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .safari-detail-grid { grid-template-columns: 1fr; }
  .safari-book-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .other-safaris-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .safari-grid { grid-template-columns: 1fr; }
  .saf-equal-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .about-safari-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .safari-inc-exc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .65rem; }
  .hero-full-stats { flex-wrap: wrap; }
  .hero-full-stat { flex: 0 0 calc(33% - .5rem); min-width: 80px; }
  .hero-full-stat-sep { display: none; }
  .saf-hero-stat-div { display: none; }
  .saf-hero-stat { flex: 0 0 calc(50% - .5rem); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .other-safaris-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hdr-inner { padding: 0 16px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .blog-post-img { width: 90px; }
}

/* ── Mobile touch ─────────────────────────────────────── */
@media (max-width: 768px) {
  a, button { -webkit-tap-highlight-color: transparent; }
  input, select, textarea { font-size: 16px !important; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE — missing classes
══════════════════════════════════════════════════════════ */
.contact-info-block { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.1rem 1.25rem;
}
.contact-info-icon {
  width: 38px; height: 38px; background: var(--orange-lt);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; }
.contact-info-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted); margin-bottom: .25rem;
}
.contact-info-val { font-size: .88rem; color: var(--text); line-height: 1.65; }
.contact-info-val a { color: var(--text); }
.contact-info-val a:hover { color: var(--orange); }
.contact-map { margin-top: 1rem; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; width: 100%; height: 240px; border: none; }

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE — missing classes
══════════════════════════════════════════════════════════ */
.gallery-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-4col-item {
  position: relative; border-radius: var(--r-sm);
  overflow: hidden; cursor: pointer; aspect-ratio: 1;
  background: var(--light);
}
.gallery-4col-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease; display: block;
}
.gallery-4col-item:hover img { transform: scale(1.08); }
.gallery-4col-overlay {
  position: absolute; inset: 0; background: rgba(17,10,9,.4);
  opacity: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.gallery-4col-item:hover .gallery-4col-overlay { opacity: 1; }
.gallery-4col-overlay svg { width: 28px; height: 28px; stroke: #fff; fill: none; }
/* Pagination */
.gal-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.gal-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .6rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .83rem; color: var(--text-lt); transition: var(--ease);
  text-decoration: none;
}
.gal-page-btn:hover { border-color: var(--orange); color: var(--orange); }
.gal-page-active { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 700; }
.gal-page-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
@media (max-width: 900px) { .gallery-4col { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 580px)  { .gallery-4col { grid-template-columns: repeat(2,1fr); } }

/* ══════════════════════════════════════════════════════════
   BOOK PAGE — missing classes
══════════════════════════════════════════════════════════ */
.book-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.book-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-sm); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; }
.form-section-title { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 1.5rem 0 .85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-alert { padding: .85rem 1.1rem; border-radius: var(--r-sm); font-size: .88rem; margin-bottom: 1rem; }
.form-alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.form-alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.book-sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 88px; }
.book-safari-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: none; }
.book-safari-card.show { display: block; }
.book-safari-img { height: 160px; overflow: hidden; }
.book-safari-img img { width: 100%; height: 100%; object-fit: cover; }
.book-safari-info { padding: 1rem 1.15rem; }
.book-safari-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.book-safari-price { font-size: 1.2rem; font-weight: 700; color: var(--orange); }
.book-safari-price span { font-size: .75rem; font-weight: 400; color: var(--muted); }
.book-trust-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.25rem; }
.book-trust-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: .85rem; }
.book-trust-item { display: flex; align-items: center; gap: .65rem; font-size: .83rem; color: var(--text-lt); margin-bottom: .55rem; }
.book-trust-item:last-child { margin-bottom: 0; }
.book-trust-item svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; flex-shrink: 0; }
@media (max-width: 900px) { .book-layout { grid-template-columns: 1fr; } .book-sidebar { position: static; } }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   BLOG PAGE — missing classes
══════════════════════════════════════════════════════════ */
.blog-search { display: flex; gap: .5rem; margin-bottom: 1.75rem; }
.blog-search-input {
  flex: 1; padding: .65rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: .88rem; color: var(--text);
  background: var(--white); font-family: inherit;
}
.blog-search-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(212,114,26,.1); }
.blog-search-btn {
  padding: .65rem 1.1rem; background: var(--orange); color: #fff;
  border: none; border-radius: var(--r-sm); cursor: pointer;
  display: flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600;
  transition: background .2s;
}
.blog-search-btn:hover { background: var(--orange-dk); }
.blog-search-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.blog-filters-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.blog-filter-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--orange-lt); color: var(--orange-dk);
  border: 1px solid rgba(212,114,26,.25); border-radius: 50px;
  padding: .25rem .8rem; font-size: .78rem; font-weight: 600;
}
.blog-filter-chip a { color: var(--orange-dk); font-weight: 700; margin-left: .2rem; }
/* Blog list */
.blog-list { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-list-item {
  display: flex; gap: 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: transform var(--ease), box-shadow var(--ease);
}
.blog-list-item:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: transparent; }
.blog-list-img { flex-shrink: 0; width: 200px; overflow: hidden; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s; }
.blog-list-item:hover .blog-list-img img { transform: scale(1.05); }
.blog-list-img-placeholder { background: var(--light); display: flex; align-items: center; justify-content: center; min-height: 140px; }
.blog-list-body { padding: 1.1rem 1.25rem 1.1rem 0; flex: 1; display: flex; flex-direction: column; }
.blog-list-meta { display: flex; align-items: center; gap: .45rem; font-size: .75rem; margin-bottom: .4rem; flex-wrap: wrap; }
.blog-list-meta-cat { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; font-size: .68rem; }
.blog-list-meta-dot { color: var(--muted); }
.blog-list-meta-date, .blog-list-meta-read { color: var(--muted); }
.blog-list-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: .45rem; }
.blog-list-title a { color: inherit; }
.blog-list-title a:hover { color: var(--orange); }
.blog-list-excerpt { font-size: .85rem; color: var(--text-lt); line-height: 1.65; flex: 1; }
.blog-list-footer { margin-top: .85rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.blog-read-more { font-size: .8rem; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: .3rem; }
.blog-read-more svg { width: 13px; height: 13px; transition: transform .2s; }
.blog-list-item:hover .blog-read-more svg { transform: translateX(3px); }
/* Sidebar */
.blog-sidebar-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.25rem; margin-bottom: 1rem; }
.blog-sidebar-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--text); margin-bottom: 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--border); }
.blog-sidebar-cat-link { display: flex; align-items: center; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--text-lt); }
.blog-sidebar-cat-link:last-child { border-bottom: none; }
.blog-sidebar-cat-link:hover { color: var(--orange); }
.blog-sidebar-count { background: var(--light); font-size: .72rem; font-weight: 600; padding: .15rem .55rem; border-radius: 50px; color: var(--muted); }
.blog-sidebar-pop { display: flex; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.blog-sidebar-pop:last-child { border-bottom: none; }
.blog-sidebar-pop-img { width: 52px; height: 44px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.blog-sidebar-pop-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-pop-title { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.blog-sidebar-pop-title a:hover { color: var(--orange); }
.blog-sidebar-pop-date { font-size: .72rem; color: var(--muted); margin-top: .2rem; }
/* Pagination */
.blog-pagination { display: flex; gap: .5rem; margin-top: 2rem; flex-wrap: wrap; }
.blog-pg-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 .5rem; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .83rem; color: var(--text-lt); transition: var(--ease); }
.blog-pg-btn:hover { border-color: var(--orange); color: var(--orange); }
.blog-pg-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 700; }
@media (max-width: 900px) {
  .blog-list-img { width: 130px; }
  .blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .blog-list-item { flex-direction: column; }
  .blog-list-img { width: 100%; height: 180px; }
  .blog-list-body { padding: 1rem; }
}

/* ══════════════════════════════════════════════════════════
   SAFARI CARDS — fix overflow issue in slider
══════════════════════════════════════════════════════════ */
.safari-grid-wrap { position: relative; }
.safari-grid-wrap > div { overflow: hidden; }
.safari-grid-inner { display: flex; gap: 1.5rem; transition: transform .42s cubic-bezier(.4,0,.2,1); will-change: transform; }
.safari-grid-inner .safari-card { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   SECTION-TITLE fallback (used by book.php etc old classes)
══════════════════════════════════════════════════════════ */
.section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 700; line-height: 1.2; color: var(--text); }
.section-subtitle { font-size: .95rem; color: var(--text-lt); line-height: 1.75; max-width: 580px; margin-top: .6rem; }

/* ══════════════════════════════════════════════════════════
   BLOG SIDEBAR & WIDGETS
══════════════════════════════════════════════════════════ */
.blog-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.blog-widget {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.25rem;
}
.blog-widget-title {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text); margin-bottom: .85rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--border);
}
.blog-widget-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .48rem 0; border-bottom: 1px solid var(--border);
  font-size: .85rem; color: var(--text-lt); transition: color .2s;
}
.blog-widget-link:last-of-type { border-bottom: none; }
.blog-widget-link:hover, .blog-widget-link-active { color: var(--orange); font-weight: 600; }
.blog-widget-link span:last-child {
  background: var(--light); font-size: .7rem; font-weight: 600;
  padding: .15rem .5rem; border-radius: 50px; color: var(--muted);
}
.blog-widget-post {
  display: flex; gap: .75rem; padding: .6rem 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.blog-widget-post:last-child { border-bottom: none; }
.blog-widget-post img {
  width: 54px; height: 44px; object-fit: cover;
  border-radius: 6px; flex-shrink: 0;
}
.blog-widget-post-title { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.blog-widget-post-title:hover { color: var(--orange); }
.blog-widget-post-meta { font-size: .72rem; color: var(--muted); margin-top: .18rem; }
.blog-widget-cta {
  background: var(--dark) !important; border-color: transparent !important;
}
.blog-widget-cta .blog-widget-title { color: rgba(255,255,255,.5) !important; border-color: rgba(255,255,255,.1) !important; }

/* ══════════════════════════════════════════════════════════
   BLOG LIST ITEMS — extra classes
══════════════════════════════════════════════════════════ */
.blog-list-read {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 600; color: var(--orange);
}
.blog-list-read svg { width: 13px; height: 13px; transition: transform .2s; }
.blog-list-item:hover .blog-list-read svg { transform: translateX(3px); }
.blog-list-readtime { font-size: .75rem; color: var(--muted); }

/* Blog pagination — unified class */
.blog-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .6rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .83rem; color: var(--text-lt); transition: var(--ease);
  text-decoration: none;
}
.blog-page-btn:hover { border-color: var(--orange); color: var(--orange); }
.blog-page-active { background: var(--orange) !important; border-color: var(--orange) !important; color: #fff !important; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   SINGLE BLOG POST
══════════════════════════════════════════════════════════ */
.blog-post-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 3rem; align-items: start;
}
.blog-post-content { min-width: 0; }
.blog-post-sidebar { position: sticky; top: 88px; }
.blog-post-lead {
  font-size: 1.05rem; color: var(--text-lt); line-height: 1.8;
  border-left: 3px solid var(--orange); padding-left: 1.1rem;
  margin-bottom: 2rem; font-style: italic;
}
.blog-post-body {
  font-size: .95rem; color: var(--text); line-height: 1.85;
}
.blog-post-body h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 2.2rem 0 .75rem; }
.blog-post-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 1.75rem 0 .55rem; }
.blog-post-body p { margin-bottom: 1.2rem; }
.blog-post-body ul, .blog-post-body ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.blog-post-body li { margin-bottom: .45rem; line-height: 1.7; }
.blog-post-body a { color: var(--orange); text-decoration: underline; }
.blog-post-body strong { font-weight: 700; color: var(--text); }
.blog-post-body img { max-width: 100%; border-radius: var(--r-md); margin: 1.5rem 0; }
.blog-post-body blockquote {
  border-left: 3px solid var(--orange); padding: 1rem 1.25rem;
  margin: 1.5rem 0; background: var(--off-white); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic; color: var(--text-lt);
}
.blog-post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .88rem; }
.blog-post-body table th { background: var(--light); padding: .65rem .9rem; text-align: left; font-weight: 700; border: 1px solid var(--border); }
.blog-post-body table td { padding: .6rem .9rem; border: 1px solid var(--border); }
.blog-post-body table tr:nth-child(even) td { background: var(--off-white); }

/* Tags */
.blog-post-tags {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: 2rem;
}
.blog-tag-pill {
  display: inline-block; background: var(--orange-lt); color: var(--orange-dk);
  border: 1px solid rgba(212,114,26,.2); border-radius: 50px;
  font-size: .75rem; font-weight: 600; padding: .25rem .75rem;
}
.blog-tag-pill:hover { background: var(--orange); color: #fff; }

/* Share */
.blog-share {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  padding: 1.25rem 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin: 1.5rem 0;
}
.blog-share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-lt); transition: var(--ease);
}
.blog-share-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.blog-share-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }

/* Prev / Next */
.blog-prev-next {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.blog-prev-next-link {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem 1.25rem; background: var(--off-white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.blog-prev-next-link:hover { border-color: var(--orange); box-shadow: var(--sh-sm); }
.blog-prev-next-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); }
.blog-prev-next-title { font-size: .88rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.blog-cat-pill {
  display: inline-block; background: var(--orange-lt); color: var(--orange-dk);
  border-radius: 50px; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .28rem .8rem;
}

/* Blog meta row */
.blog-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .85rem; }

/* ══════════════════════════════════════════════════════════
   SAFARI SLIDER FIX — equal-width cards, proper overflow
══════════════════════════════════════════════════════════ */
.safari-grid-wrap { position: relative; }
.safari-slider-overflow { overflow: hidden; }
.safari-grid-inner { display: flex; gap: 1.5rem; transition: transform .42s cubic-bezier(.4,0,.2,1); }
.safari-grid-inner .safari-card { flex: 0 0 calc(33.333% - 1rem); min-width: 0; }
@media (max-width: 1024px) { .safari-grid-inner .safari-card { flex: 0 0 calc(50% - .75rem); } }
@media (max-width: 639px) { .safari-grid-inner .safari-card { flex: 0 0 100%; } }

/* ══════════════════════════════════════════════════════════
   PAGINATION — universal centered
══════════════════════════════════════════════════════════ */
.pagination-wrap {
  display: flex; justify-content: center; align-items: center;
  gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.pg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .65rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .85rem; color: var(--text-lt); transition: var(--ease);
  background: var(--white); text-decoration: none; font-weight: 500;
}
.pg-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-lt); }
.pg-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 700; }
.pg-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }
/* Override old gal-pagination to center */
.gal-pagination { justify-content: center; }
.blog-pagination { justify-content: center; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE FIXES
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post-sidebar { position: static; }
  .blog-prev-next { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .safari-grid-wrap { padding: 0; }
}

/* ══════════════════════════════════════════════════════════
   PAGINATION — universal, centered, proper size (FINAL)
══════════════════════════════════════════════════════════ */
.gal-pagination,
.blog-pagination,
.pagination-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: .45rem !important;
  margin-top: 2.5rem !important;
  flex-wrap: wrap;
}
.gal-page-btn,
.blog-page-btn,
.blog-pg-btn,
.pg-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 .75rem !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  font-size: .88rem !important;
  font-weight: 500 !important;
  color: var(--text-lt) !important;
  background: var(--white) !important;
  text-decoration: none !important;
  transition: var(--ease) !important;
  line-height: 1 !important;
  cursor: pointer;
}
.gal-page-btn:hover,
.blog-page-btn:hover,
.blog-pg-btn:hover,
.pg-btn:hover {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
  background: var(--orange-lt) !important;
}
.gal-page-active,
.blog-page-active,
.blog-pg-btn.active,
.pg-btn.active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.gal-page-btn svg,
.blog-page-btn svg,
.pg-btn svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* ══════════════════════════════════════════════════════════
   BLOG POST — fix extra height in sidebar "Filed Under"
══════════════════════════════════════════════════════════ */
.blog-post-sidebar .blog-widget { background: var(--off-white); }
.blog-post-sidebar .blog-widget-title { color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE — cnt-* classes
══════════════════════════════════════════════════════════ */
.cnt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
.cnt-info { display: flex; flex-direction: column; gap: .75rem; }
.cnt-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.1rem 1.25rem; transition: border-color var(--ease), box-shadow var(--ease); }
.cnt-card:hover { border-color: var(--orange); box-shadow: var(--sh-sm); }
.cnt-card-icon { width: 40px; height: 40px; background: var(--orange-lt); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cnt-card-icon svg { width: 18px; height: 18px; stroke: var(--orange); }
.cnt-card-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .25rem; }
.cnt-card-val { font-size: .9rem; color: var(--text); line-height: 1.65; }
.cnt-card-val a:hover { color: var(--orange); }
.cnt-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-sm); }
.cnt-form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
@media (max-width: 860px) { .cnt-grid { grid-template-columns: 1fr; } }