@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================================================
   SAFARI ZANGU VENTURES — Main Stylesheet
   Design: Editorial safari luxury — ink on paper
   Fonts:  Playfair Display (display) × Jost (body/UI)
   Palette: Pure black / white / structured grays only
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --black-soft: #1e1e1e;
  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --gray-1:     #f3f3f1;
  --gray-2:     #e6e6e2;
  --gray-3:     #c4c4be;
  --gray-4:     #888880;
  --gray-5:     #48483e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', system-ui, Helvetica, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --dur:      0.28s;

  --nav-h:     72px;
  --max-w:     1320px;
  --max-width: 1320px; /* alias for inline-style compatibility */
  --pad:       clamp(1.25rem, 4vw, 2.5rem);

  --text-xs:   0.65rem;
  --text-sm:   0.78rem;
  --text-base: 0.925rem;
  --text-md:   1.05rem;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; }
button { font-family: var(--font-body); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}

.display-1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); line-height: 1.05; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2rem,   4vw,   3.4rem); line-height: 1.1;  letter-spacing: -0.015em; }
.display-3 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); }

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  display: block;
  margin-bottom: 0.85rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.section    { padding: clamp(4rem, 8vw,  7rem) var(--pad); }
.section-sm { padding: clamp(3rem, 6vw,  5rem) var(--pad); }
.section-lg { padding: clamp(5rem, 10vw, 9rem) var(--pad); }

.container-sz { max-width: var(--max-w); margin: 0 auto; }

.section-header              { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.centered     { text-align: center; }

.divider-line {
  width: 48px; height: 1px;
  background: var(--black);
  margin: 1.25rem 0;
  transition: width 0.55s var(--ease-out);
}
.section-header.centered .divider-line { margin: 1.25rem auto; }
.section-header:hover .divider-line    { width: 88px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.sz-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  transition: background var(--dur) ease, border-color var(--dur) ease, box-shadow var(--dur) ease;
}
.sz-nav.over-hero { background: transparent; border-bottom-color: transparent; }
.sz-nav.scrolled  { background: var(--white); border-bottom-color: var(--gray-2); box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sz-logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--dur) ease;
}
.sz-nav.over-hero .sz-logo { color: var(--white); }
.sz-nav.scrolled  .sz-logo { color: var(--black); font-weight: 500; }

.sz-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  list-style: none;
}
.sz-nav-links a {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur) ease;
}
.sz-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.sz-nav-links a:hover::after { width: 100%; }
.sz-nav.over-hero .sz-nav-links a { color: rgba(255,255,255,0.9); }
.sz-nav.scrolled  .sz-nav-links a { color: var(--black); font-weight: 500; }


/* WhatsApp nav link */
.sz-nav-wa {
  color: #25D366 !important;
  font-weight: 700 !important;
  border: 1.5px solid #25D366;
  padding: 0.4rem 0.9rem !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.sz-nav-wa:hover { background: #25D366 !important; color: #fff !important; }
.sz-nav-wa::after { display: none !important; }
.sz-nav.over-hero .sz-nav-wa { color: #25D366 !important; border-color: #25D366; }

.sz-nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.35rem !important;
  border: 1.5px solid var(--black) !important;
  font-size: var(--text-xs) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  border-radius: 0;
  transition: background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease !important;
  white-space: nowrap;
}
.sz-nav-cta::after { display: none !important; }
.sz-nav-cta:hover  { background: var(--black-soft) !important; border-color: var(--black-soft) !important; }
.sz-nav.over-hero .sz-nav-cta       { background: rgba(255,255,255,0.12) !important; color: var(--white) !important; border-color: rgba(255,255,255,0.55) !important; }
.sz-nav.over-hero .sz-nav-cta:hover { background: var(--white) !important; color: var(--black) !important; border-color: var(--white) !important; }
.sz-nav.scrolled  .sz-nav-cta       { background: var(--black) !important; color: var(--white) !important; border-color: var(--black) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  width: 42px; height: 42px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.sz-nav.over-hero .nav-toggle span        { background: var(--white); }
.sz-nav.scrolled  .nav-toggle span        { background: var(--black); }
.nav-toggle.is-open span:nth-child(1)     { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2)     { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3)     { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav drawer */
.sz-mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 998;
}
.sz-mobile-nav.open { display: block; }
.sz-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-2);
  transition: background var(--dur) ease, padding-left var(--dur) ease;
  min-height: 52px;
}
.sz-mobile-nav a:not(:last-child):hover { background: var(--gray-1); padding-left: calc(var(--pad) + 6px); }
.sz-mobile-nav a:last-child {
  border-bottom: none;
  background: var(--black);
  color: var(--white);
  justify-content: center;
  letter-spacing: 0.2em;
  padding: 1.1rem var(--pad);
  min-height: 56px;
}
.sz-mobile-nav a:last-child:hover { background: var(--black-soft); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* background-image set dynamically via Admin → Gallery → Set as Hero */
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  transition: transform 9s var(--ease-out);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.05) 35%, transparent 60%),
    linear-gradient(0deg,   rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2)  45%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(3.5rem, 7vw, 6rem);
  width: 100%;
}
.hero-tag {
  font-size: clamp(0.68rem, 1.4vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,255);
  display: block;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 1.1rem;
  max-width: 720px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: clamp(0.68rem, 1.4vw, 0.88rem);
  font-weight: 500;
  color: rgba(255,255,255,255);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  user-select: none;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform:scaleY(0.7); }
  50%      { opacity:1;   transform:scaleY(1); }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-sz-primary, .btn-sz-dark, .btn-sz-outline, .btn-sz-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
  transition: background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease, transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  padding: 0.8rem 2rem;
  border-width: 1.5px;
  border-style: solid;
}
.btn-sz-primary:active, .btn-sz-dark:active, .btn-sz-outline:active, .btn-sz-ghost:active { transform: scale(0.97); }

.btn-sz-primary { background: var(--white);       color: var(--black); border-color: var(--white); }
.btn-sz-primary:hover { background: transparent; color: var(--white); }

.btn-sz-dark    { background: var(--black);       color: var(--white); border-color: var(--black); }
.btn-sz-dark:hover { background: var(--black-soft); border-color: var(--black-soft); }

.btn-sz-outline { background: transparent;        color: var(--black); border-color: var(--black); }
.btn-sz-outline:hover { background: var(--black); color: var(--white); }

.btn-sz-ghost   { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.4); }
.btn-sz-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.8); }

.btn-full { width: 100%; }
.book-now-link { display: inline-flex; align-items: center; justify-content: center; }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--black);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* ── PACKAGE CARDS ──────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--black);
}
.pkg-card {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background var(--dur) ease;
  display: flex;
  flex-direction: column;
}
.pkg-card:nth-child(3n)        { border-right: none; }
.pkg-card:nth-last-child(-n+3) { border-bottom: none; }
.pkg-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2.5px;
  background: var(--black);
  transition: width 0.45s var(--ease-out);
}
.pkg-card:hover::after { width: 100%; }
.pkg-card:hover        { background: var(--gray-1); }

.pkg-number   { font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; font-style: italic; color: var(--black); line-height: 1; margin-bottom: 0.85rem; user-select: none; }
.pkg-title    { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.42rem); font-weight: 500; color: var(--black); margin-bottom: 0.2rem; line-height: 1.2; }
.pkg-duration { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); margin-bottom: 0.85rem; }
.pkg-desc     { font-size: var(--text-base); font-weight: 400; color: var(--black); line-height: 1.65; margin-bottom: 1.35rem; flex: 1; }
.pkg-price    { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; color: var(--black); margin-bottom: 0.15rem; line-height: 1.2; }
.pkg-price-label { font-size: var(--text-xs); color: var(--black); letter-spacing: 0.1em; font-weight: 500; text-transform: uppercase; margin-bottom: 1.35rem; }

/* ── WHY SECTION ────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  border-top: 1.5px solid var(--gray-2);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
}
.why-item  { display: flex; flex-direction: column; }
.why-icon  { width: 34px; height: 34px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--black); flex-shrink: 0; }
.why-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--black); }
.why-text  { font-size: var(--text-base); font-weight: 400; color: var(--black); line-height: 1.7; }

/* ── CUSTOM SAFARI ──────────────────────────────────────────── */
.custom-safari {
  background: var(--off-white);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}
.responsive-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.35rem; }
.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.form-control-sz {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-3);
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-control-sz:focus       { border-color: var(--black); font-weight: 500; box-shadow: 0 0 0 3px rgba(10,10,10,0.07); }
.form-control-sz::placeholder { color: var(--black); font-weight: 500; }
select.form-control-sz {
  color: var(--black); font-weight: 500; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%230a0a0a' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.75rem;
}
textarea.form-control-sz { resize: vertical; min-height: 130px; line-height: 1.6; }

.phone-field-row                      { display: flex; gap: 0.5rem; }
.phone-field-row .phone-code-select   { flex: 0 0 140px; min-width: 0; }
.phone-field-row .phone-number-input  { flex: 1; min-width: 0; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr;     gap: 1.25rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.form-message { margin-top: 1rem; }
.form-message:empty { display: none; }

.alert-sz { padding: 1rem 1.25rem; font-size: var(--text-base); border-left: 3px solid; margin-top: 1rem; line-height: 1.55; }
.alert-sz.success { background: #f0f7f0; border-color: #2a7a2a; color: #174f17; }
.alert-sz.error   { background: #fdf0f0; border-color: #c22020; color: #6b1111; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.testimonial {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1.5px solid var(--gray-2);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) ease;
}
.testimonial:hover { border-color: var(--black); }
.testimonial-quote-mark { font-family: var(--font-display); font-size: 4.5rem; font-style: italic; color: var(--gray-2); line-height: 0.8; margin-bottom: 1rem; user-select: none; }
.testimonial-text   { font-size: var(--text-base); font-weight: 400; font-style: italic; color: var(--black); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.testimonial-author { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 0.2rem; }
.testimonial-origin { font-size: var(--text-xs); font-weight: 400; color: var(--black); letter-spacing: 0.06em; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner { background: var(--black); padding: clamp(4rem, 8vw, 7rem) var(--pad); text-align: center; }
.cta-banner .section-label { color: rgba(255,255,255,0.3); }
.cta-banner-title   { color: var(--white); margin: 1rem 0 2.5rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════
   FOOTER — full responsive system
   ══════════════════════════════════════════════════════════ */

.sz-footer {
  background: #0a0a0a;
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Grid: brand takes 1.8fr, 3 nav cols take 1fr each */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 0;
  align-items: start;
}

/* ── Brand column ─────────────────────────────── */
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: .85rem;
  line-height: 1.15;
}

.footer-brand-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  font-weight: 400;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-brand-actions {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.5rem;
  max-width: 220px;
}

/* WhatsApp button */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.1rem;
  background: #16a34a;
  color: #fff !important;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s;
  border-radius: 2px;
}
.footer-wa-btn:hover { background: #15803d; }
.footer-wa-btn svg {
  width: 16px; height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* Book a Safari ghost button */
.footer-book-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff !important;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .18s, color .18s;
  border-radius: 2px;
}
.footer-book-btn:hover { border-color: #fff; color: #fff !important; }

/* Licence line */
.footer-licence {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
}
.footer-licence-dot { opacity: .35; }

/* ── Nav columns ──────────────────────────────── */

.footer-col-title {
  display: block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .82rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color .18s;
  display: inline-block;
}
.footer-links a:hover { color: #fff; }

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .82rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}
.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color .18s;
}
.footer-contact-item a:hover { color: #fff; }
.footer-contact-icon {
  flex-shrink: 0;
  font-size: .85rem;
  margin-top: .05rem;
  opacity: 1;
}
.footer-contact-item small {
  font-size: .7rem;
  opacity: .65;
}
.footer-response-note {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ── Bottom bar ───────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 1.35rem 0;
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .05em;
}
.footer-copy { color: rgba(255,255,255,.6); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .18s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-sep { opacity: .25; }

/* ═══════════════════════════════════════════════
   FOOTER RESPONSIVE
   ═══════════════════════════════════════════════ */

/* Tablet: 2-column */
@media (max-width: 900px) {
  /* footer responsive handled in footer section */
  .footer-brand-col {
    grid-column: 1 / -1; /* brand spans full width on tablet */
  }
  .footer-brand-desc  { max-width: 100%; }
  .footer-brand-actions { flex-direction: row; max-width: 100%; }
  
}

/* Mobile: single column — everything stacked, left-aligned */
@media (max-width: 540px) {
  .sz-footer {
    padding-top: 3rem;
  }
  
  .footer-brand-col {
    grid-column: 1;
  }
  .footer-brand-name  { font-size: 1.35rem; }
  .footer-brand-desc  { font-size: .8rem; }
  .footer-brand-actions {
    flex-direction: column;
    max-width: 100%;
  }
  .footer-wa-btn,
  .footer-book-btn {
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: .85rem 1rem;
    font-size: .72rem;
  }
  .footer-col-title { margin-bottom: .85rem; }
  .footer-links     { gap: .7rem; }
  .footer-links a   { font-size: .85rem; padding: .1rem 0; }
  .footer-contact-item { font-size: .85rem; }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: .5rem .75rem;
  }
  .footer-licence {
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
  }
  .footer-licence-dot { display: none; }
}

/* ── Keep all footer text white (override any stray rules) ── */
.sz-footer, .sz-footer p, .sz-footer span,
.sz-footer li, .sz-footer small { color: inherit; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding: clamp(7rem, 12vw, 10rem) var(--pad) clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--gray-2);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}
.page-hero-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--white);
}

.page-hero-row   { display: grid; grid-template-columns: 1fr 1fr;      }


/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-sz {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.breadcrumb-sz a { color: var(--black); font-weight: 500; text-decoration: none; transition: color 0.2s; }
.breadcrumb-sz a:hover { color: var(--black); }

/* ── CONFIRMATION BOX ───────────────────────────────────────── */
.confirmation-box { border: 1.5px solid var(--gray-2); padding: clamp(1.75rem, 4vw, 3rem); max-width: 620px; margin: 0 auto; }
.booking-ref-display {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-style: italic;
  letter-spacing: 0.04em;
  background: var(--gray-1);
  border: 1.5px solid var(--gray-2);
  padding: 0.85rem 1.5rem;
  display: inline-block;
  margin: 0.75rem 0;
  word-break: break-all;
  line-height: 1.3;
}

/* ── STATUS BADGES ──────────────────────────────────────────── */
.status-badge     { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.38rem 0.9rem; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border: 1.5px solid currentColor; border-radius: 2px; }
.status-pending   { color: #7a5a10; background: #fdf8ec; }
.status-deposit   { color: #1a4d7a; background: #edf4fc; }
.status-paid      { color: #1a5c1a; background: #edfaed; }
.status-cancelled { color: #6b1616; background: #faeaea; }

/* ── PACKAGE DETAIL PAGE ────────────────────────────────────── */
.pkg-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }

.itinerary-day { display: grid; grid-template-columns: 52px 1fr; gap: 1.25rem; padding: 1.75rem 0; border-bottom: 1px solid var(--gray-2); align-items: start; }
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day-num   { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; color: var(--black); font-weight: 500; line-height: 1; }
.itinerary-day-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; }

.includes-list, .excludes-list { list-style: none; }
.includes-list li, .excludes-list li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.6rem 0; border-bottom: 1px solid var(--gray-2); font-size: var(--text-base); color: var(--black); font-weight: 500; line-height: 1.5; }
.includes-list li:last-child, .excludes-list li:last-child { border-bottom: none; }
.includes-list li::before { content: '✓'; font-weight: 700; color: var(--black); flex-shrink: 0; margin-top: 1px; }
.excludes-list li::before { content: '×'; font-weight: 700; color: var(--black); flex-shrink: 0; margin-top: 1px; }

.pricing-table { border: 1.5px solid var(--gray-2); }
.pricing-row { display: grid; grid-template-columns: 1fr 1fr; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--gray-2); align-items: center; font-size: var(--text-base); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.header { background: var(--black); color: var(--white); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.price-cell { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; }

.pkg-section       { padding: 4.5rem 0; border-bottom: 1px solid var(--gray-2); }
.pkg-section:last-child { border-bottom: none; }
.pkg-section-num   { font-family: var(--font-display); font-size: 5rem; font-style: italic; color: var(--black); font-weight: 500; line-height: 1; display: block; margin-bottom: .5rem; }
.pkg-section-header { margin-bottom: 2.5rem; }
.include-exclude   { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }

.pkg-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  margin-bottom: 2.5rem;
  height: 360px;
}


.pkg-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border: 1px solid var(--gray-2);
  margin-bottom: 4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pkg-nav::-webkit-scrollbar { display: none; }
.pkg-nav a {
  padding: .85rem 1.35rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid var(--gray-2);
  color: var(--black);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  flex-shrink: 0;
}
.pkg-nav a:last-child        { border-right: none; }
.pkg-nav a:hover,
.pkg-nav a.active             { background: var(--black); color: var(--white); }
.active-link::after           { width: 100% !important; }

/* ── BOOKING & SIDEBAR ──────────────────────────────────────── */
.booking-sidebar-col {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  max-height: calc(100vh - var(--nav-h) - 3rem);
  overflow-y: auto;
  align-self: start;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-2) transparent;
}
.booking-sidebar-col::-webkit-scrollbar       { width: 4px; }
.booking-sidebar-col::-webkit-scrollbar-thumb { background: var(--gray-2); border-radius: 2px; }
.booking-widget      { position: relative; border: 1.5px solid var(--gray-2); padding: clamp(1.5rem, 3vw, 2rem); }
.widget-price        { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; font-style: italic; color: var(--black); line-height: 1.15; margin-bottom: 0.2rem; }
.widget-price-note   { font-size: var(--text-xs); color: var(--black); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--gray-2); }
.booking-layout      { display: grid; grid-template-columns: 1fr 380px; gap: clamp(3rem, 5vw, 5rem); align-items: start; }

/* Accommodation selector */
.acc-selector { display: flex; border: 1.5px solid var(--gray-2); margin-bottom: 1.25rem; overflow: hidden; }
.acc-selector input { display: none; }
.acc-selector label {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.3rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-right: 1.5px solid var(--gray-2);
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acc-selector label:last-child { border-right: none; }
.acc-selector input:checked + label,
.acc-selector label.active     { background: var(--black); color: var(--white); }

.acc-selector-pkg              { display: flex; border: 1px solid var(--gray-2); margin-bottom: 1.5rem; }
.acc-selector-pkg label        { flex: 1; text-align: center; padding: .85rem .5rem; font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; border-right: 1px solid var(--gray-2); transition: background .2s, color .2s; user-select: none; }
.acc-selector-pkg label:last-child { border-right: none; }
.acc-selector-pkg input        { display: none; }
.acc-selector-pkg input:checked + label { background: var(--black); color: var(--white); }

/* Payment tabs */
.payment-method-tabs        { display: flex; gap: 0.5rem; margin-bottom: 1.1rem; }
.payment-method-tabs button {
  flex: 1; padding: 0.65rem;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--gray-2); background: var(--white); color: var(--black);
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-height: 44px; border-radius: 0;
}
.payment-method-tabs button.active { background: var(--black); color: var(--white); border-color: var(--black); }
.pm-tab        { flex: 1; padding: 0.65rem; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1.5px solid var(--gray-2); background: var(--white); color: var(--black); cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; min-height: 44px; border-radius: 0; }
.pm-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }
.payment-panel        { display: none; }
.payment-panel.active { display: block; }
#paypal-button-container, #track-paypal-container { margin-top: 0.75rem; min-height: 50px; }

/* ── TEAM (about page) ──────────────────────────────────────── */
.team-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.team-card  { border-top: 1.5px solid var(--gray-2); padding-top: 1.5rem; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gray-2); margin-bottom: 1rem; object-fit: cover; }
.team-name  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.15rem; }
.team-role  { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); margin-bottom: 0.65rem; }
.team-bio   { font-size: var(--text-base); color: var(--black); font-weight: 500; line-height: 1.65; }

.team-social { display: flex; gap: 0.75rem; margin-top: 1rem; align-items: center; }
.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1.5px solid var(--gray-2);
  color: var(--black);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.team-social a:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.team-social a svg   { width: 14px; height: 14px; fill: currentColor; display: block; }

/* ── SPINNER ────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.55s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
  flex-shrink: 0;
}
.btn-sz-outline .spinner, .btn-sz-ghost .spinner { border-color: rgba(0,0,0,0.2); border-top-color: var(--black); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FADE-IN ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.fade-in.visible  { opacity: 1; transform: translateY(0); }
.fade-in-delay-1  { transition-delay: 0.08s; }
.fade-in-delay-2  { transition-delay: 0.16s; }
.fade-in-delay-3  { transition-delay: 0.24s; }
.fade-in-delay-4  { transition-delay: 0.32s; }

/* If JS is slow/broken, force content visible after 1.5s */
@keyframes fadeInFallback {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade-in:not(.visible) { animation: fadeInFallback 0.65s var(--ease-out) 1.5s both; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.text-italic    { font-style: italic; }
.text-center    { text-align: center; }
.text-white     { color: var(--white) !important; }
.text-muted     { color: var(--black); font-weight: 500; }
.bg-off-white   { background: var(--off-white); }
.border-bottom-thin { border-bottom: 1px solid var(--gray-2); }
.w-100          { width: 100%; }
.d-flex         { display: flex; }
.flex-wrap      { flex-wrap: wrap; }
.align-items-center      { align-items: center; }
.align-items-start       { align-items: flex-start; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-3          { gap: 1rem; }
.gap-4          { gap: 1.5rem; }
.mt-2 { margin-top: .5rem; }   .mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }  .mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }.mb-5 { margin-bottom: 3rem; }
.p-3  { padding: 1rem; }        .p-4  { padding: 1.5rem; }
.pt-3 { padding-top: 1rem; }    .pt-4 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: 1rem; }

.font-display  { font-family: var(--font-display); color: var(--black); font-weight: 500; }
.font-display1 { font-family: var(--font-display); color: var(--white); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card:nth-child(3n)        { border-right: 1.5px solid var(--black); }
  .pkg-card:nth-last-child(-n+3) { border-bottom: 1.5px solid var(--black); }
  .pkg-card:nth-child(2n)        { border-right: none; }
  .pkg-card:nth-last-child(-n+2) { border-bottom: none; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  /* footer responsive handled in footer section */
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .testimonial-grid    { grid-template-columns: 1fr; }
  .pkg-detail-grid     { grid-template-columns: 1fr; }
  .booking-layout      { grid-template-columns: 1fr; }
  .booking-sidebar-col { position: static; max-height: none; overflow-y: visible; }
  .booking-widget      { position: static; }
  .page-hero-inner     { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .sz-nav-links { display: none; }
  .nav-toggle   { display: flex; }
  .sz-logo      { font-size: 1.55rem; }

  .hero           { min-height: 580px; }
  .hero-title     { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-sub       { font-size: 0.66rem; letter-spacing: 0.2em; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-sz-primary,
  .hero-actions .btn-sz-ghost { width: 100%; max-width: 320px; }
  .hero-scroll    { display: none; }

  .packages-grid  { grid-template-columns: 1fr; }
  .pkg-card       { border-right: none !important; border-bottom: 1.5px solid var(--black) !important; }
  .pkg-card:last-child { border-bottom: none !important; }

  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number    { font-size: 2rem; }
  .why-grid       { grid-template-columns: 1fr; gap: 2rem; }

  .responsive-two-col { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .about-grid, .values-grid, .contact-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .page-hero-img  { max-width: 100%; }

  .form-row       { grid-template-columns: 1fr; gap: 0; }
  .form-row-3     { grid-template-columns: 1fr; gap: 0; }
  .phone-field-row              { flex-direction: column; gap: 0; }
  .phone-field-row .phone-code-select { flex: none; width: 100%; }

  .testimonial-grid { grid-template-columns: 1fr; }
  
  
  .footer-brand-desc { max-width: 100%; }

  .team-grid      { grid-template-columns: 1fr 1fr; }
  .acc-selector label { font-size: 0.6rem; padding: 0.65rem 0.2rem; }
  .confirmation-box { padding: 1.5rem 1.25rem; }
  .booking-ref-display { font-size: 1.35rem; padding: 0.7rem 1rem; }

  .pkg-gallery    { height: 260px; border-radius: 8px; }
  .include-exclude { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title     { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number    { font-size: 1.75rem; }
  .stat-label     { font-size: 0.58rem; }
  .team-grid      { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn-sz-primary,
  .cta-banner-actions .btn-sz-ghost { width: 100%; max-width: 300px; }
  .testimonial    { padding: 1.25rem; }
  .testimonial-quote-mark { font-size: 3.5rem; }
  .section        { padding: 3rem 1.1rem; }
  .section-lg     { padding: 4rem 1.1rem; }
  .section-sm     { padding: 2.5rem 1.1rem; }
  .pricing-row    { padding: 0.75rem 1rem; }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-bg { transform: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {
  .sz-nav, .sz-mobile-nav, .hero-scroll, #paypal-button-container { display: none !important; }
  .confirmation-box { border: 1px solid #ccc; }
  body { font-size: 12pt; }
}

/* Currency switcher */
.currency-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-2);
  overflow: hidden;
  flex-shrink: 0;
}
.currency-switcher button {
  background: none;
  border: none;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: var(--black);
  border-right: 1px solid var(--gray-2);
  transition: background 0.2s, color 0.2s;
}
.currency-switcher button:last-child { border-right: none; }
.currency-switcher button.active,
.currency-switcher button:hover { background: var(--black); color: var(--white); }

/* Trust strip */
.trust-strip {
  background: var(--gray-1);
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 1rem var(--pad);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}
.trust-stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 24px; background: var(--gray-2); flex-shrink: 0; }
@media (max-width: 640px) { .trust-divider { display: none; } .trust-strip-inner { gap: 1rem; justify-content: flex-start; } }




/* ── PACKAGE GALLERY / SLIDER (definitive) ─────────────────── */
/* pkg-gallery: see slider definition below */
.pkg-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .65s ease-in-out;
  display: block;
}
.pkg-gallery img.active,
.pkg-gallery img:first-child { opacity: 1; }

.pkg-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pkg-slider-btn:hover { background: rgba(0,0,0,.8); }
.pkg-slider-prev, .pkg-prev { left: 14px; }
.pkg-slider-next, .pkg-next { right: 14px; }

/* Home package cards slider */
.home-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  margin-bottom: 1.1rem;
}
.home-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease-in-out;
  display: block;
}
.home-slider img:first-child { opacity: 1; }
.home-prev, .home-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background .2s;
}
.home-prev:hover, .home-next:hover { background: rgba(0,0,0,.8); }
.home-prev { left: 8px; }
.home-next { right: 8px; }

@media (max-width: 768px) {
  .pkg-gallery  { height: 260px; border-radius: 8px; }
  .home-slider  { height: 180px; }
}

/* ── BIG SCREEN OPTIMIZATIONS (≥1400px) ───────────────────── */
@media (min-width: 1400px) {
  .packages-grid    { grid-template-columns: repeat(3, 1fr); }
  .pkg-detail-grid  { grid-template-columns: 1fr 380px; gap: 5rem; }
  .booking-layout   { grid-template-columns: 1fr 400px; gap: 5rem; }
  .home-slider      { height: 260px; }
  .pkg-gallery      { height: 480px; }
  .section          { padding: 7rem 2.5rem; }
  .section-lg       { padding: 9rem 2.5rem; }
}

/* ── FORM SECTION STYLES ───────────────────────────────────── */
.sz-form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-2);
}
.sz-form-section:last-of-type { border-bottom: none; }

.sz-form-section-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.sz-form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-2);
}

.sz-required { color: var(--black); font-weight: 700; margin-left: .2rem; }
.sz-hint {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0;
  text-transform: none;
  margin-left: .35rem;
  opacity: 1;
}

/* Loading button state */
.btn-sz-dark.is-loading,
.btn-sz-outline.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .75;
}
.btn-sz-dark.is-loading::after,
.btn-sz-outline.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .55s linear infinite;
  margin-left: .5rem;
  vertical-align: middle;
}
.btn-sz-outline.is-loading::after { border-color: rgba(0,0,0,.2); border-top-color: var(--black); }

/* Price preview box */
.sz-price-preview {
  border: 1.5px solid var(--black);
  padding: 1.25rem;
  background: var(--gray-1);
}
.sz-price-preview-total {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: .5rem;
}
.sz-price-breakdown {
  font-size: .78rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.9;
}

/* Alert form messages */
.form-message.success {
  background: #f0f7f0;
  border-left: 3px solid #2a7a2a;
  color: #174f17;
  padding: .85rem 1.1rem;
  font-size: .85rem;
  font-weight: 500;
}
.form-message.error {
  background: #fdf0f0;
  border-left: 3px solid #c22020;
  color: #6b1111;
  padding: .85rem 1.1rem;
  font-size: .85rem;
  font-weight: 500;
}

/* Trust badge strip active */
.trust-strip { display: block; }

/* Track page: narrower content for readability */
.track-container { max-width: 760px; margin: 0 auto; }

/* Package page: sticky nav bar */
.pkg-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--white);
  margin-bottom: 3rem;
}

/* About page hero image fix */
.page-hero-img {
  max-width: 420px;
  border-radius: 4px;
  object-fit: cover;
}

/* Confirmation page */
.confirmation-two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .confirmation-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Contact page map placeholder better height */
.map-placeholder {
  border: 1px solid var(--gray-2);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  background: var(--gray-1);
  margin-top: 2rem;
}

/* Booking widget polish */
.booking-widget {
  border: 1.5px solid var(--gray-2);
  background: var(--white);
}
.booking-widget:hover {
  border-color: var(--gray-3);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: box-shadow .25s ease, border-color .25s ease;
}

/* Package pricing table */
.pricing-table {
  border: 1.5px solid var(--gray-2);
  overflow: hidden;
}

/* Why-grid icons */
.why-icon {
  background: var(--off-white);
  border: 1.5px solid var(--gray-2);
  transition: background .2s ease, border-color .2s ease;
}
.why-item:hover .why-icon {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.why-item:hover .why-icon svg { stroke: var(--white); }

/* CTA Banner button spacing */
.cta-banner-actions { gap: 1.25rem; }
.cta-banner-actions a { min-width: 200px; }

/* Nav: active page indicator */
.sz-nav-links a.active-link::after { width: 100%; }

/* ── PUBLIC PAGE FIXES ──────────────────────────────────────── */

/* Navbar: ensure no overflow on mobile */
.sz-nav-links {
  flex-wrap: wrap;
}

/* Hero section: consistent min-height on big screens */
@media (min-width: 1200px) {
  .page-hero {
    min-height: 42vh;
  }
  .page-hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

/* About page: team grid responsive */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: .5rem;
  flex-shrink: 0;
}
.team-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.team-role { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9ca3af; }
.team-bio  { font-size: .85rem; line-height: 1.75; color: var(--black); font-weight: 400; flex: 1; }
.team-social { display: flex; gap: .75rem; margin-top: .5rem; }
.team-social a { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border: 1px solid var(--gray-2); }
.team-social a svg { width: 13px; height: 13px; fill: var(--black); }
.team-social a:hover { background: var(--black); }
.team-social a:hover svg { fill: var(--white); }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Values grid responsive */
.values-grid {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr !important; gap: 1rem; }
}
@media (max-width: 480px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
}

/* pkg-gallery: ensure single definitive rule wins */
.pkg-gallery { position: relative; width: 100%; height: 420px; overflow: hidden; background: #111; }
.pkg-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease-in-out; display: block; }
.pkg-gallery img.active, .pkg-gallery img:first-child { opacity: 1; }
.pkg-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background .2s; }
.pkg-slider-btn:hover { background: rgba(0,0,0,.8); }
.pkg-slider-prev, .pkg-prev { left: 12px; }
.pkg-slider-next, .pkg-next { right: 12px; }

/* home-slider */
.home-slider { position: relative; width: 100%; height: 220px; overflow: hidden; background: #111; }
.home-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .55s ease-in-out; display: block; }
.home-slider img.active { opacity: 1; }
.home-prev, .home-next { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border: none; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.home-prev { left: 8px; }
.home-next { right: 8px; }

@media (max-width: 768px) {
  .pkg-gallery  { height: 260px; }
  .home-slider  { height: 180px; }
}
@media (min-width: 1400px) {
  .pkg-gallery  { height: 480px; }
  .home-slider  { height: 260px; }
}

/* track.php — narrower container */
.track-container { max-width: 780px; margin: 0 auto; }

/* book.php — price preview */
.sz-price-preview { border: 1.5px solid var(--black); padding: 1.25rem 1.5rem; background: var(--off-white); }
.sz-price-preview-total { font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: .35rem; }
.sz-price-breakdown { font-size: .78rem; font-weight: 500; line-height: 1.9; }

/* contact.php map placeholder */
.map-placeholder { border: 1px solid var(--gray-2); height: 240px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .75rem; background: var(--gray-1); margin-top: 2rem; }

/* terms.php / privacy-policy.php section spacing */
.legal-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--gray-2); }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: .85rem; }
.legal-section p  { font-size: .9rem; line-height: 1.85; font-weight: 400; }

/* footer: licence numbers */
.footer-legal { font-size: .7rem; opacity: .45; margin-top: .35rem; }
.footer-legal a { color: inherit; text-decoration: none; margin-right: 1rem; }
.footer-legal a:hover { opacity: .8; }

/* ── FOOTER VISIBILITY OVERRIDE — all text pure white ────── */
.sz-footer,
.sz-footer p,
.sz-footer span:not(.footer-contact-icon),
.sz-footer li,
.sz-footer a,
.sz-footer small,
.sz-footer .footer-brand-name,
.sz-footer .footer-brand-desc,
.sz-footer .footer-col-title,
.sz-footer .footer-links a,
.sz-footer .footer-contact-item,
.sz-footer .footer-contact-item a,
.sz-footer .footer-copy,
.sz-footer .footer-bottom-links a,
.sz-footer .footer-licence,
.sz-footer .footer-response-note {
  color: #fff !important;
}
/* Subtle hover dimming */
.sz-footer .footer-links a:hover,
.sz-footer .footer-contact-item a:hover,
.sz-footer .footer-bottom-links a:hover { opacity: .7; }
/* Column titles — slightly muted but still visible */
.sz-footer .footer-col-title { color: rgba(255,255,255,.75) !important; }
/* Bottom bar and licence — slightly muted */
.sz-footer .footer-bottom,
.sz-footer .footer-copy,
.sz-footer .footer-bottom-links a,
.sz-footer .footer-licence { color: rgba(255,255,255,.75) !important; }
/* Response note — intentionally quieter */
.sz-footer .footer-response-note { color: rgba(255,255,255,.6) !important; }
/* Bottom separator dots */
.sz-footer .footer-bottom-sep,
.sz-footer .footer-licence-dot { color: rgba(255,255,255,.3) !important; }


/* ── WHATSAPP FLOAT BUTTON ─────────────────────────────────── */
.wa-float {
  position:fixed;bottom:1.75rem;right:1.75rem;z-index:500;
  display:flex;align-items:center;gap:.6rem;
  background:#16a34a;color:#fff!important;
  padding:.8rem 1.25rem .8rem 1rem;border-radius:50px;
  text-decoration:none;box-shadow:0 4px 20px rgba(22,163,74,.35);
  transform:translateY(120px);opacity:0;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1),opacity .25s ease;
}
.wa-float svg{width:22px;height:22px;fill:#fff;flex-shrink:0}
.wa-float-label{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap;color:#fff!important}
.wa-float--visible{transform:translateY(0);opacity:1}
.wa-float:hover{background:#15803d;box-shadow:0 6px 24px rgba(22,163,74,.5)}
@media(max-width:540px){
  .wa-float{bottom:1.1rem;right:1.1rem;padding:.9rem;border-radius:50%;width:52px;height:52px;justify-content:center}
  .wa-float-label{display:none}
}


/* ════════════════════════════════════════════════════════════
   SAFARI ZANGU — UI ENHANCEMENT LAYER
   Applied on top of existing design system.
   All additions are additive — nothing overwritten.
   ════════════════════════════════════════════════════════════ */

/* ── ENHANCED TOKENS ─────────────────────────────────────────
   Add warm accent gold for luxury feel + subtle amber undertone */
:root {
  --gold:       #c8963e;
  --gold-light: #f5edd9;
  --gold-muted: rgba(200,150,62,.18);
  --green-trust:#15803d;
  --surface:    #fafaf8;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --radius:     2px;
}

/* ── BODY REFINEMENTS ────────────────────────────────────────
   Slight warm tint to off-white for luxury paper feel */
body {
  background: #fefefe;
  color: #0f0f0d;
}

/* ── SELECTION COLOUR ────────────────────────────────────────*/
::selection { background: var(--gold-light); color: #0a0a0a; }

/* ── SCROLL BAR (WebKit) ─────────────────────────────────────*/
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4ce; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a0a09a; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Logo — make it more distinctive */
.sz-logo {
  font-size: 1.1rem !important;
  letter-spacing: .38em !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  text-transform: uppercase;
}
.sz-logo em { font-style: italic; font-family: var(--font-display); font-weight: 400; }
.sz-nav.over-hero .sz-logo { color: #fff !important; }

/* Nav link underline — gold on hover */
.sz-nav-links a::after { background: var(--gold) !important; height: 1.5px !important; }

/* Book Now CTA — warm gold accent */
.sz-nav-cta {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}
.sz-nav-cta:hover {
  background: #b8842e !important;
  border-color: #b8842e !important;
}
.sz-nav.over-hero .sz-nav-cta {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.55) !important;
  color: #fff !important;
}
.sz-nav.over-hero .sz-nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO REFINEMENTS
   ═══════════════════════════════════════════════════════════ */

/* Hero tag — white accent */
.hero-tag {
  color: var(--white) !important;
  letter-spacing: .28em;
  font-size: .72rem;
}

/* Hero sub — slightly warmer */
.hero-sub { color: rgba(255,255,255,.82) !important; }

/* Hero actions — primary button gets gold */
.hero-actions .btn-sz-primary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}
.hero-actions .btn-sz-primary:hover {
  background: #b8842e !important;
  border-color: #b8842e !important;
}

/* Scroll indicator — gold line */
.scroll-line {
  background: linear-gradient(to bottom, transparent, var(--gold)) !important;
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABEL — gold accent instead of plain black
   ═══════════════════════════════════════════════════════════ */
.section-label {
  color: var(--gold) !important;
  font-size: .62rem;
  letter-spacing: .32em;
}

/* Divider line — gold */
.divider-line {
  background: var(--gold) !important;
  height: 2px !important;
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE CARDS — enhanced visual impact
   ═══════════════════════════════════════════════════════════ */

/* Cards grid — warmer border */
.packages-grid {
  border-color: var(--gray-2) !important;
  gap: 0;
}

.pkg-card {
  border-color: var(--gray-2) !important;
  transition: background var(--dur) ease, box-shadow var(--dur) ease, transform .2s ease !important;
  padding: 2.25rem 2rem !important;
}
.pkg-card:hover {
  background: var(--surface) !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-2px);
  z-index: 1;
  position: relative;
}

/* Gold accent bar on hover instead of black */
.pkg-card::after { background: var(--gold) !important; height: 3px !important; }

/* Number — gold italic */
.pkg-number {
  color: var(--gold) !important;
  font-size: 2.2rem !important;
  font-style: italic;
  margin-bottom: 1rem !important;
}

/* Title — slightly larger */
.pkg-title {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem) !important;
  letter-spacing: -.01em;
  margin-bottom: .3rem !important;
}

/* Duration — gold uppercase label */
.pkg-duration {
  color: var(--gold) !important;
  font-size: .6rem !important;
  letter-spacing: .22em !important;
  margin-bottom: 1rem !important;
}

/* Description text — better colour contrast */
.pkg-desc {
  color: #3d3d35 !important;
  font-size: .9rem !important;
  line-height: 1.75 !important;
}

/* Price — larger, more impact */
.pkg-price {
  font-size: 1.75rem !important;
  letter-spacing: -.01em;
}
.pkg-price-label {
  color: #7a7a72 !important;
  font-size: .6rem !important;
  letter-spacing: .14em !important;
}

/* Image slider inside cards — taller, better aspect ratio */
.home-slider {
  margin-bottom: 1.5rem !important;
  height: 200px !important;
  overflow: hidden;
  position: relative;
}
.home-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP — make it visible and trustworthy
   ═══════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--gold-light) !important;
  border-color: rgba(200,150,62,.25) !important;
  padding: 1.1rem var(--pad) !important;
}
.trust-stars { color: var(--gold) !important; }
.trust-item  { font-size: .72rem !important; }

/* ═══════════════════════════════════════════════════════════
   WHY SECTION ICONS
   ═══════════════════════════════════════════════════════════ */
.why-icon {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  width: 38px !important;
  height: 38px !important;
  background: var(--gold-light);
}
.why-title { font-size: 1.15rem !important; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS — enhanced system
   ═══════════════════════════════════════════════════════════ */

/* Primary (white) — keep but sharper */
.btn-sz-primary {
  letter-spacing: .16em !important;
  font-size: .68rem !important;
}

/* Dark — clean black */
.btn-sz-dark {
  letter-spacing: .16em !important;
  font-size: .68rem !important;
}
.btn-sz-dark:hover {
  background: #1e1e1e !important;
  border-color: #1e1e1e !important;
}

/* Outline — gold border + gold text on hover */
.btn-sz-outline {
  letter-spacing: .16em !important;
  font-size: .68rem !important;
}
.btn-sz-outline:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   FORMS — cleaner, more spacious
   ═══════════════════════════════════════════════════════════ */

.form-label {
  color: #3d3d35 !important;
  font-size: .62rem !important;
  letter-spacing: .16em !important;
  margin-bottom: .55rem !important;
}

.form-control-sz {
  border-color: #d8d8d2 !important;
  background: #fdfdfb !important;
  font-size: .88rem !important;
  padding: .95rem 1.1rem !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  color: #0f0f0d !important;
}
.form-control-sz::placeholder { color: #a0a09a !important; font-weight: 400 !important; }
.form-control-sz:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200,150,62,.12) !important;
  background: #fff !important;
}

/* Hint text */
.sz-hint {
  font-size: .62rem !important;
  color: #9a9a92 !important;
  font-weight: 400 !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
  margin-left: .5rem;
}

/* Required asterisk — gold */
.sz-required { color: var(--gold) !important; }

/* Alert improvements */
.alert-sz.success {
  background: #f0fdf4 !important;
  border-color: var(--green-trust) !important;
  color: #14532d !important;
}
.alert-sz.error {
  background: #fef2f2 !important;
  border-color: #b91c1c !important;
  color: #7f1d1d !important;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages) — more dramatic
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: clamp(7.5rem, 13vw, 11rem) !important;
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem) !important;
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  border-bottom: 1px solid var(--gray-2) !important;
  position: relative;
}
/* Subtle top gold accent */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

/* Breadcrumb — gold separator */
.breadcrumb-sz { color: #7a7a72 !important; }
.breadcrumb-sz a { color: var(--gold) !important; font-weight: 500 !important; }
.breadcrumb-sz span { color: #c0c0b8 !important; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — more warmth
   ═══════════════════════════════════════════════════════════ */
.testimonial {
  background: var(--surface) !important;
  border-color: var(--gray-2) !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
}
.testimonial:hover {
  border-color: var(--gold) !important;
  box-shadow: var(--shadow-sm) !important;
}
.testimonial-quote-mark { color: var(--gold-light) !important; }
.testimonial-text { color: #2a2a22 !important; font-size: .88rem !important; }
.testimonial-author { letter-spacing: .12em !important; }

/* Stars in testimonials */
.testimonial-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   TEAM CARDS — photo-forward design
   ═══════════════════════════════════════════════════════════ */
.team-card {
  border-top-color: var(--gold) !important;
  border-top-width: 2px !important;
  padding-top: 1.75rem !important;
  transition: transform .2s ease !important;
}
.team-card:hover { transform: translateY(-3px); }

.team-avatar {
  width: 80px !important;
  height: 80px !important;
  background: var(--black) !important;
  margin-bottom: 1.1rem !important;
  border-radius: 0 !important;
}

.team-name { font-size: 1.12rem !important; margin-bottom: .25rem !important; }
.team-role { color: var(--gold) !important; font-size: .6rem !important; letter-spacing: .18em !important; margin-bottom: .75rem !important; }
.team-bio  { font-size: .84rem !important; color: #3d3d35 !important; font-weight: 400 !important; line-height: 1.72 !important; }

.team-social a {
  border-color: var(--gray-2) !important;
  width: 34px !important;
  height: 34px !important;
}
.team-social a:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   ITINERARY DAY NUMBERS — gold accent
   ═══════════════════════════════════════════════════════════ */
.itinerary-day-num   { color: var(--gold) !important; }
.itinerary-day-title { color: #0f0f0d !important; }
.itinerary-day { border-bottom-color: var(--gray-2) !important; }

/* ═══════════════════════════════════════════════════════════
   INCLUDES / EXCLUDES LISTS
   ═══════════════════════════════════════════════════════════ */
.includes-list li::before { color: var(--green-trust) !important; }
.excludes-list li::before { color: #dc2626 !important; }
.includes-list li, .excludes-list li {
  color: #2a2a22 !important;
  font-weight: 400 !important;
  font-size: .88rem !important;
}

/* ═══════════════════════════════════════════════════════════
   PRICING TABLE — more punch
   ═══════════════════════════════════════════════════════════ */
.pricing-table { border-color: var(--gray-2) !important; }
.pricing-row.header { background: var(--black) !important; }
.price-cell { color: #0f0f0d !important; font-size: 1.15rem !important; }
.pricing-row { border-bottom-color: var(--gray-2) !important; }

/* ═══════════════════════════════════════════════════════════
   BOOKING WIDGET — premium sidebar
   ═══════════════════════════════════════════════════════════ */
.booking-widget {
  border-color: var(--gray-2) !important;
  background: var(--surface) !important;
  box-shadow: var(--shadow-sm) !important;
}
.widget-price { color: #0f0f0d !important; }
.widget-price-note { border-bottom-color: var(--gray-2) !important; }

/* Accommodation selector — gold active */
.acc-selector input:checked + label,
.acc-selector label.active,
.acc-selector-pkg input:checked + label {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

/* Payment tabs — gold active */
.payment-method-tabs button.active,
.pm-tab.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   STATUS BADGES — cleaner colours
   ═══════════════════════════════════════════════════════════ */
.status-badge   { border-radius: 2px !important; font-size: .6rem !important; letter-spacing: .12em !important; }
.status-pending { background: #fffbeb !important; color: #92400e !important; border-color: #fcd34d !important; }
.status-deposit { background: #eff6ff !important; color: #1d4ed8 !important; border-color: #93c5fd !important; }
.status-paid    { background: #f0fdf4 !important; color: #166534 !important; border-color: #86efac !important; }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER — more refined
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1408 100%) !important;
  position: relative;
  overflow: hidden;
}
/* Subtle gold texture */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,150,62,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .section-label {
  color: rgba(200,150,62,.6) !important;
}
.cta-banner-actions .btn-sz-primary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}
.cta-banner-actions .btn-sz-primary:hover {
  background: #b8842e !important;
  border-color: #b8842e !important;
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE DETAIL GALLERY — better proportions
   ═══════════════════════════════════════════════════════════ */
.pkg-gallery {
  height: 420px !important;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: var(--shadow-md) !important;
}
.pkg-gallery > img:first-child {
  grid-row: span 2;
}

/* Slider buttons — gold on hover */
.pkg-slider-btn {
  background: rgba(0,0,0,.45) !important;
  backdrop-filter: blur(4px);
  transition: background .2s ease !important;
}
.pkg-slider-btn:hover { background: var(--gold) !important; }

/* ═══════════════════════════════════════════════════════════
   PACKAGE NAVIGATION (packages page) — gold active
   ═══════════════════════════════════════════════════════════ */
.pkg-nav {
  border-color: var(--gray-2) !important;
  border-radius: 0 !important;
}
.pkg-nav a {
  border-right-color: var(--gray-2) !important;
  font-size: .6rem !important;
  color: #5a5a52 !important;
  padding: .9rem 1.5rem !important;
  transition: background .2s, color .2s !important;
}
.pkg-nav a:hover, .pkg-nav a.active {
  background: var(--gold) !important;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE MAP — styled container
   ═══════════════════════════════════════════════════════════ */
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--gray-2);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.footer-wa-btn { background: var(--green-trust) !important; }
.footer-wa-btn:hover { background: #166534 !important; }

.footer-book-btn { border-color: var(--gold) !important; color: var(--gold) !important; }
.footer-book-btn:hover { border-color: var(--gold) !important; background: var(--gold) !important; color: #fff !important; }

.footer-links a:hover { color: var(--gold) !important; }

.footer-licence { color: rgba(255,255,255,.5) !important; }
.footer-col-title { color: rgba(200,150,62,.7) !important; }

/* Gold accent at top of footer */
.sz-footer {
  position: relative;
}
.sz-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .5;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON — more refined
   ═══════════════════════════════════════════════════════════ */
.wa-float {
  box-shadow: 0 4px 20px rgba(21,128,61,.35) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.wa-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 6px 28px rgba(21,128,61,.45) !important;
}

/* ═══════════════════════════════════════════════════════════
   FADE-IN — slightly faster for snappier feel
   ═══════════════════════════════════════════════════════════ */
.fade-in {
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out) !important;
}

/* ═══════════════════════════════════════════════════════════
   TRACK BOOKING PAGE — result display
   ═══════════════════════════════════════════════════════════ */
.track-container { max-width: 680px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — values grid
   ═══════════════════════════════════════════════════════════ */
.values-grid > div {
  transition: box-shadow .2s ease, transform .2s ease !important;
}
.values-grid > div:hover {
  box-shadow: var(--shadow-sm) !important;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   ADMIN PANEL TWEAKS — ensure admin pages aren't affected
   Scope all above to non-admin pages
   ═══════════════════════════════════════════════════════════ */

/* ── RESPONSIVE ENHANCEMENTS ─────────────────────────────────*/
@media (max-width: 768px) {
  .home-slider { height: 180px !important; }
  .pkg-gallery  { height: 280px !important; }
  .pkg-card { padding: 1.75rem 1.5rem !important; }
  .pkg-price { font-size: 1.45rem !important; }
}

@media (max-width: 480px) {
  .trust-strip { padding: .85rem var(--pad) !important; }
  .team-grid { gap: 1.5rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT — ensure gold doesn't print as invisible yellow
   ═══════════════════════════════════════════════════════════ */
@media print {
  :root { --gold: #7a5a10; --gold-light: #f5f0e0; }
}


/* ═══════════════════════════════════════════════════════════════
   SAFARI ZANGU — RESPONSIVE REDESIGN LAYER
   Fixes all 17 audit issues. Mobile-first corrections on top of
   the existing design system. Tested: 320px → 2560px.
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS (additions) ─────────────────────────────────────── */
:root {
  --gold:        #c8963e;
  --gold-light:  #f5edd9;
  --gold-muted:  rgba(200,150,62,.15);
  --green-trust: #15803d;
  --radius-sm:   2px;
  --shadow-card: 0 2px 12px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lift: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
}

/* ── [C1] LOGO — full wordmark ─────────────────────────────── */
.sz-logo {
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: .01em !important;
  color: var(--black) !important;
  white-space: nowrap;
}
.sz-nav.over-hero .sz-logo { color: var(--white) !important; }

/* Active nav link ───────────────────────────────────────────── */
.sz-nav-links a.active-link {
  color: var(--gold) !important;
}
.sz-nav-links a.active-link::after {
  width: 100% !important;
  background: var(--gold) !important;
}

/* Mobile nav: active link highlight */
.sz-mobile-nav a.active-link {
  color: var(--gold) !important;
  background: rgba(200,150,62,.06) !important;
}

/* ── [C2] HERO — mobile button fix ─────────────────────────── */
@media (max-width: 480px) {
  .hero-content {
    padding-bottom: 4rem !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .65rem !important;
    max-width: 100% !important;
  }
  .hero-actions .btn-sz-primary,
  .hero-actions .btn-sz-ghost {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
    font-size: .72rem !important;
  }
  .hero-tag {
    font-size: .62rem !important;
    letter-spacing: .22em !important;
  }
  .hero-sub {
    font-size: .62rem !important;
    letter-spacing: .18em !important;
    margin-bottom: 1.75rem !important;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.4rem) !important;
  }
  .hero-content {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
}

/* ── [C3] PACKAGE CARDS — touch targets ─────────────────────── */
@media (max-width: 768px) {
  .pkg-card .btn-sz-dark,
  .pkg-card .btn-sz-outline,
  .pkg-card a[class^="btn"] {
    min-height: 52px !important;
    width: 100% !important;
    justify-content: center !important;
    font-size: .72rem !important;
  }
  .pkg-number {
    font-size: 1.8rem !important;
    margin-bottom: .65rem !important;
  }
  .pkg-desc {
    font-size: .875rem !important;
    line-height: 1.7 !important;
  }
}

/* ── [C4] FOOTER GRID — full responsive system ───────────────── */
.footer-grid {
  grid-template-columns: 1.8fr 1fr 1fr 1fr !important;
}

/* 1024px: brand spans 2 cols, nav cols 2-col */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem 3rem !important;
  }
  .footer-brand-col {
    grid-column: 1 / -1 !important;
  }
  .footer-brand-desc {
    max-width: 100% !important;
  }
  .footer-brand-actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
}

/* 640px: single column */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .footer-brand-col {
    grid-column: 1 !important;
  }
  .footer-brand-actions {
    flex-direction: column !important;
  }
  .footer-wa-btn,
  .footer-book-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: .9rem 1.25rem !important;
    font-size: .75rem !important;
  }
  .footer-links a {
    font-size: .875rem !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
  }
  .footer-contact-item {
    font-size: .875rem !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .75rem !important;
  }
  .footer-bottom-links {
    flex-wrap: wrap !important;
    gap: .5rem .75rem !important;
  }
}

/* ── [C5] FORMS — collapse earlier ─────────────────────────── */
@media (max-width: 680px) {
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .phone-field-row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .phone-field-row .phone-code-select {
    flex: none !important;
    width: 100% !important;
    border-bottom: none !important;
  }
}

/* ── [C6] PKG-GALLERY — aspect-ratio on mobile ───────────────── */
@media (max-width: 600px) {
  .pkg-gallery {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
  .pkg-gallery img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .home-slider {
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }
}

/* ── [C7] TRACK DATE — better mobile input ───────────────────── */
input#track-date {
  font-size: 16px !important; /* prevents iOS auto-zoom on focus */
}

/* ── [I1/I2] CANONICAL SLIDER RULES ─────────────────────────── */
/* Single source of truth — overrides any duplicates above */
.pkg-gallery {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;
  overflow: hidden !important;
  background: #111 !important;
}
.pkg-gallery img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0 !important;
  transition: opacity .65s ease-in-out !important;
}
.pkg-gallery img.active,
.pkg-gallery img:first-child { opacity: 1 !important; }

.home-slider {
  position: relative !important;
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background: #111 !important;
  border-radius: 0 !important;
  margin-bottom: 1.1rem !important;
}
.home-slider img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0 !important;
  transition: opacity .55s ease-in-out !important;
}
.home-slider img.active,
.home-slider img:first-child { opacity: 1 !important; }

@media (min-width: 1400px) {
  .pkg-gallery  { height: 480px !important; }
  .home-slider  { height: 260px !important; }
}
@media (max-width: 768px) {
  .pkg-gallery  { height: 260px !important; }
  .home-slider  { height: 180px !important; }
}
@media (max-width: 600px) {
  .pkg-gallery  { height: auto !important; aspect-ratio: 16/9 !important; }
  .home-slider  { height: auto !important; aspect-ratio: 4/3 !important; }
}

/* ── [I3] TYPOGRAPHY — tighter min values ────────────────────── */
@media (max-width: 400px) {
  .display-1 { font-size: clamp(1.85rem, 9vw, 2.6rem) !important; }
  .display-2 { font-size: clamp(1.55rem, 7vw, 2rem)   !important; }
  .display-3 { font-size: clamp(1.25rem, 6vw, 1.5rem) !important; }
  .section-label { font-size: .58rem !important; }
}

/* ── [I4] ACTIVE PAGE — gold underline ───────────────────────── */
.sz-nav-links a.active-link::after {
  width: 100% !important;
  background: var(--gold) !important;
  height: 2px !important;
}

/* ── [I5] BOOKING FORM — larger accommodation labels ─────────── */
@media (max-width: 768px) {
  .acc-selector label {
    font-size: .68rem !important;
    padding: .75rem .4rem !important;
    min-height: 48px !important;
  }
  .acc-selector-pkg label {
    font-size: .68rem !important;
    padding: .85rem .5rem !important;
  }
  .payment-method-tabs button,
  .pm-tab {
    min-height: 48px !important;
    font-size: .68rem !important;
  }
}

/* ── [I6] TEAM GRID — safe minmax ────────────────────────────── */
.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)) !important;
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr !important; }
}

/* ── [I7] MAP — max-width ────────────────────────────────────── */
.map-placeholder iframe,
iframe[title*="Safari Zangu"] {
  max-width: 100% !important;
}

/* ── [I8] ADMIN METRICS — 3 breakpoints ─────────────────────── */
@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 680px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .65rem !important; }
  .metric-value { font-size: 1.45rem !important; }
}
@media (max-width: 420px) {
  .metrics-grid { grid-template-columns: 1fr !important; }
  .metric-card  { flex-direction: row !important; align-items: center !important; justify-content: space-between !important; padding: .85rem 1rem !important; }
  .metric-value { font-size: 1.5rem !important; }
}

/* ── [I9] ADMIN TABLE — iOS scroll fix ──────────────────────── */
.admin-table-wrap {
  overscroll-behavior-x: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

/* ── [I10] BUTTONS — explicit min-height ────────────────────── */
.btn-sz-primary,
.btn-sz-dark,
.btn-sz-outline,
.btn-sz-ghost {
  min-height: 48px !important;
  min-width: 44px !important;
}
@media (max-width: 480px) {
  .btn-sz-primary,
  .btn-sz-dark,
  .btn-sz-outline,
  .btn-sz-ghost {
    min-height: 52px !important;
    font-size: .72rem !important;
  }
}

/* ── [D1] TRUST STRIP — stronger visual separation ───────────── */
.trust-strip {
  background: var(--gold-light) !important;
  border-top: 1px solid rgba(200,150,62,.3) !important;
  border-bottom: 1px solid rgba(200,150,62,.3) !important;
  box-shadow: inset 0 1px 0 rgba(200,150,62,.15) !important;
}
.trust-item {
  font-size: .72rem !important;
  font-weight: 600 !important;
  color: #3d3000 !important;
}
.trust-stars { color: var(--gold) !important; }

/* ── [D2] CARD CTAs — tap state on mobile ───────────────────── */
@media (hover: none) {
  .pkg-card .btn-sz-dark:active {
    background: #333 !important;
    transform: scale(.97) !important;
  }
}

/* ── [D3] TESTIMONIALS — equal heights ──────────────────────── */
.testimonial-grid {
  align-items: stretch !important;
}
.testimonial {
  height: 100% !important;
}
.testimonial-text {
  flex: 1 !important;
}

/* ── [D4] WHY SECTION — larger icons on mobile ───────────────── */
@media (max-width: 768px) {
  .why-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 1.1rem !important;
  }
  .why-title { font-size: 1.05rem !important; }
}

/* ── [D6] FORM PLACEHOLDERS — WCAG AA contrast ───────────────── */
.form-control-sz::placeholder,
.sz-input::placeholder {
  color: #6b7280 !important;
  font-weight: 400 !important;
}

/* ── [D7] SECTION PADDING — tighter on mobile ────────────────── */
@media (max-width: 480px) {
  .section    { padding: clamp(2.5rem, 6vw, 3.5rem) 1.1rem !important; }
  .section-sm { padding: clamp(2rem,   5vw, 3rem)   1.1rem !important; }
  .section-lg { padding: clamp(3rem,   7vw, 4.5rem) 1.1rem !important; }
}

/* ══════════════════════════════════════════════════════════════
   GOLD ACCENT — consistent system
   ══════════════════════════════════════════════════════════════ */
.section-label       { color: var(--gold) !important; }
.divider-line        { background: var(--gold) !important; height: 2px !important; }
.pkg-number          { color: var(--gold) !important; }
.pkg-duration        { color: var(--gold) !important; }
.itinerary-day-num   { color: var(--gold) !important; }
.team-role           { color: var(--gold) !important; }
.breadcrumb-sz a     { color: var(--gold) !important; }
.hero-tag            { color: rgba(200,150,62,.9) !important; }
.sz-nav-cta          { background: var(--gold) !important; border-color: var(--gold) !important; }
.sz-nav-cta:hover    { background: #b8842e !important; border-color: #b8842e !important; }
.scroll-line         { background: linear-gradient(to bottom, transparent, var(--gold)) !important; }
.footer-col-title    { color: rgba(200,150,62,.75) !important; }
.sz-footer::before   { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent); opacity:.6; }
.sz-footer           { position:relative; }

/* Form focus — gold ring */
.form-control-sz:focus,
.sz-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200,150,62,.12) !important;
}

/* Booking widget active tab — gold */
.acc-selector input:checked + label,
.acc-selector label.active,
.acc-selector-pkg input:checked + label,
.payment-method-tabs button.active,
.pm-tab.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

/* Package nav active — gold */
.pkg-nav a:hover,
.pkg-nav a.active {
  background: var(--gold) !important;
  color: #fff !important;
}

/* Card hover — gold underline */
.pkg-card::after { background: var(--gold) !important; }
.testimonial:hover { border-color: var(--gold) !important; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO — inner pages
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .7;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 2.5rem) !important;
    padding-bottom: 2.5rem !important;
  }
  .page-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 1.75rem) !important;
    padding-bottom: 2rem !important;
  }
  .display-1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING LAYOUT — mobile stacking
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .booking-sidebar-col {
    position: static !important;
    max-height: none !important;
    overflow-y: visible !important;
  }
  /* Sidebar goes BELOW form on mobile (reorder) */
  .booking-layout > .booking-sidebar-col {
    order: -1 !important; /* show price widget ABOVE form on mobile */
  }
}

/* ══════════════════════════════════════════════════════════════
   CUSTOM SAFARI FORM — 2-col on tablet+, 1-col on mobile
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .responsive-two-col {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .custom-safari {
    padding: 2.5rem 1.1rem !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   PACKAGE DETAIL — mobile optimizations
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pkg-detail-grid {
    grid-template-columns: 1fr !important;
  }
  .include-exclude {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .pkg-section { padding: 2.5rem 0 !important; }
  .pkg-section-num { font-size: 3rem !important; }
  .pricing-row { padding: .75rem 1rem !important; }
  .pricing-row.header { font-size: .58rem !important; }
  .price-cell { font-size: .95rem !important; }
  .pkg-nav {
    position: relative !important; /* don't sticky on mobile */
    top: auto !important;
    margin-bottom: 2rem !important;
  }
  .pkg-nav a {
    padding: .75rem 1rem !important;
    font-size: .6rem !important;
  }
}
@media (max-width: 480px) {
  .itinerary-day { grid-template-columns: 40px 1fr !important; gap: .85rem !important; }
  .itinerary-day-num { font-size: 1.4rem !important; }
  .itinerary-day-title { font-size: .95rem !important; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — mobile layout
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .values-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE — mobile layout
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* ══════════════════════════════════════════════════════════════
   CONFIRMATION PAGE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .confirmation-two-col {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .confirmation-box { padding: 1.25rem 1rem !important; }
  .booking-ref-display {
    font-size: 1.2rem !important;
    padding: .65rem .85rem !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT — better mobile positioning
   ══════════════════════════════════════════════════════════════ */
.wa-float {
  bottom: 1.25rem !important;
  right: 1.25rem !important;
}
@media (max-width: 480px) {
  .wa-float {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 52px !important;
    height: 52px !important;
  }
  .wa-float-label { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   SELECTION & FOCUS — accessibility
   ══════════════════════════════════════════════════════════════ */
::selection {
  background: var(--gold-light);
  color: var(--black);
}
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   PRINT ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */
@media print {
  :root { --gold: #7a5a10; }
  .sz-nav, .sz-mobile-nav, .wa-float, .hero-scroll,
  .hero-actions, .cta-banner { display: none !important; }
  .hero { height: auto !important; min-height: 0 !important; }
  .hero-bg, .hero-overlay { display: none !important; }
  body { font-size: 11pt !important; }
  .confirmation-box { border: 1px solid #ccc !important; }
}

/* ══════════════════════════════════════════════════════════════
   ADMIN PANEL RESPONSIVE ADDITIONS
   ══════════════════════════════════════════════════════════════ */

/* Two-column admin layout collapses */
@media (max-width: 900px) {
  .admin-two-col {
    grid-template-columns: 1fr !important;
  }
}

/* Admin content max width on large screens */
@media (min-width: 1600px) {
  .admin-content { padding: 2rem 3rem !important; }
}

/* Admin filter pills wrap properly */
@media (max-width: 480px) {
  .admin-filter-pills { gap: .35rem !important; }
  .admin-filter-pill  { font-size: .6rem !important; padding: .28rem .7rem !important; }
}

/* Gallery grid on mobile */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .65rem !important;
  }
  .gallery-layout {
    grid-template-columns: 1fr !important;
  }
  .gallery-sidebar {
    position: static !important;
    max-height: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding: .5rem !important;
    gap: .35rem !important;
    border-right: none !important;
    border-bottom: 1px solid #e5e7eb !important;
  }
  .gallery-sidebar a {
    white-space: nowrap !important;
    border-left: none !important;
    border-bottom: 2px solid transparent !important;
    padding: .45rem .85rem !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
  }
  .gallery-sidebar a.active {
    background: #0a0a0a !important;
    border-bottom-color: #c8963e !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   SCROLLBAR STYLING
   ══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar       { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4ce; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a0a098; }

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION — respect user preference
   ══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
    scroll-behavior:      auto !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg {
    transform: none !important;
    animation: none !important;
  }
}
