/* =========================================================
   LOYAL HORIZON TOURS — Main Stylesheet
   Fonts: Cormorant Garant (display) · Merriweather (body) · Inter (UI)
   Colors: --navy #1B3C3C (teal) · --gold #E07832 (orange) · --cream #F9F5EE
   ========================================================= */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #1B3C3C;
  --navy-dark:  #0E2424;
  --navy-mid:   #2B5555;
  --gold:       #E07832;
  --gold-light: #F09A55;
  --gold-dark:  #B85E20;
  --cream:      #F9F5EE;
  --cream-dark: #EDE6D8;
  --off-white:  #FAF9F7;
  --text-dark:  #1A1A2E;
  --text-body:  #3A3A4A;
  --text-muted: #6C6C7E;
  --border:     rgba(27,60,60,.10);
  --border-gold:rgba(224,120,50,.25);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --shadow-gold:0 4px 24px rgba(224,120,50,.18);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --font-display:  'Cormorant Garant', Georgia, serif;
  --font-body:     'Merriweather', Georgia, serif;
  --font-ui:       'Inter', system-ui, sans-serif;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
  --section-pad:   5rem 0;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  background: #fff;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

p { text-align: justify; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.375rem); }

.rich-content p { text-align: justify; }
.rich-content h2, .rich-content h3 { margin: 1.5rem 0 .75rem; }
.rich-content ul, .rich-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-content li { margin-bottom: .35rem; }
.rich-content img { border-radius: var(--radius-md); margin: 1.5rem 0; }
.rich-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Utility ── */
.text-gold  { color: var(--gold) !important; }
.text-navy  { color: var(--navy) !important; }
.bg-navy    { background-color: var(--navy) !important; }
.bg-cream   { background-color: var(--cream) !important; }
.section    { padding: var(--section-pad); }

/* ── Buttons ── */
.btn {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn-whatsapp:hover { background: #1ebb58; border-color: #1ebb58; color: #fff; }

.btn-whatsapp-full {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  font-family: var(--font-ui);
}
.btn-whatsapp-full:hover { background: #1ebb58; border-color: #1ebb58; color: #fff; }

/* ── Scroll Animations ── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { background: #1ebb58; color: #fff; transform: scale(1.08); }

/* ========== HOMEPAGE HERO ========== */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Each carousel slide is a full-viewport stack */
.hero-slide {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Video background ── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Prevent video controls showing on iOS */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* ── Static image fallback ── */
.hero-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* Ken-Burns pan on image slides */
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1%, -1%); }
}

/* ── CSS gradient fallback when no media at all ── */
.hero-grad-fallback {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy-mid) 55%, #1a6b5a 100%);
  animation: none;
}

/* ── Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(7, 24, 41, var(--overlay-opacity, 0.65)) 0%,
    rgba(11, 37, 69, calc(var(--overlay-opacity, 0.65) * 0.85)) 55%,
    rgba(163, 122, 40, 0.25) 100%
  );
}

/* ── Hero content ── */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 780px;
  padding: 8rem 0 6rem;
  animation: heroFadeUp .9s .15s both cubic-bezier(.22, 1, .36, 1);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* Force re-animation on active slide */
.carousel-item.active .hero-content { animation: heroFadeUp .9s .15s both cubic-bezier(.22, 1, .36, 1); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 153, 58, 0.18);
  border: 1px solid rgba(201, 153, 58, 0.5);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
  margin-bottom: 1.25rem;
}

.hero-title-em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 600;
}

.hero-title-line3 {
  color: rgba(255, 255, 255, .85);
  font-size: .85em;
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.25rem;
  text-align: left;
}

.hero-ctas { gap: .85rem !important; }

/* ── Carousel controls ── */
.hero-carousel-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .25) !important;
  border-radius: 50% !important;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.hero-carousel-btn:hover { background: var(--gold) !important; border-color: var(--gold) !important; }
.hero-carousel-btn i { color: #fff; font-size: .9rem; }
.carousel-control-prev.hero-carousel-btn { left: 1.5rem; }
.carousel-control-next.hero-carousel-btn { right: 1.5rem; }
/* Remove Bootstrap's default span icons */
.hero-carousel-btn .carousel-control-prev-icon,
.hero-carousel-btn .carousel-control-next-icon { display: none; }

/* ── Slide indicator dots ── */
.hero-dots {
  bottom: 5.5rem !important;
  left: auto !important;
  right: 2rem !important;
  flex-direction: column;
  gap: .4rem;
  width: auto !important;
  margin: 0 !important;
}
.hero-dots button {
  width: 6px !important;
  height: 24px !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, .35) !important;
  border: none !important;
  opacity: 1 !important;
  transition: all var(--transition) !important;
}
.hero-dots button.active {
  background: var(--gold) !important;
  height: 36px !important;
}

/* ── Trust bar ── */
.hero-trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(7, 24, 41, .75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 153, 58, .2);
  padding: .9rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
}
.trust-item strong { color: #fff; font-weight: 700; }
.trust-stars { color: var(--gold); font-size: .95rem; letter-spacing: 1px; }
.trust-divider { width: 1px; height: 24px; background: rgba(255, 255, 255, .15); }

/* ── Reduced motion: pause video ── */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg { animation: none; }
  .hero-img-bg   { animation: none; }
  .hero-content  { animation: none; }
}

/* ── Mobile hero ── */
@media (max-width: 767.98px) {
  .hero-slide   { min-height: 88svh; }
  .hero-content { padding: 6rem 0 5rem; }
  .hero-dots    { display: none !important; }
  .hero-carousel-btn { display: none !important; }
  .hero-trust-bar { position: relative; padding: 1rem 0; }
}

/* ========== NAVBAR ========== */
.site-header {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  position: relative;
  z-index: 1000;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

/* ── Topbar (info strip) ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-family: var(--font-ui);
  font-size: .78rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-link {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .78rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
}
.topbar-link:hover { color: var(--gold-light); }
.topbar-tagline {
  font-family: var(--font-ui);
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
  letter-spacing: .01em;
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.topbar-social:hover { background: var(--gold); color: #fff; }

/* ── Logo ── */
.lht-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo-emblem { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .08em;
  white-space: nowrap;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Mobile toggler ── */
.lht-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.lht-toggler:hover { border-color: var(--gold); background: var(--cream); }
.lht-toggler span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Desktop nav links ── */
.lht-nav-link {
  font-family: var(--font-ui) !important;
  font-size: .875rem !important;
  font-weight: 600 !important;
  color: var(--text-body) !important;
  letter-spacing: .01em;
  padding: .6rem .8rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition) !important;
  position: relative;
}
.lht-nav-link:hover { color: var(--navy) !important; background: var(--cream); }
.lht-nav-link.active { color: var(--gold) !important; }

/* ── Nav actions area ── */
.nav-actions { display: flex; align-items: center; flex-shrink: 0; }

/* ── WhatsApp nav button ── */
.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-whatsapp-nav:hover { background: #1ebb58; color: #fff; transform: translateY(-1px); }

/* ── Mobile Offcanvas ── */
.lht-offcanvas {
  background: var(--navy) !important;
  width: 300px !important;
}
.lht-offcanvas .offcanvas-header {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem;
}

/* ── Mobile Nav ── */
.mobile-nav { flex: 1; }
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus { color: var(--gold-light); background: rgba(255,255,255,.04); outline: none; }
.mobile-nav-link i { color: rgba(255,255,255,.4); font-size: .75rem; transition: transform var(--transition); }
.mobile-nav-link[aria-expanded="true"] i { transform: rotate(180deg); color: var(--gold); }

.mobile-submenu {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: .5rem 0;
}
.mobile-sub-link {
  display: block;
  padding: .65rem 2rem;
  font-family: var(--font-ui);
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-sub-link:hover { color: var(--gold-light); padding-left: 2.3rem; }

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--navy-dark);
  margin-top: auto;
}

/* Legacy aliases */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-family: var(--font-ui);
  font-size: .78rem;
  padding: .4rem 0;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--gold); }
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background var(--transition);
}
.top-bar-social a:hover { background: var(--gold); }

.navbar-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.navbar-logo-name { font-size: 1.1rem; letter-spacing: .08em; }
.navbar-logo-sub  { font-size: .7rem;  letter-spacing: .18em; color: var(--gold); }

.navbar .nav-link {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .875rem;
  color: var(--text-body) !important;
  letter-spacing: .02em;
  padding: .5rem .9rem !important;
  transition: color var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--gold) !important; }

.nav-btn-quote {
  font-family: var(--font-ui);
  font-size: .83rem;
  font-weight: 600;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-sm);
  letter-spacing: .04em;
  transition: all var(--transition);
}
.nav-btn-quote:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }

/* Mega Menu */
.mega-menu-wrap { position: static !important; }
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 2rem;
  display: none;
  z-index: 999;
}
.mega-menu-wrap:hover .mega-menu,
.mega-menu-wrap .nav-link:focus + .mega-menu { display: block; }

.mega-col-title {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.mega-link-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
}
.mega-link-text { font-weight: 600; }
.mega-link-sub  { font-size: .78rem; color: var(--text-muted); font-weight: 400; }

/* ─── CSS-hover mega menu ─── */
.lht-has-mega { position: static !important; }

/* Invisible bridge fills gap so cursor doesn't lose hover state */
.lht-has-mega::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
  pointer-events: auto;
  background: transparent;
}

.lht-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(0,0,0,.13);
  padding: 1.75rem 0;
  z-index: 1010;
  /* hidden state — delay visibility so cursor has time to reach the menu */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s .18s;
  pointer-events: none;
}
.lht-has-mega:hover .lht-mega-menu,
.lht-mega-menu:hover,
.lht-has-mega.menu-open .lht-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  /* No delay when showing */
  transition: opacity .22s ease, transform .22s ease, visibility 0s 0s;
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.mega-heading {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  padding: 0 .5rem .5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
  display: block;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--text-body);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mega-link:hover { background: var(--cream); color: var(--navy); }
.mega-link.mega-featured { font-weight: 700; color: var(--navy); }
.mega-kili-main {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(224,120,50,.09);
  border: 1px solid rgba(224,120,50,.3);
  border-radius: var(--radius-sm);
  padding: .55rem .75rem;
  margin-bottom: .4rem;
  text-decoration: none;
  transition: background var(--transition);
}
.mega-kili-main:hover { background: rgba(224,120,50,.2); color: var(--navy); }
@media (max-width: 1199.98px) {
  .mega-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
  .lht-has-mega:hover .lht-mega-menu { display: none; visibility: hidden; }
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-about    { background-image: linear-gradient(rgba(7,24,41,.75),rgba(7,24,41,.75)); }
.page-hero-tours    { background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%); }
.page-hero-destinations { background: linear-gradient(135deg, #0b2545 0%, #2B5555 100%); }
.page-hero-blog     { background: linear-gradient(135deg, #1a1a2e 0%, var(--navy) 100%); }
.page-hero-booking  { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); }
.page-hero-contact  { background: linear-gradient(135deg, var(--navy) 0%, #2B5555 100%); }

.page-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #fff;
  margin: .75rem 0 .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.page-hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 640px;
  text-align: left;
}
.page-hero .text-center .page-hero-sub { margin: 0 auto; text-align: center; }

.page-hero-content { position: relative; z-index: 1; }
.breadcrumb-nav { margin-bottom: 1rem; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.65); font-family: var(--font-ui); font-size: .82rem; }
.breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: .25rem .85rem;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.hero-tag-gold { background: rgba(224,120,50,.25); border-color: var(--gold); color: var(--gold-light); }

.hero-stat {
  color: rgba(255,255,255,.82);
  font-family: var(--font-ui);
  font-size: .875rem;
  display: flex;
  align-items: center;
}

/* ========== SECTION LABELS ========== */
.section-label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-label-light { color: rgba(224,120,50,.85); }
.section-title { color: var(--navy); margin-bottom: 1rem; }

/* ========== TOUR CARDS ========== */
.tour-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.tour-card-img-link { display: block; overflow: hidden; }
.tour-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  position: relative;
}
.tour-card-img-link:hover .tour-card-img { transform: scale(1.04); }

.tour-img-grad-1 { background: linear-gradient(135deg, #0b2545 0%, #1a6b5a 100%); }
.tour-img-grad-2 { background: linear-gradient(135deg, #2d1b5e 0%, #0b2545 100%); }
.tour-img-grad-3 { background: linear-gradient(135deg, #5c3010 0%, #0b2545 100%); }

.tour-card-badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.tour-badge {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .2rem .6rem;
  border-radius: 3px;
}
.tour-badge-gold { background: var(--gold); color: #fff; }
.tour-badge-teal { background: #0d9488; color: #fff; }
.tour-badge-red  { background: #dc3545; color: #fff; }

.tour-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-meta {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.tour-title {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.tour-title a { color: var(--navy); }
.tour-title a:hover { color: var(--gold); }
.tour-excerpt { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); margin-bottom: auto; }

.tour-card-footer { padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.price-from { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); display: block; }
.price-usd  { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.price-eur  { font-family: var(--font-ui); font-size: .8rem; color: var(--text-muted); }
.price-was  { font-size: .78rem; }

/* ========== TOUR DETAIL ========== */
.detail-section { margin-bottom: 3rem; }
.detail-heading {
  font-size: 1.5rem;
  color: var(--navy);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.detail-body { font-size: 1rem; }

.highlights-list { list-style: none; padding: 0; }
.highlights-list li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-ui);
}

.inc-exc-list { list-style: none; padding: 0; }
.inc-exc-list li { padding: .4rem 0; font-family: var(--font-ui); font-size: .9rem; border-bottom: 1px dashed var(--border); }
.inc-exc-list li:last-child { border-bottom: none; }

/* Itinerary Accordion */
.itinerary-item { border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: .5rem; }
.itinerary-btn {
  background: var(--cream) !important;
  color: var(--navy) !important;
  font-family: var(--font-ui);
  font-weight: 600;
  gap: 1rem;
  box-shadow: none !important;
}
.itinerary-btn:not(.collapsed) { background: var(--navy) !important; color: #fff !important; }
.day-number {
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .6rem;
  border-radius: 3px;
  white-space: nowrap;
}
.day-title { font-size: .95rem; }
.day-meals { font-size: .75rem; color: var(--text-muted); }
.itinerary-desc { font-family: var(--font-ui); font-size: .9rem; text-align: justify; }
.itin-meta { font-family: var(--font-ui); font-size: .82rem; color: var(--text-muted); }

/* Gallery */
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
}
.gallery-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}
.gallery-thumb:hover { transform: scale(1.03); }

/* Review Card */
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
}
.review-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.review-stars { color: var(--gold); font-size: 1rem; }
.review-text  { font-style: italic; color: var(--text-body); text-align: justify; }
.review-card-large { max-width: 700px; padding: 2rem; }
.review-quote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--navy); text-align: center; }

/* Booking Sidebar */
.booking-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.booking-card-header {
  background: var(--navy);
  color: #fff;
  padding: 1.5rem;
}
.booking-from-text { font-family: var(--font-ui); font-size: .78rem; color: rgba(255,255,255,.65); display: block; }
.booking-price-usd  { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.booking-price-eur  { font-family: var(--font-ui); font-size: .9rem; color: rgba(255,255,255,.75); }
.booking-price-eur span { font-size: .78rem; }
.booking-card-body  { padding: 1.5rem; }
.booking-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: .875rem;
}
.booking-detail-row:last-child { border-bottom: none; }
.booking-detail-row span { color: var(--text-muted); }
.booking-detail-row strong { color: var(--navy); }
.sidebar-trust { font-family: var(--font-ui); font-size: .82rem; }
.trust-point { padding: .35rem 0; color: var(--text-body); }

/* ========== FILTER SIDEBAR ========== */
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.filter-title { font-family: var(--font-ui); font-weight: 700; font-size: 1rem; color: var(--navy); }
.filter-clear-link { font-family: var(--font-ui); font-size: .8rem; color: var(--gold); }
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group-label { font-family: var(--font-ui); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); display: block; margin-bottom: .75rem; }
.filter-options-list { display: flex; flex-direction: column; gap: .4rem; }
.filter-option { font-family: var(--font-ui); font-size: .875rem; display: flex; align-items: center; gap: .5rem; cursor: pointer; color: var(--text-body); }
.filter-option input[type=radio] { accent-color: var(--gold); }
.filter-search-wrap { position: relative; }
.filter-search-input { padding-right: 2.5rem; font-family: var(--font-ui); font-size: .875rem; }
.filter-search-btn {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
}
.filter-select { font-family: var(--font-ui); font-size: .875rem; }

.tours-results-header p { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); }
.dest-filter-bar { background: #fff; border-bottom: 1px solid var(--border); z-index: 100; }
.dest-filter-tabs { display: flex; gap: .25rem; overflow-x: auto; padding: .75rem 0; }
.dest-tab {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 20px;
  color: var(--text-muted);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.dest-tab:hover { color: var(--navy); background: var(--cream); }
.dest-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ========== DESTINATION CARDS ========== */
.dest-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.dest-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.dest-card-img-link { display: block; overflow: hidden; position: relative; }
.dest-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.dest-card-img-link:hover .dest-card-img { transform: scale(1.04); }
.dest-img-grad { background: linear-gradient(135deg, #0b2545 0%, #1a6b5a 100%); }
.dest-card-overlay { position: absolute; top: .75rem; left: .75rem; }
.dest-region-badge {
  display: inline-block;
  background: rgba(11,37,69,.7);
  color: rgba(255,255,255,.9);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 3px;
  letter-spacing: .04em;
}
.dest-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.dest-card-name { font-size: 1.15rem; margin-bottom: .5rem; }
.dest-card-name a { color: var(--navy); }
.dest-card-name a:hover { color: var(--gold); }
.dest-card-desc { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); margin-bottom: auto; }
.dest-card-meta { font-family: var(--font-ui); font-size: .8rem; color: var(--text-muted); margin-top: .75rem; }
.dest-info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border-gold);
}
.dest-info-title { font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; }
.dest-info-list { list-style: none; padding: 0; }
.dest-info-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .5rem 0; border-bottom: 1px solid var(--border); font-family: var(--font-ui); font-size: .875rem; }
.dest-info-list li:last-child { border-bottom: none; }
.dest-cta-card { background: var(--navy); border-radius: var(--radius-md); padding: 1.75rem; text-align: center; }
.dest-cta-title { color: #fff; font-size: 1.2rem; margin-bottom: .5rem; }
.dest-cta-text  { color: rgba(255,255,255,.7); font-family: var(--font-ui); font-size: .875rem; margin-bottom: 1.25rem; }
.dest-card-mini { background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition); }
.dest-card-mini:hover { box-shadow: var(--shadow-md); }
.dest-card-mini-img { height: 140px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); background-size: cover; background-position: center; }
.dest-card-mini-body { padding: .85rem; }
.dest-card-mini-body h4 { font-size: .95rem; }
.dest-card-mini-body h4 a { color: var(--navy); }
.dest-card-mini-body h4 a:hover { color: var(--gold); }

/* ========== BLOG CARDS ========== */
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img-link { display: block; overflow: hidden; position: relative; }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.blog-img-grad { background: linear-gradient(135deg, #1a1a2e 0%, var(--navy-mid) 100%); }
.blog-card-img-link:hover .blog-card-img { transform: scale(1.04); }
.blog-cat-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .2rem .65rem;
  border-radius: 3px;
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta  { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); }
.blog-title { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-title a { color: var(--navy); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); margin-bottom: auto; }
.blog-card-footer { padding-top: .75rem; border-top: 1px solid var(--border); margin-top: .75rem; }
.blog-author { display: flex; align-items: center; gap: .5rem; font-family: var(--font-ui); font-size: .8rem; }
.blog-author-avatar { width: 28px; height: 28px; min-width: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; }
.blog-author-name { color: var(--text-muted); }

/* Blog Article */
.article-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.article-body { font-size: 1rem; line-height: 1.9; }
.article-share { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.share-label { font-family: var(--font-ui); font-size: .82rem; font-weight: 700; color: var(--text-muted); }
.btn-share { font-family: var(--font-ui); }
.btn-facebook { background: #1877F2; color: #fff; border: none; }
.btn-facebook:hover { background: #1560d8; color: #fff; }
.btn-twitter  { background: #000; color: #fff; border: none; }
.btn-twitter:hover { background: #333; color: #fff; }
.btn-share.btn-whatsapp { background: #25D366; color: #fff; }
.author-box { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--cream); border-radius: var(--radius-md); border: 1px solid var(--border-gold); }
.author-avatar-lg { width: 64px; height: 64px; min-width: 64px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.author-label { font-family: var(--font-ui); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.author-name  { font-size: 1.1rem; margin-bottom: .25rem; }
.author-bio   { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); text-align: justify; }

/* Blog Sidebar */
.blog-sidebar-widget { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.sidebar-widget-title { font-size: 1rem; color: var(--navy); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gold); }
.sidebar-cat-list { list-style: none; padding: 0; }
.sidebar-cat-list li { border-bottom: 1px solid var(--border); }
.sidebar-cat-list a { display: block; padding: .5rem 0; font-family: var(--font-ui); font-size: .875rem; color: var(--text-body); transition: color var(--transition); }
.sidebar-cat-list a:hover, .sidebar-cat-list a.active { color: var(--gold); padding-left: .3rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-pill { display: inline-block; background: var(--cream); color: var(--text-body); font-family: var(--font-ui); font-size: .75rem; font-weight: 600; padding: .25rem .75rem; border-radius: 20px; border: 1px solid var(--border); transition: all var(--transition); }
.tag-pill:hover, .tag-pill-active { background: var(--gold); color: #fff; border-color: var(--gold); }
.recent-posts-list { list-style: none; padding: 0; }
.recent-post-item { display: flex; gap: .75rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.recent-post-item:last-child { border-bottom: none; }
.recent-post-thumb { width: 64px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post-title { display: block; font-family: var(--font-ui); font-size: .82rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: .2rem; }
.recent-post-title:hover { color: var(--gold); }
.recent-post-date { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); }
.blog-cta-widget { background: var(--navy); }
.sidebar-cta-title { color: #fff; font-size: 1rem; margin-bottom: .5rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.15); }
.blog-newsletter-widget { background: var(--cream); }
.newsletter-icon-wrap { text-align: center; }
.recent-post-thumb-grad { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); display: block; }

/* ── Blog: enhanced page hero ── */
/* ── Blog hero slider container ── */
.blog-hero-enhanced {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}
.blog-hero-content-wrap { position: relative; z-index: 3; }

/* ── Slider ── */
.blog-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blog-hero-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.blog-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  overflow: hidden;
}
.blog-hero-slide.is-active {
  opacity: 1;
}
.blog-hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition: transform 9s ease-out;
}
.blog-hero-slide.is-active .blog-hero-slide-img {
  transform: scale(1);
}
.blog-hero-slide-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.95);
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .28rem .8rem;
  border-radius: 20px;
  pointer-events: none;
}

/* Thin vignette at edges only — keeps text readable without darkening the image */
.blog-hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.38) 0%, transparent 28%, transparent 70%, rgba(0,0,0,.30) 100%);
}

/* ── Prev / Next arrows (direct children of .blog-hero-enhanced) ── */
.blog-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s, border-color .22s, transform .22s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.blog-slider-btn:hover,
.blog-slider-btn:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.blog-slider-prev { left: 1.25rem; }
.blog-slider-next { right: 1.25rem; }

/* ── Dots ── */
.blog-slider-dots {
  position: absolute;
  bottom: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: .45rem;
  align-items: center;
}
.blog-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .32s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.blog-slider-dot.is-active {
  background: var(--gold);
  width: 24px;
  border-radius: 3.5px;
}

/* Text-shadow keeps hero text readable over bright images without a full overlay */
.blog-hero-enhanced .page-hero-title {
  text-shadow: 0 2px 16px rgba(0,0,0,.65), 0 1px 4px rgba(0,0,0,.5);
}
.blog-hero-enhanced .page-hero-sub,
.blog-hero-enhanced .page-hero-label,
.blog-hero-enhanced .breadcrumb-item,
.blog-hero-enhanced .breadcrumb-item a,
.blog-hero-enhanced .breadcrumb-item.active {
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.blog-hero-search {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  overflow: hidden;
  padding: .25rem .25rem .25rem 1.25rem;
}
.blog-hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-ui);
  font-size: .9rem;
}
.blog-hero-search-input::placeholder { color: rgba(255,255,255,.55); }
.blog-hero-search-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .55rem 1.25rem;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.blog-hero-search-btn:hover { background: var(--gold-dark); }

/* ── Category filter strip ── */
.blog-filter-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.blog-filter-inner {
  display: flex;
  gap: .5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.blog-filter-inner::-webkit-scrollbar { display: none; }
.blog-filter-pill {
  display: inline-block;
  white-space: nowrap;
  padding: .35rem 1rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-filter-pill:hover { background: var(--cream); color: var(--navy); border-color: var(--navy-mid); }
.blog-filter-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Featured blog card ── */
.blog-featured-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-featured-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 320px;
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}
.blog-featured-img-grad {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.blog-featured-img-wrap:hover .blog-featured-img { transform: scale(1.04); }
.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.55) 0%, transparent 55%);
}
.blog-featured-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .25rem .75rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.blog-cat-badge-lg { bottom: 1rem; left: 1rem; font-size: .75rem; padding: .3rem .9rem; }
.blog-featured-body { padding: 1.75rem; }
.blog-featured-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.25;
}
.blog-featured-title a { color: var(--navy); }
.blog-featured-title a:hover { color: var(--gold); }
.blog-featured-excerpt {
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Blog card image (img instead of bg-div) ── */
.blog-card-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.blog-card-img-link:hover .blog-card-photo { transform: scale(1.04); }

/* ── Sidebar category count badge ── */
.sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-cat-count {
  background: var(--cream-dark);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  padding: .1rem .5rem;
  border-radius: 50px;
  min-width: 22px;
  text-align: center;
}

/* ── Trip planning CTA widget ── */
.blog-trip-cta-widget {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  border: none;
}
.blog-trip-cta-icon {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.blog-trip-cta-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.blog-trip-cta-widget p { color: rgba(255,255,255,.75); text-align: center; }
.blog-trip-cta-widget .btn-outline-navy {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.blog-trip-cta-widget .btn-outline-navy:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ── Demo notice bar ── */
.blog-demo-notice {
  background: var(--cream);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  font-family: var(--font-ui);
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ── Blog search info bar ── */
.blog-search-info {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--text-muted);
  padding: .6rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

/* ── Blog empty state ── */
.blog-empty-state { padding: 4rem 1rem; }

/* ══════════════════════════════════════════════
   ABOUT ROYAL HORIZON TOUR — Category Landing
   ══════════════════════════════════════════════ */

/* Company spotlight card */
.about-cat-spotlight {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #1a5c50 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  min-height: 340px;
}
.about-cat-spotlight-inner {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-cat-spotlight-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,120,50,.18) 0%, transparent 70%);
  pointer-events: none;
}
.about-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(224,120,50,.2);
  border: 1px solid rgba(224,120,50,.4);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}
.about-cat-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-cat-heading em {
  color: var(--gold-light);
  font-style: italic;
}
.about-cat-desc {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  text-align: left;
}
.about-cat-stats {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.about-cat-stat {
  display: flex;
  flex-direction: column;
}
.about-cat-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-cat-stat-label {
  font-family: var(--font-ui);
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
}

/* Spotlight image panel */
.about-cat-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82) saturate(1.1);
  transition: transform .7s ease;
}
.about-cat-spotlight:hover .about-cat-img { transform: scale(1.04); }
.about-cat-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 16px rgba(224,120,50,.4);
}
.about-cat-img-badge i { font-size: 1.2rem; }

/* Values strip */
.about-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-value-item {
  background: #fff;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  transition: background var(--transition);
}
.about-value-item:hover { background: var(--cream); }
.about-value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.about-value-title {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.about-value-sub {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Articles section heading */
.about-articles-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-articles-title {
  font-size: 1.25rem;
  color: var(--navy);
  white-space: nowrap;
  margin: 0;
}
.about-articles-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
}

/* About: Responsive */
@media (max-width: 991px) {
  .about-cat-spotlight { grid-template-columns: 1fr; }
  .about-cat-img-wrap { height: 220px; }
  .about-values-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .about-cat-spotlight-inner { padding: 1.75rem 1.25rem; }
  .about-cat-stats { gap: 1.25rem; }
  .about-values-strip { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   CLIMBING CATEGORY — Adventure Landing
   ══════════════════════════════════════════════ */
.climb-cat-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.climb-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 8s ease;
}
.climb-cat-hero:hover .climb-cat-hero-bg { transform: scale(1.04); }
.climb-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6,18,30,.82) 0%,
    rgba(14,36,36,.62) 55%,
    rgba(0,0,0,.38) 100%
  );
}
.climb-cat-hero-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2.25rem;
}
.climb-cat-eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(224,120,50,.22);
  border: 1px solid rgba(224,120,50,.45);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  width: fit-content;
}
.climb-cat-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: .9rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.climb-cat-title em { color: var(--gold-light); font-style: italic; }
.climb-cat-desc {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1.5rem;
  text-align: left;
}
.climb-cat-stats { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.climb-stat { display: flex; flex-direction: column; }
.climb-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.climb-stat-label {
  font-family: var(--font-ui);
  font-size: .65rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
}
.climb-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Route comparison cards */
.climb-routes-heading { display: flex; align-items: center; }
.climb-routes-label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.climb-route-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.climb-route-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.climb-route-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.climb-route-card-featured { border-color: var(--gold); box-shadow: 0 4px 20px rgba(224,120,50,.2); }
.climb-route-best-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-bottom-left-radius: var(--radius-sm);
}
.climb-route-card-top { padding: 1.25rem 1.1rem 1rem; }
.climb-route-machame { background: linear-gradient(135deg, #0E2424 0%, #1B3C3C 100%); }
.climb-route-lemosho { background: linear-gradient(135deg, #0d2a1a 0%, #1a4a30 100%); }
.climb-route-marangu { background: linear-gradient(135deg, #1a1a2e 0%, #2B3A6B 100%); }
.climb-route-name { font-family: var(--font-display); font-size: 1.3rem; color: #fff; font-weight: 700; margin-bottom: .15rem; }
.climb-route-nickname { font-family: var(--font-ui); font-size: .72rem; color: var(--gold-light); font-style: italic; }
.climb-route-card-body { padding: 1.1rem; }
.climb-route-stat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
}
.climb-route-stat i { color: var(--gold); width: 14px; text-align: center; }
.climb-route-desc { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); line-height: 1.55; margin: .65rem 0 0; text-align: left; }

/* Climbing responsive */
@media (max-width: 991px) {
  .climb-cat-hero { height: 340px; }
  .climb-route-cards { grid-template-columns: 1fr; gap: .75rem; }
}
@media (max-width: 575px) {
  .climb-cat-hero { height: 280px; }
  .climb-cat-hero-body { padding: 1.5rem 1.25rem; }
  .climb-cat-stats { gap: .75rem; }
  .climb-stat-divider { display: none; }
}

/* ══════════════════════════════════════════════
   SAFARI CATEGORY — Wild Africa Landing
   ══════════════════════════════════════════════ */

/* Hero banner */
.safari-cat-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.safari-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 8s ease;
}
.safari-cat-hero:hover .safari-cat-hero-bg { transform: scale(1.04); }
.safari-cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(10, 20, 8, .80) 0%,
    rgba(20, 40, 10, .55) 50%,
    rgba(180, 100, 20, .25) 100%
  );
}
.safari-cat-hero-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 2.25rem;
}
.safari-cat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(224,120,50,.2);
  border: 1px solid rgba(224,120,50,.4);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .85rem;
  width: fit-content;
}
.safari-cat-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: .85rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.safari-cat-title em { color: var(--gold-light); font-style: italic; }
.safari-cat-desc {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 1.4rem;
  text-align: left;
}
.safari-cat-pillars {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.safari-pillar {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 50px;
}
.safari-pillar i { color: var(--gold-light); font-size: .8rem; }

/* Seasons strip */
.safari-seasons-heading { display: flex; align-items: center; }
.safari-seasons-label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.safari-seasons-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.safari-season-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.safari-season-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.safari-season-card-peak {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(224,120,50,.18);
}
.safari-season-peak-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .22rem .7rem;
  border-bottom-left-radius: var(--radius-sm);
}
.safari-season-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: .75rem;
}
.safari-season-icon-gold  { background: rgba(224,120,50,.12); color: var(--gold); }
.safari-season-icon-green { background: rgba(34,139,34,.1);   color: #2a8a3a; }
.safari-season-icon-blue  { background: rgba(30,80,140,.1);   color: #1e508c; }
.safari-season-icon-teal  { background: rgba(27,60,60,.1);    color: var(--navy-mid); }
.safari-season-months {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .2rem;
}
.safari-season-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .5rem;
}
.safari-season-desc {
  font-family: var(--font-ui);
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: .65rem;
  text-align: left;
}
.safari-season-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  padding: .18rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.safari-tag-great { background: rgba(224,120,50,.12); color: var(--gold-dark); }
.safari-tag-good  { background: rgba(34,139,34,.1);   color: #2a7a2a; }
.safari-tag-peak  { background: var(--gold);           color: #fff; }

/* Safari responsive */
@media (max-width: 991px) {
  .safari-cat-hero { height: 320px; }
  .safari-seasons-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .safari-cat-hero { height: 270px; }
  .safari-cat-hero-body { padding: 1.5rem 1.25rem; }
  .safari-cat-pillars { display: none; }
  .safari-seasons-strip { grid-template-columns: 1fr; }
}

/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  .blog-hero-enhanced { min-height: 350px; padding: 2.75rem 0 1.75rem; }
  .blog-slider-btn { width: 40px; height: 40px; font-size: .8rem; }
  .blog-slider-prev { left: .75rem; }
  .blog-slider-next { right: .75rem; }
  .blog-featured-img-wrap { height: 220px; }
  .blog-featured-body { padding: 1.25rem; }
  .blog-filter-strip { position: static; }
}

/* ========== BOOKING FORM ========== */
.booking-form-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--border); }
.booking-form-header { background: var(--navy); padding: 1.5rem 2rem; }
.booking-form-title { color: #fff; font-size: 1.3rem; }
.booking-form-body { padding: 2rem; }
.booking-form-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.booking-form-section:last-of-type { border-bottom: none; }
.booking-section-label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.booking-section-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: .72rem;
}
.booking-price-preview {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  text-align: center;
}
.price-preview-label { font-family: var(--font-ui); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.price-preview-amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--navy); }
.price-preview-note { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); margin-top: .25rem; }
.booking-disclaimer { font-family: var(--font-ui); font-size: .8rem; color: var(--text-muted); text-align: center; }
.booking-summary-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.booking-summary-header { background: var(--navy); padding: 1rem 1.5rem; }
.booking-summary-title { color: #fff; font-size: .9rem; margin: 0; }
.booking-summary-img { width: 100%; height: 180px; object-fit: cover; }
.booking-summary-body { padding: 1.25rem; }
.booking-summary-tour-name { font-size: 1.1rem; margin-bottom: 1rem; }
.booking-summary-details { display: flex; flex-direction: column; gap: .4rem; }
.bsd-row { display: flex; align-items: center; gap: .6rem; font-family: var(--font-ui); font-size: .85rem; color: var(--text-muted); }
.booking-summary-price { display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.summary-price-usd { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.trust-widget { background: var(--cream); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--border-gold); }
.trust-widget-title { font-size: .9rem; margin-bottom: 1rem; }
.trust-list { list-style: none; padding: 0; }
.trust-list li { display: flex; align-items: center; gap: .6rem; font-family: var(--font-ui); font-size: .875rem; padding: .4rem 0; color: var(--text-body); }
.trust-call { border-top: 1px solid var(--border); padding-top: 1rem; }
.trust-call-label { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.trust-call-number { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); }

/* ========== CONFIRM PAGE ========== */
.confirm-page { padding: 4rem 0; min-height: 70vh; }
.confirm-card { max-width: 720px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 3rem; text-align: center; }
.confirm-icon-wrap { margin-bottom: 1.5rem; }
.confirm-icon { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 50%; background: rgba(224,120,50,.12); }
.confirm-icon i { font-size: 2.5rem; color: var(--gold); }
.confirm-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: .75rem; }
.confirm-subtitle { font-family: var(--font-ui); color: var(--text-muted); font-size: .95rem; max-width: 540px; margin: 0 auto 2rem; }
.confirm-reference-box { background: var(--cream); border: 2px dashed var(--gold); border-radius: var(--radius-sm); padding: 1.5rem 2rem; margin: 0 auto 1.5rem; display: inline-block; min-width: 280px; }
.confirm-ref-label { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }
.confirm-ref-number { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.confirm-ref-note { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); margin-top: .5rem; }
.confirm-summary { text-align: left; }
.confirm-summary-title { font-size: 1.1rem; border-bottom: 2px solid var(--gold); padding-bottom: .5rem; margin-bottom: 1rem; }
.confirm-table { width: 100%; font-family: var(--font-ui); font-size: .875rem; }
.confirm-table th { color: var(--text-muted); font-weight: 600; padding: .5rem .75rem .5rem 0; white-space: nowrap; vertical-align: top; width: 140px; }
.confirm-table td { color: var(--navy); padding: .5rem 0; border-bottom: 1px solid var(--border); }
.confirm-next-steps { text-align: left; }
.confirm-next-title { font-size: 1.1rem; border-bottom: 2px solid var(--gold); padding-bottom: .5rem; margin-bottom: 1rem; }
.confirm-steps-list { list-style: none; padding: 0; }
.confirm-steps-list li { display: flex; align-items: flex-start; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.confirm-steps-list li:last-child { border-bottom: none; }
.step-icon { width: 36px; height: 36px; min-width: 36px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; }
.step-text { font-family: var(--font-ui); font-size: .875rem; color: var(--text-body); }

/* ========== CONTACT PAGE ========== */
.contact-info-strip { background: var(--navy); padding: 1.5rem 0; }
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(224,120,50,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.contact-info-label { font-family: var(--font-ui); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: .15rem; }
.contact-info-value { font-family: var(--font-ui); font-weight: 600; color: #fff; font-size: .9rem; }
.contact-info-value:hover { color: var(--gold-light); }
.contact-form-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--border); }
.contact-form-header { background: var(--navy); padding: 1.75rem 2rem; }
.contact-form-title { color: #fff; font-size: 1.3rem; margin-bottom: .25rem; }
.contact-form-sub   { color: rgba(255,255,255,.7); font-family: var(--font-ui); font-size: .875rem; }
.contact-form-card > form, .contact-form-card > .contact-form-body { padding: 2rem; }
.form-note { font-family: var(--font-ui); font-size: .8rem; }
.contact-sidebar-card { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.contact-sidebar-title { font-size: 1rem; color: var(--navy); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gold); }
.office-hours-list { list-style: none; padding: 0; }
.office-hours-list li { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-family: var(--font-ui); font-size: .875rem; }
.office-hours-list li:last-child { border-bottom: none; }
.office-hours-list span { color: var(--text-muted); }
.emergency-contact { background: var(--cream); border-radius: var(--radius-sm); padding: .75rem 1rem; border-left: 3px solid var(--gold); }
.emergency-contact-label { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.emergency-contact-number { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.faq-btn { font-family: var(--font-ui); font-size: .875rem; background: none; border: none; color: var(--navy); font-weight: 600; padding: .75rem 0; }
.faq-btn:not(.collapsed) { color: var(--gold); }
.faq-body { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); padding: 0 0 1rem; text-align: justify; }
.contact-social-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; transition: all var(--transition); }
.contact-social-btn.facebook  { background: #1877F2; }
.contact-social-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.contact-social-btn.youtube   { background: #FF0000; }
.contact-social-btn.twitter   { background: #000; }
.contact-social-btn:hover { transform: translateY(-2px) scale(1.06); opacity: .88; }

/* ========== ABOUT PAGE ========== */
.about-image-frame { position: relative; }
.about-main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge-text   { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.about-body-text p  { text-align: justify; }
.mv-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.mv-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.mv-title { font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem; }
.mv-text  { font-family: var(--font-ui); font-size: .9rem; color: var(--text-muted); text-align: justify; }
.why-card { background: #fff; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition); }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.why-title { font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.why-text  { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); text-align: justify; }
.team-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; padding-bottom: 1.5rem; border: 1px solid var(--border); transition: box-shadow var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar { width: 100%; height: 200px; object-fit: cover; }
.team-avatar-placeholder { width: 100%; height: 200px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: #fff; }
.team-info { padding: 1.25rem 1rem 0; }
.team-name { font-size: 1.1rem; }
.team-role { font-family: var(--font-ui); font-size: .8rem; color: var(--gold); margin: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; }
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }
.stat-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-family: var(--font-ui); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-top: .25rem; }

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  position: relative;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,24,41,.95) 0%, rgba(11,37,69,.85) 100%); }
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: #fff; margin: .75rem 0; }
.cta-sub   { color: rgba(255,255,255,.75); font-family: var(--font-ui); font-size: .95rem; max-width: 500px; margin: 0 auto; }

/* ========== PAGINATION ========== */
.pagination .page-link {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--navy);
  border-color: var(--border);
  transition: all var(--transition);
}
.pagination .page-link:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.pagination .page-item.active .page-link { background: var(--navy); border-color: var(--navy); }

/* ========== EMPTY STATE ========== */
.empty-state { padding: 4rem 2rem; }
.empty-icon  { color: var(--text-muted); }
.empty-title { font-size: 1.3rem; color: var(--navy); margin-bottom: .5rem; }

/* ========== FORMS ========== */
.form-control, .form-select {
  font-family: var(--font-ui);
  font-size: .875rem;
  border-color: var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  padding: .6rem .85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(224,120,50,.2);
  color: var(--text-body);
}
.form-label { font-family: var(--font-ui); font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
textarea.form-control { resize: vertical; min-height: 120px; }
.invalid-feedback { font-family: var(--font-ui); font-size: .78rem; }

/* ========== DASHBOARD ========== */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  background: #F4F6FA;
}

/* Sidebar */
.dashboard-sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--navy-dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  transition: width var(--transition);
}
.dashboard-sidebar.sidebar-collapsed { width: 70px; min-width: 70px; }
.dashboard-sidebar.sidebar-collapsed .sidebar-brand-text,
.dashboard-sidebar.sidebar-collapsed .sidebar-user-info,
.dashboard-sidebar.sidebar-collapsed .sidebar-nav-list span,
.dashboard-sidebar.sidebar-collapsed .sidebar-nav-section { display: none; }
.dashboard-sidebar.sidebar-collapsed .sidebar-nav-link { justify-content: center; }

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sidebar-brand-text { overflow: hidden; }
.sidebar-brand-name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: .05em; display: block; white-space: nowrap; }
.sidebar-brand-sub  { font-family: var(--font-ui); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; }
.sidebar-user { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); }
.sidebar-user-avatar { width: 38px; height: 38px; min-width: 38px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.sidebar-user-name { font-family: var(--font-ui); font-size: .82rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user-role { font-family: var(--font-ui); font-size: .7rem; color: rgba(255,255,255,.5); }
.sidebar-nav { padding: 1rem 0; flex: 1; }
.sidebar-nav-list { list-style: none; padding: 0; margin: 0; }
.sidebar-nav-section { font-family: var(--font-ui); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); padding: .75rem 1.25rem .25rem; }
.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.25rem;
  font-family: var(--font-ui);
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  position: relative;
}
.sidebar-nav-link i { width: 18px; text-align: center; flex-shrink: 0; }
.sidebar-nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.sidebar-nav-item.active .sidebar-nav-link,
.sidebar-nav-link:hover { color: #fff; }
.sidebar-nav-item.active .sidebar-nav-link { background: rgba(224,120,50,.15); color: var(--gold-light); border-right: 3px solid var(--gold); }
.sidebar-nav-logout { color: rgba(255,100,100,.7); }
.sidebar-nav-logout:hover { color: #ff6b6b; background: rgba(255,100,100,.08); }
.sidebar-badge {
  margin-left: auto;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}
.sidebar-badge-warning { background: #f59e0b; }

/* Dashboard Main */
.dashboard-main {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
  transition: margin-left var(--transition);
}
.dash-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.dash-sidebar-toggle { background: none; border: none; color: var(--navy); font-size: 1.1rem; cursor: pointer; padding: .25rem; border-radius: var(--radius-sm); transition: background var(--transition); }
.dash-sidebar-toggle:hover { background: var(--cream); }
.dash-topbar-title { flex: 1; }
.dash-page-title { font-size: 1.15rem; color: var(--navy); margin: 0; }
.dash-page-date  { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); }
.dash-user-pill  { display: flex; align-items: center; gap: .5rem; background: var(--cream); border-radius: 20px; padding: .35rem .9rem .35rem .35rem; font-family: var(--font-ui); font-size: .8rem; color: var(--text-body); }
.dash-user-avatar-sm { width: 28px; height: 28px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; }
.dash-welcome-banner { background: var(--navy); color: #fff; padding: 1.5rem 2rem; margin: 1.5rem 1.5rem 0; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.dash-welcome-text h2 { color: #fff; font-size: 1.3rem; margin-bottom: .25rem; }
.dash-welcome-text p  { color: rgba(255,255,255,.7); font-family: var(--font-ui); font-size: .875rem; margin: 0; }
.dash-welcome-role-badge { background: rgba(224,120,50,.2); color: var(--gold-light); font-family: var(--font-ui); font-size: .8rem; font-weight: 600; padding: .45rem 1rem; border-radius: 20px; border: 1px solid rgba(224,120,50,.3); }
.dash-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; padding: 1.5rem; }
.kpi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid;
}
.kpi-blue   { border-top-color: #2563EB; }
.kpi-gold   { border-top-color: var(--gold); }
.kpi-teal   { border-top-color: #0d9488; }
.kpi-orange { border-top-color: #ea580c; }
.kpi-icon   { font-size: 1.5rem; }
.kpi-blue   .kpi-icon { color: #2563EB; }
.kpi-gold   .kpi-icon { color: var(--gold); }
.kpi-teal   .kpi-icon { color: #0d9488; }
.kpi-orange .kpi-icon { color: #ea580c; }
.kpi-value  { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
.kpi-label  { font-family: var(--font-ui); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.kpi-sub    { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); }
.dash-card  { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.dash-card-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.dash-card-title  { font-size: 1rem; color: var(--navy); margin: 0; }
.dash-card-body   { padding: 1.25rem; }
.dash-table { font-family: var(--font-ui); font-size: .83rem; }
.dash-table thead th { background: var(--cream); color: var(--text-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; padding: .65rem 1rem; border: none; }
.dash-table tbody td { padding: .85rem 1rem; vertical-align: middle; border-bottom: 1px solid var(--border); }
.booking-ref { font-size: .75rem; background: var(--cream); padding: .15rem .45rem; border-radius: 3px; color: var(--navy); }
.dash-status-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .2rem .6rem;
  border-radius: 3px;
}
.dash-status-pending   { background: rgba(245,158,11,.12); color: #d97706; }
.dash-status-confirmed { background: rgba(59,130,246,.12); color: #2563eb; }
.dash-status-paid      { background: rgba(16,185,129,.12); color: #059669; }
.dash-status-completed { background: rgba(139,92,246,.12); color: #7c3aed; }
.dash-status-cancelled { background: rgba(239,68,68,.12); color: #dc2626; }
.status-bar-row { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-family: var(--font-ui); font-size: .82rem; }
.status-bar-label { display: flex; align-items: center; gap: .5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot-pending   { background: #d97706; }
.status-dot-confirmed { background: #2563eb; }
.status-dot-paid      { background: #059669; }
.status-dot-completed { background: #7c3aed; }
.status-dot-cancelled { background: #dc2626; }
.status-bar-count { font-weight: 700; color: var(--navy); }
.dash-inquiry-list  { list-style: none; padding: 0; margin: 0; }
.dash-inquiry-item  { display: flex; align-items: flex-start; gap: .75rem; padding: .85rem 1.25rem; border-bottom: 1px solid var(--border); }
.dash-inquiry-item:last-child { border-bottom: none; }
.inquiry-avatar { width: 36px; height: 36px; min-width: 36px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.inquiry-name    { font-family: var(--font-ui); font-size: .82rem; font-weight: 600; color: var(--navy); }
.inquiry-subject { font-size: .78rem; }
.inquiry-meta    { display: flex; align-items: center; gap: .5rem; margin-top: .2rem; }
.inquiry-type-badge { font-family: var(--font-ui); font-size: .68rem; font-weight: 700; text-transform: uppercase; background: var(--cream); color: var(--gold); padding: .1rem .45rem; border-radius: 3px; }
.inquiry-date { font-size: .72rem; }
.quick-actions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.quick-action-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}
.quick-action-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); color: var(--navy); }
.qa-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; }
.qa-label { font-family: var(--font-ui); font-size: .8rem; font-weight: 600; }
.dash-footer { text-align: center; padding: 2rem; color: var(--text-muted); font-family: var(--font-ui); font-size: .8rem; }
.dash-section-title { font-size: 1rem; color: var(--navy); margin-bottom: 1rem; }
.row.g-4.mt-1 { padding: 0 1.5rem; }
.dash-quick-actions { padding: 0 1.5rem; }

/* ========== LOGIN PAGE ========== */
.login-page { min-height: 100vh; display: flex; align-items: stretch; }
.login-split { display: flex; width: 100%; min-height: 100vh; }
.login-visual {
  flex: 1;
  background: var(--navy);
  background-image: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a4a7a 100%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.login-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.login-visual-inner { position: relative; z-index: 1; text-align: left; max-width: 400px; }
.login-logo { margin-bottom: 1.5rem; }
.login-brand { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; letter-spacing: .12em; line-height: 1.2; }
.login-brand span { color: var(--gold); font-size: 1.1rem; letter-spacing: .25em; }
.login-brand-tagline { font-family: var(--font-ui); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.5); margin-top: .5rem; }
.lv-feature { font-family: var(--font-ui); font-size: .875rem; color: rgba(255,255,255,.75); padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.login-form-panel { flex: 1; display: flex; align-items: center; justify-content: center; background: #fff; padding: 2rem; }
.login-form-inner { width: 100%; max-width: 420px; }
.login-title    { font-size: 1.75rem; color: var(--navy); margin-bottom: .25rem; }
.login-subtitle { font-family: var(--font-ui); color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.login-label    { font-family: var(--font-ui); font-weight: 600; font-size: .875rem; color: var(--navy); }
.password-toggle-btn { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0; }
.login-footer { padding-top: 1.5rem; border-top: 1px solid var(--border); }
.login-note { font-family: var(--font-ui); font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; }
.login-back-link { font-family: var(--font-ui); font-size: .82rem; color: var(--text-muted); }
.login-back-link:hover { color: var(--navy); }

@media (min-width: 768px) {
  .login-visual { display: flex; }
  .login-form-panel { flex: 0 0 480px; }
}

/* ========== ERROR PAGES ========== */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 4rem 1rem; }
.error-code  { font-family: var(--font-display); font-size: clamp(6rem, 15vw, 10rem); font-weight: 700; color: var(--gold); line-height: 1; opacity: .6; }
.error-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 1rem; }
.error-message { font-family: var(--font-ui); color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; }

/* ========== FOOTER ========== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: .08em; line-height: 1; }
.footer-logo-sub  { font-family: var(--font-ui); font-size: .65rem; font-weight: 700; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; }
.footer-tagline   { font-family: var(--font-ui); font-size: .875rem; line-height: 1.7; text-align: justify; margin-top: .5rem; }
.footer-heading   { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-links a { display: block; padding: .4rem 0; font-family: var(--font-ui); font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: .3rem; }
.footer-social-link { width: 34px; height: 34px; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .85rem; transition: all var(--transition); }
.footer-social-link:hover { background: var(--gold); color: #fff; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-family: var(--font-ui); font-size: .875rem; }
.footer-contact-list li:last-child { border-bottom: none; }
.footer-contact-list i { color: var(--gold); font-size: .9rem; margin-top: .2rem; }
.footer-contact-list a { color: rgba(255,255,255,.75); }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-emergency { background: rgba(224,120,50,.1); border-radius: var(--radius-sm); padding: .75rem 1rem; border: 1px solid rgba(224,120,50,.2); }
.emergency-label  { font-family: var(--font-ui); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.emergency-number { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gold-light); display: block; }
.emergency-number:hover { color: #fff; }
.footer-newsletter-title { font-family: var(--font-ui); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.footer-email-input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.footer-email-input::placeholder { color: rgba(255,255,255,.35); }
.footer-email-input:focus { background: rgba(255,255,255,.1); border-color: var(--gold); color: #fff; box-shadow: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; }
.footer-copyright { font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal a { font-family: var(--font-ui); font-size: .78rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }
.footer-credit {
  margin-top: .75rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  font-family: var(--font-ui);
  font-size: .73rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .04em;
}
.footer-credit i { font-size: .68rem; margin-right: .35rem; color: rgba(224,120,50,.5); }
.footer-credit span { color: rgba(255,255,255,.52); font-weight: 600; letter-spacing: .06em; }

/* ========== MESSAGES ========== */
.messages-container { padding: 1rem 0; }
.lht-alert { font-family: var(--font-ui); font-size: .875rem; border-radius: var(--radius-sm); }
.alert-success { border-left: 4px solid #198754; }
.alert-danger  { border-left: 4px solid #dc3545; }
.alert-warning { border-left: 4px solid #f0ad4e; }
.alert-info    { border-left: 4px solid #0dcaf0; }

/* ========== TESTIMONIALS ========== */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-slide  { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-controls { }
.testimonial-prev, .testimonial-next {
  background: #fff;
  border: 2px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  margin: 0 .25rem;
  transition: all var(--transition);
}
.testimonial-prev:hover, .testimonial-next:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Altezza-inspired layout (.lh-* component system)
═══════════════════════════════════════════════════════════════ */

/* ── Shared Utilities ── */
.lh-section       { padding: var(--section-pad); }
.lh-bg-light      { background: var(--cream); }
.lh-section-header { margin-bottom: 2.5rem; }
.lh-section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--navy); margin-bottom: .5rem; }
.lh-section-sub   { font-family: var(--font-ui); color: var(--text-muted); font-size: .95rem; max-width: 580px; }

/* ── Shared Buttons ── */
.lh-btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #fff;
  font-family: var(--font-ui); font-size: .875rem; font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none; border: none; cursor: pointer;
}
.lh-btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.lh-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--navy);
  font-family: var(--font-ui); font-size: .875rem; font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: all var(--transition);
  text-decoration: none; cursor: pointer;
}
.lh-btn-outline:hover { background: var(--navy); color: #fff; }

.lh-btn-whatsapp {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff;
  font-family: var(--font-ui); font-size: .875rem; font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none; border: none; cursor: pointer;
}
.lh-btn-whatsapp:hover { background: #128C7E; color: #fff; transform: translateY(-1px); }

/* ── Scroll Animations ── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   1. HERO
══════════════════════════════════════════ */
.lh-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--navy-dark);
}
.lh-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.lh-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; z-index: 0;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}
.lh-hero-grad { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 50%, #2B5555 100%); animation: none; }
@keyframes heroKenBurns { from { transform: scale(1.0); } to { transform: scale(1.06); } }
.lh-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(7,24,41,.72) 0%, rgba(11,37,69,.65) 50%, rgba(163,122,40,.2) 100%);
}
.lh-hero-body {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; width: 100%; padding-bottom: 5rem; padding-top: 7rem;
}
.lh-hero-text { max-width: 720px; }
.lh-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(224,120,50,.18); border: 1px solid rgba(224,120,50,.35);
  color: var(--gold-light); font-family: var(--font-ui); font-size: .78rem; font-weight: 700;
  padding: .45rem .9rem; border-radius: 20px; margin-bottom: 1.25rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.lh-hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 1rem;
}
.lh-hero-title em { color: var(--gold); font-style: normal; }
.lh-hero-sub  { font-family: var(--font-ui); font-size: 1.05rem; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: .75rem; }
.lh-hero-desc { font-family: var(--font-ui); font-size: .9rem; color: rgba(255,255,255,.7); max-width: 600px; line-height: 1.7; margin-bottom: 2rem; }
.lh-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.lh-cta-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; text-decoration: none; color: #fff;
  transition: all var(--transition); min-width: 220px;
}
.lh-cta-card:hover { background: rgba(255,255,255,.2); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.lh-cta-card-icon { width: 44px; height: 44px; background: var(--gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.lh-cta-card-title { font-family: var(--font-ui); font-size: .875rem; font-weight: 700; }
.lh-cta-card-sub   { font-family: var(--font-ui); font-size: .75rem; color: rgba(255,255,255,.7); }
.lh-cta-card-arrow { margin-left: auto; color: var(--gold-light); font-size: .85rem; }
.lh-hero-tripadvisor { flex-shrink: 0; }
.lh-ta-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.lh-ta-rank  { font-family: var(--font-ui); font-size: .8rem; font-weight: 700; color: #fff; }
.lh-ta-stars { font-size: .9rem; color: var(--gold); }
.lh-ta-stars span { color: rgba(255,255,255,.7); font-size: .75rem; font-family: var(--font-ui); }

/* ══════════════════════════════════════════
   2. RECOGNITION SECTION
══════════════════════════════════════════ */
.lh-recognition { background: #fff; padding: 3rem 0; border-bottom: 1px solid var(--border); }
.lh-recognition-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.lh-rec-card { display: flex; gap: 1.25rem; background: #fff; padding: 1.75rem; transition: background var(--transition); }
.lh-rec-card:hover { background: var(--cream); }
.lh-rec-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.lh-rec-gold   { background: rgba(224,120,50,.12); color: var(--gold); }
.lh-rec-green  { background: rgba(34,197,94,.12);  color: #16a34a; }
.lh-rec-blue   { background: rgba(37,99,235,.12);  color: #2563eb; }
.lh-rec-orange { background: rgba(234,88,12,.12);  color: #ea580c; }
.lh-rec-purple { background: rgba(139,92,246,.12); color: #7c3aed; }
.lh-rec-teal   { background: rgba(13,148,136,.12); color: #0d9488; }
.lh-rec-label  { font-family: var(--font-ui); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .2rem; }
.lh-rec-stat   { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.lh-rec-text   { font-family: var(--font-ui); font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .5rem; }
.lh-rec-link   { font-family: var(--font-ui); font-size: .8rem; font-weight: 700; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; transition: color var(--transition); }
.lh-rec-link:hover { color: var(--gold-dark); }

/* ══════════════════════════════════════════
   3. TOURS SECTION
══════════════════════════════════════════ */
.lh-tours-section { background: #fff; }
.lh-filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.lh-filter-tab {
  font-family: var(--font-ui); font-size: .82rem; font-weight: 700;
  padding: .55rem 1.25rem; border-radius: 20px;
  border: 2px solid var(--border); background: #fff; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.lh-filter-tab:hover, .lh-filter-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.lh-tours-grid, .lh-tours-placeholder-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.lh-tour-card, .lh-tour-card-placeholder {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.lh-tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.lh-tour-card-img-wrap { display: block; position: relative; overflow: hidden; height: 220px; }
.lh-tour-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.lh-tour-card:hover .lh-tour-card-img { transform: scale(1.06); }
.lh-tour-grad-1 { background: linear-gradient(135deg, #1B3C3C 0%, #2B5555 100%); }
.lh-tour-grad-2 { background: linear-gradient(135deg, #1a4a1a 0%, #2d8a3a 100%); }
.lh-tour-grad-3 { background: linear-gradient(135deg, #4a1a0a 0%, #c0551a 100%); }
.lh-tour-grad-4 { background: linear-gradient(135deg, #1a1a4a 0%, #4a3a8a 100%); }
.lh-tour-grad-5 { background: linear-gradient(135deg, #0a3a4a 0%, #0d9488 100%); }
.lh-tour-grad-6 { background: linear-gradient(135deg, #4a0a1a 0%, #9a1a3a 100%); }
.lh-tour-badge { position: absolute; top: .75rem; left: .75rem; font-family: var(--font-ui); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .65rem; border-radius: 3px; }
.lh-badge-hot { background: var(--gold); color: #fff; }
.lh-badge-new { background: #16a34a; color: #fff; }
.lh-tour-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.lh-tour-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.lh-tour-duration { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); }
.lh-tour-duration i { color: var(--gold); margin-right: .25rem; }
.lh-tour-type { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); background: rgba(224,120,50,.1); padding: .2rem .55rem; border-radius: 3px; }
.lh-tour-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: auto; padding-bottom: 1rem; }
.lh-tour-name a { color: inherit; text-decoration: none; }
.lh-tour-name a:hover { color: var(--gold); }
.lh-tour-footer { display: flex; align-items: flex-end; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; }
.lh-tour-price { display: flex; flex-direction: column; }
.lh-price-label { font-family: var(--font-ui); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
.lh-price-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.lh-price-per { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); }
.lh-btn-view {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-ui); font-size: .8rem; font-weight: 700;
  color: var(--navy); border: 2px solid var(--navy); padding: .5rem 1rem;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: all var(--transition); white-space: nowrap;
}
.lh-btn-view:hover { background: var(--navy); color: #fff; }
.lh-tours-viewall { text-align: center; margin-top: 1.5rem; }

/* ══════════════════════════════════════════
   4. CONSULTATION CTA
══════════════════════════════════════════ */
.lh-consultation-section { background: var(--navy); padding: 4rem 0; position: relative; overflow: hidden; }
.lh-consultation-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(224,120,50,.12) 0%, transparent 60%); }
.lh-consult-inner { position: relative; z-index: 1; display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap; }
.lh-consult-expert { display: flex; gap: 1rem; align-items: flex-start; flex-shrink: 0; }
.lh-expert-avatar { position: relative; width: 72px; height: 72px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lh-expert-avatar-initials { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; }
.lh-expert-online-dot { position: absolute; bottom: 2px; right: 2px; width: 14px; height: 14px; background: #22c55e; border-radius: 50%; border: 2px solid var(--navy); }
.lh-expert-name  { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; }
.lh-expert-title { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: .35rem; }
.lh-expert-note  { font-family: var(--font-ui); font-size: .78rem; color: var(--gold-light); display: flex; align-items: center; gap: .3rem; }
.lh-consult-content { flex: 1; min-width: 280px; }
.lh-consult-label { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); margin-bottom: .5rem; }
.lh-consult-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; margin-bottom: .75rem; }
.lh-consult-text  { font-family: var(--font-ui); font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 1.5rem; }
.lh-consult-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   5. RIGHT MATCH SECTION
══════════════════════════════════════════ */
.lh-match-section { background: var(--off-white); }
.lh-match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.lh-match-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.5rem;
  border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--transition), transform var(--transition);
}
.lh-match-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lh-match-icon { width: 40px; height: 40px; min-width: 40px; background: rgba(224,120,50,.1); color: var(--gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.lh-match-card p { font-family: var(--font-ui); font-size: .875rem; color: var(--text-body); line-height: 1.6; margin: 0; }
.lh-match-card p strong { color: var(--navy); }

/* ══════════════════════════════════════════
   6. ACHIEVEMENTS / CERTIFICATIONS
══════════════════════════════════════════ */
.lh-cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.lh-cert-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.75rem 1.25rem; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.lh-cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lh-cert-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: .25rem; }
.lh-cert-gold   { background: rgba(224,120,50,.12); color: var(--gold); }
.lh-cert-green  { background: rgba(34,197,94,.12);  color: #16a34a; }
.lh-cert-blue   { background: rgba(37,99,235,.12);  color: #2563eb; }
.lh-cert-teal   { background: rgba(13,148,136,.12); color: #0d9488; }
.lh-cert-navy   { background: rgba(11,37,69,.1);    color: var(--navy); }
.lh-cert-orange { background: rgba(234,88,12,.12);  color: #ea580c; }
.lh-cert-purple { background: rgba(139,92,246,.12); color: #7c3aed; }
.lh-cert-red    { background: rgba(220,38,38,.12);  color: #dc2626; }
.lh-cert-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); }
.lh-cert-sub  { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); }
.lh-cert-link { font-family: var(--font-ui); font-size: .75rem; font-weight: 700; color: var(--gold); text-decoration: none; margin-top: .25rem; }
.lh-cert-link:hover { color: var(--gold-dark); text-decoration: underline; }

/* ══════════════════════════════════════════
   7. IMPACT STATISTICS
══════════════════════════════════════════ */
.lh-impact-section { background: var(--navy); color: #fff; padding: var(--section-pad); }
.lh-impact-header { max-width: 700px; margin-bottom: 3rem; }
.lh-impact-header .lh-section-title { color: #fff; }
.lh-impact-tagline { font-family: var(--font-ui); font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-top: .5rem; }
.lh-impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.lh-impact-stat {
  text-align: center; padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md);
  background: rgba(255,255,255,.04); transition: background var(--transition), border-color var(--transition);
}
.lh-impact-stat:hover { background: rgba(255,255,255,.08); border-color: rgba(224,120,50,.4); }
.lh-impact-val { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.lh-impact-label { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ══════════════════════════════════════════
   8. CLIENT LOGOS (SCROLLING TICKER)
══════════════════════════════════════════ */
.lh-clients-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 2rem; text-align: center; }
.lh-clients-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.lh-clients-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  animation: clientsScroll 32s linear infinite;
}
.lh-clients-track:hover { animation-play-state: paused; }
@keyframes clientsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lh-client-logo {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .75rem 1.75rem; min-width: 140px; height: 52px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lh-client-logo:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.lh-client-name { font-family: var(--font-ui); font-size: .82rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; }

/* ══════════════════════════════════════════
   9. TESTIMONIALS
══════════════════════════════════════════ */
.lh-testimonials-section { background: #fff; }
.lh-testimonials-header { margin-bottom: 2.5rem; }
.lh-ta-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); border-radius: var(--radius-md);
  padding: 1.75rem 2rem; gap: 1.5rem; flex-wrap: wrap;
}
.lh-ta-banner-rank  { font-family: var(--font-ui); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-bottom: .35rem; }
.lh-ta-banner-count { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; }
.lh-ta-count-num    { color: var(--gold-light); }
.lh-ta-stars-row    { font-size: 1rem; color: var(--gold); margin-top: .25rem; }
.lh-ta-stars-row span { font-family: var(--font-ui); font-size: .82rem; color: rgba(255,255,255,.65); }
.lh-reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.lh-review-card { background: var(--cream); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--border-gold); transition: box-shadow var(--transition); }
.lh-review-card:hover { box-shadow: var(--shadow-md); }
.lh-review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.lh-review-avatar { width: 42px; height: 42px; min-width: 42px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.lh-review-meta   { flex: 1; }
.lh-review-author { font-family: var(--font-ui); font-size: .875rem; font-weight: 700; color: var(--navy); }
.lh-review-country { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); }
.lh-review-stars  { color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.lh-review-tour-tag { display: inline-block; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: rgba(224,120,50,.12); color: var(--gold-dark); padding: .2rem .6rem; border-radius: 3px; margin-bottom: .75rem; }
.lh-review-text { font-family: var(--font-body); font-size: .875rem; color: var(--text-body); line-height: 1.7; border: none; padding: 0; margin: 0; font-style: italic; }

/* ══════════════════════════════════════════
   10. BLOG SECTION
══════════════════════════════════════════ */
.lh-blog-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.lh-blog-tab {
  font-family: var(--font-ui); font-size: .82rem; font-weight: 700;
  padding: .5rem 1.1rem; border-radius: 20px; border: 2px solid var(--border);
  background: #fff; color: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.lh-blog-tab:hover, .lh-blog-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.lh-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.lh-blog-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.lh-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lh-blog-card-img-wrap { display: block; height: 180px; overflow: hidden; }
.lh-blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.lh-blog-grad { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, #2B5555 100%); }
.lh-blog-card:hover .lh-blog-card-img { transform: scale(1.05); }
.lh-blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.lh-blog-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.lh-blog-author { font-family: var(--font-ui); font-size: .75rem; font-weight: 700; color: var(--gold); }
.lh-blog-read   { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); }
.lh-blog-title { font-family: var(--font-display); font-size: 1rem; color: var(--navy); line-height: 1.45; margin-bottom: auto; padding-bottom: 1rem; flex: 1; }
.lh-blog-title a { color: inherit; text-decoration: none; }
.lh-blog-title a:hover { color: var(--gold); }
.lh-blog-read-link { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-ui); font-size: .8rem; font-weight: 700; color: var(--gold); text-decoration: none; transition: gap var(--transition); margin-top: auto; }
.lh-blog-read-link:hover { gap: .6rem; color: var(--gold-dark); }
.lh-blog-viewall { text-align: center; margin-top: 1.5rem; }

/* ══════════════════════════════════════════
   11. INSTAGRAM GRID
══════════════════════════════════════════ */
.lh-instagram-section { background: #fff; }
.lh-insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem; margin-bottom: 1.5rem; }
.lh-insta-tile { aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; position: relative; display: block; transition: transform var(--transition); background-size: cover; background-position: center; }
.lh-insta-tile:hover { transform: scale(.97); }
.lh-insta-grad-1 { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.lh-insta-grad-2 { background: linear-gradient(135deg, #1B3C3C 0%, #2B5555 100%); }
.lh-insta-grad-3 { background: linear-gradient(135deg, #1a4a1a 0%, #2d8a3a 100%); }
.lh-insta-grad-4 { background: linear-gradient(135deg, #4a1a0a 0%, #c0551a 100%); }
.lh-insta-grad-5 { background: linear-gradient(135deg, #0a3a4a 0%, #0d9488 100%); }
.lh-insta-grad-6 { background: linear-gradient(135deg, #4a1a3a 0%, #9a1a6a 100%); }
.lh-insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.lh-insta-tile:hover .lh-insta-overlay { opacity: 1; }
.lh-insta-overlay i { font-size: 1.75rem; color: #fff; }

/* ══════════════════════════════════════════
   12. YOUTUBE SECTION
══════════════════════════════════════════ */
.lh-yt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.lh-yt-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit; display: block;
  transition: box-shadow var(--transition), transform var(--transition);
}
.lh-yt-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); color: inherit; }
.lh-yt-thumb { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.lh-yt-grad-1 { background: linear-gradient(135deg, #1a0a0a 0%, #8b0000 100%); }
.lh-yt-grad-2 { background: linear-gradient(135deg, #1B3C3C 0%, #2B5555 100%); }
.lh-yt-grad-3 { background: linear-gradient(135deg, #1a3a1a 0%, #2d6a2d 100%); }
.lh-yt-play { width: 56px; height: 56px; background: rgba(255,0,0,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; transition: transform var(--transition), background var(--transition); }
.lh-yt-card:hover .lh-yt-play { transform: scale(1.1); background: #ff0000; }
.lh-yt-body  { padding: 1rem 1.25rem; }
.lh-yt-title { font-family: var(--font-display); font-size: .95rem; color: var(--navy); margin-bottom: .4rem; line-height: 1.4; }
.lh-yt-meta  { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   13. FINAL CTA SECTION
══════════════════════════════════════════ */
.lh-final-cta { background: var(--navy-dark); padding: 4rem 0; position: relative; overflow: hidden; }
.lh-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(224,120,50,.1) 0%, transparent 65%); }
.lh-final-cta-inner   { position: relative; z-index: 1; text-align: center; }
.lh-final-cta-title   { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: .75rem; }
.lh-final-cta-sub     { font-family: var(--font-ui); font-size: .9rem; color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 2.5rem; }
.lh-final-cta-options { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.lh-cta-option {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: 2rem 2.5rem; border-radius: var(--radius-md);
  text-decoration: none; transition: all var(--transition);
  min-width: 180px; border: 2px solid transparent;
}
.lh-cta-option:hover { transform: translateY(-4px); }
.lh-cta-whatsapp { background: #25D366; color: #fff; }
.lh-cta-whatsapp:hover { background: #1ebe5c; color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,.4); }
.lh-cta-enquire  { background: var(--gold); color: #fff; }
.lh-cta-enquire:hover  { background: var(--gold-dark); color: #fff; box-shadow: var(--shadow-gold); }
.lh-cta-call { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.lh-cta-call:hover { background: rgba(255,255,255,.18); color: #fff; }
.lh-cta-opt-icon  { font-size: 2rem; }
.lh-cta-opt-label { font-family: var(--font-ui); font-size: .9rem; font-weight: 700; }
.lh-cta-opt-sub   { font-family: var(--font-ui); font-size: .75rem; opacity: .8; }

/* ══════════════════════════════════════════
   Homepage Responsive Overrides
══════════════════════════════════════════ */
@media (max-width: 1199.98px) {
  .lh-insta-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991.98px) {
  .lh-hero-body { flex-direction: column; align-items: flex-start; padding-bottom: 3rem; }
  .lh-hero-tripadvisor { display: none; }
  .lh-recognition-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-consult-inner { flex-direction: column; gap: 1.5rem; }
  .lh-insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
  .lh-hero { min-height: 430px; }
  .lh-hero-body { padding-top: 3.5rem; padding-bottom: 2.25rem; }
  .lh-hero-title { font-size: clamp(1.75rem, 7.5vw, 2.4rem); margin-bottom: .65rem; }
  .lh-hero-badge { font-size: .68rem; padding: .35rem .75rem; margin-bottom: .85rem; }
  .lh-hero-sub  { font-size: .88rem; margin-bottom: .5rem; }
  .lh-hero-desc { display: none; }
  .lh-hero-ctas { flex-direction: column; }
  .lh-cta-card { min-width: 0; width: 100%; }
  .lh-recognition-grid { grid-template-columns: 1fr; }
  .lh-tours-grid, .lh-tours-placeholder-grid { grid-template-columns: 1fr; }
  .lh-match-grid { grid-template-columns: 1fr; }
  .lh-cert-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-yt-grid { grid-template-columns: 1fr; }
  .lh-final-cta-options { flex-direction: column; align-items: center; }
  .lh-cta-option { width: 100%; max-width: 320px; flex-direction: row; padding: 1.25rem 1.5rem; }
  .lh-ta-banner { flex-direction: column; text-align: center; }
  .lh-reviews-grid { grid-template-columns: 1fr; }
  .lh-blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .lh-hero { min-height: 370px; }
  .lh-hero-body { padding-top: 3rem; padding-bottom: 1.75rem; }
  .lh-hero-title { font-size: clamp(1.5rem, 7vw, 2rem); margin-bottom: .5rem; }
  .lh-hero-badge { font-size: .62rem; padding: .28rem .65rem; margin-bottom: .65rem; }
  .lh-hero-sub  { display: none; }
  .lh-cta-card  { padding: .75rem 1rem; gap: .75rem; }
  .lh-cta-card-icon { width: 36px; height: 36px; font-size: .9rem; }
  .lh-cta-card-title { font-size: .8rem; }
  .lh-cta-card-sub   { font-size: .68rem; }
  .lh-cert-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-impact-grid { grid-template-columns: 1fr; }
  .lh-insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== ENHANCED PAGE HERO ========== */
.page-hero {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(11,37,69,.18));
  pointer-events: none;
}
.page-hero-about    { background-image: linear-gradient(155deg, #0E2424 0%, #1B3C3C 55%, #2B5555 100%); }
.page-hero-tours    { background: linear-gradient(155deg, #1B3C3C 0%, #245050 55%, #2B5555 100%); }
.page-hero-destinations { background: linear-gradient(155deg, #0E2424 0%, #1B3C3C 50%, #0d5c4a 100%); }
.page-hero-blog     { background: linear-gradient(155deg, #1a1a2e 0%, #1B3C3C 60%, #2B5555 100%); }
.page-hero-booking  { background: linear-gradient(155deg, #0E2424 0%, #1B3C3C 100%); }
.page-hero-contact  { background: linear-gradient(155deg, #1B3C3C 0%, #245050 55%, #2B5555 100%); }

/* decorative accent for all page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,120,50,.08) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin: .75rem 0 .75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  line-height: 1.2;
}
.page-hero-sub {
  color: rgba(255,255,255,.8);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
  text-align: left;
}
.page-hero .text-center .page-hero-sub { margin: 0 auto; text-align: center; }

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-light);
  background: rgba(224,120,50,.15);
  border: 1px solid rgba(224,120,50,.3);
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ========== ENHANCED TOUR CARDS ========== */
.lh-tour-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.55) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.lh-tour-card .lh-tour-badge { z-index: 2; }

/* Price overlay on image */
.lh-tour-price-overlay {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  line-height: 1.2;
}
.lh-tour-price-overlay small { font-family: var(--font-ui); font-size: .6rem; font-weight: 400; display: block; opacity: .85; }

/* ========== ENHANCED DEST CARDS ========== */
.dest-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.5) 0%, transparent 55%);
}
.dest-card-img-link { position: relative; }

/* ========== ENHANCED BLOG CARDS ========== */
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.45) 0%, transparent 50%);
}
.blog-card-img-link { position: relative; }

/* ========== SECTION DIVIDER ACCENTS ========== */
.section-gold-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: .75rem 0 1.25rem;
}
.section-gold-accent.centered { margin-left: auto; margin-right: auto; }

/* ========== ENHANCED FORM INPUTS ========== */
.form-control, .form-select {
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control:hover:not(:focus), .form-select:hover:not(:focus) {
  border-color: rgba(224,120,50,.4);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,120,50,.15);
}

/* ========== ENHANCED BOOKING CARD ========== */
.booking-card {
  position: sticky;
  top: 6rem;
}

/* ========== TOUR DETAIL STICKY BOOKING ========== */
@media (min-width: 992px) {
  .booking-sidebar { position: sticky; top: 6rem; }
}

/* ========== ENHANCED TESTIMONIAL SECTION ========== */
.lh-review-card {
  position: relative;
}
.lh-review-card::before {
  content: '\201C';
  position: absolute;
  top: .75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: .12;
  line-height: 1;
  pointer-events: none;
}

/* ========== ENHANCED DESTINATIONS SECTION ========== */
.dest-card-img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.5) 0%, transparent 55%);
  z-index: 1;
  border-radius: 0;
}
.dest-card-overlay { z-index: 2; }

/* ========== ABOUT PAGE TEAM CARD ENHANCEMENTS ========== */
.team-card {
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.team-card:hover::before { transform: scaleX(1); }

/* ========== CONTACT PAGE IMPROVEMENTS ========== */
.contact-form-card {
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

/* ========== FILTER SIDEBAR IMPROVEMENTS ========== */
.filter-sidebar {
  position: sticky;
  top: 6rem;
}

/* ========== MOBILE NAV — z-index fix ── */
.lht-offcanvas { z-index: 1080 !important; }

/* ========== PRINT STYLES ========== */
@media print {
  .site-header, .whatsapp-float, .back-to-top, .kili-quicknav { display: none !important; }
}

/* ========== BLOG — ABOUT TANZANIA CATEGORY ========== */
.tz-cat-hero {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 400px; margin-bottom: 2rem; display: flex; align-items: flex-end;
}
.tz-cat-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.tz-cat-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,24,41,.3) 0%, rgba(20,60,20,.55) 40%, rgba(7,24,41,.82) 100%);
}
.tz-cat-hero-body {
  position: relative; z-index: 2; padding: 2.5rem;
}
.tz-cat-eyebrow {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold-light); background: rgba(224,120,50,.18);
  border: 1px solid rgba(224,120,50,.35);
  padding: .35rem .9rem; border-radius: 20px;
  display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1rem;
}
.tz-cat-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1rem;
}
.tz-cat-title em { color: var(--gold); font-style: normal; }
.tz-cat-desc {
  font-family: var(--font-ui); font-size: .9rem;
  color: rgba(255,255,255,.82); max-width: 600px;
  line-height: 1.65; margin-bottom: 1.5rem;
}
.tz-cat-facts {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  background: rgba(0,0,0,.35); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); overflow: hidden;
  width: fit-content;
}
.tz-fact {
  display: flex; flex-direction: column; align-items: center;
  padding: .7rem 1.25rem; text-align: center;
}
.tz-fact-num {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.tz-fact-label {
  font-family: var(--font-ui); font-size: .62rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.65); margin-top: .2rem;
}
.tz-fact-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0;
}

/* Destination strip */
.tz-dest-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.tz-dest-label {
  font-family: var(--font-ui); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted);
}
.tz-dest-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.tz-dest-card {
  background: #fff; border-radius: var(--radius-md); padding: 1.5rem 1.25rem;
  border: 1px solid var(--border); border-top: 3px solid transparent;
  box-shadow: var(--shadow-sm); position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tz-dest-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tz-dest-card-highlight { border-top-color: var(--gold); }

.tz-dest-highlight-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-family: var(--font-ui); font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .7rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.tz-dest-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #fff; margin-bottom: 1rem;
}
.tz-icon-serengeti  { background: linear-gradient(135deg, #C27A20, #E8A83A); }
.tz-icon-zanzibar   { background: linear-gradient(135deg, #0077B6, #48CAE4); }
.tz-icon-ngorongoro { background: linear-gradient(135deg, #1B3C3C, #2D7D7D); }
.tz-icon-kili       { background: linear-gradient(135deg, #3D405B, #6B7A8D); }

.tz-dest-name {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--navy); margin-bottom: .5rem;
}
.tz-dest-desc {
  font-family: var(--font-ui); font-size: .8rem;
  color: var(--text-muted); line-height: 1.55; margin-bottom: .75rem;
}
.tz-dest-tag {
  display: inline-block; font-family: var(--font-ui); font-size: .62rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .65rem; border-radius: 20px;
}
.tz-tag-wildlife  { background: rgba(200,120,20,.12); color: #B8720A; }
.tz-tag-beach     { background: rgba(0,119,182,.1); color: #005F91; }
.tz-tag-adventure { background: rgba(61,64,91,.1); color: var(--navy); }

/* Responsive */
@media (max-width: 991.98px) {
  .tz-cat-hero { height: 340px; }
  .tz-dest-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .tz-cat-hero { height: 480px; }
  .tz-dest-strip { grid-template-columns: 1fr; }
  .tz-cat-facts { width: 100%; justify-content: center; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1399.98px) {
  .lht-nav-link { padding: .6rem .6rem !important; }
}

@media (max-width: 1199.98px) {
  .lht-nav-link { font-size: .82rem !important; }
}

@media (max-width: 991.98px) {
  .dashboard-sidebar { display: none; }
  .dashboard-sidebar.sidebar-collapsed { display: flex; }
  .dash-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .row.g-4.mt-1, .dash-quick-actions { padding: 0 1rem; }
  .dash-welcome-banner { margin: 1rem 1rem 0; }
  .filter-sidebar { position: static; top: auto; }
  .booking-sidebar { position: static; top: auto; }
}

@media (max-width: 767.98px) {
  :root { --section-pad: 3rem 0; }
  .dash-kpi-grid { grid-template-columns: repeat(2, 1fr); padding: 1rem; gap: .75rem; }
  .kpi-value { font-size: 1.5rem; }
  .confirm-card { padding: 2rem 1.25rem; }
  .about-image-badge { bottom: -.5rem; right: -.5rem; }
  .booking-form-body { padding: 1.25rem; }
  .page-hero { padding: 4rem 0 3rem; }
  .page-hero-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .topbar { display: none; }
  .lh-reviews-grid { grid-template-columns: 1fr; }
  .mega-inner { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .dash-kpi-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .lh-tour-card-img-wrap { height: 200px; }
  .kili-hero-stats { flex-direction: column; gap: .5rem; }
  .kili-hero-stats .kili-stat-pill { width: fit-content; }
}

/* ═══════════════════════════════════════════════════════
   BLOG — MOBILE-FIRST RESPONSIVE OVERHAUL
   Phone-first: everything tuned for 360–430 px screens
═══════════════════════════════════════════════════════ */

/* ── Blog hero — mobile compact ── */
@media (max-width: 767.98px) {
  .blog-hero-enhanced        { min-height: 350px; padding: 2.75rem 0 1.75rem; }
  .blog-hero-enhanced .page-hero-sub { display: none; }
  .blog-hero-enhanced .page-hero-title { font-size: clamp(1.55rem, 6.5vw, 2rem); margin-bottom: .65rem; }
  .blog-hero-enhanced .page-hero-label { font-size: .62rem; margin-bottom: .65rem; }
  .blog-slider-btn           { display: none; }
  .blog-slider-dots          { bottom: .75rem; }
  .blog-slider-dot           { width: 6px; height: 6px; }
  .blog-slider-dot.is-active { width: 18px; }
  .blog-hero-slide-caption   { font-size: .58rem; bottom: 2.25rem; left: 1rem; }
  .blog-hero-search {
    flex-direction: row;
    gap: 0;
    padding: .25rem;
    border-radius: var(--radius-sm);
    max-width: 100%;
    margin-top: .75rem;
  }
  .blog-hero-search-input {
    border-radius: var(--radius-sm) !important;
    font-size: .82rem;
    padding: .5rem .75rem;
    min-width: 0;
  }
  .blog-hero-search-btn {
    border-radius: var(--radius-sm) !important;
    padding: .5rem .85rem;
    flex-shrink: 0;
  }
}
@media (max-width: 575.98px) {
  .blog-hero-enhanced        { min-height: 310px; padding: 2.25rem 0 1.35rem; }
  .blog-hero-enhanced .page-hero-label { display: none; }
  .blog-hero-enhanced .page-hero-title { font-size: clamp(1.35rem, 6vw, 1.7rem); margin-bottom: .5rem; }
  .blog-hero-slide-caption   { display: none; }
  .blog-hero-search          { margin-top: .6rem; }
  .blog-hero-search-input    { font-size: .8rem; padding: .45rem .65rem; }
  .blog-hero-search-btn      { padding: .45rem .75rem; font-size: .8rem; }
}

/* ── Category filter strip — horizontal scroll ── */
/* Filter strip — full-width scrollable on mobile */
.blog-filter-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}
.blog-filter-scroll-wrap::-webkit-scrollbar { display: none; }
.blog-filter-inner {
  min-width: max-content;
  padding: .65rem 1rem;
  gap: .45rem;
}
@media (min-width: 992px) {
  .blog-filter-inner { min-width: 0; flex-wrap: wrap; }
}
.blog-filter-pill { flex-shrink: 0; }

/* ── Featured article card ── */
@media (max-width: 767.98px) {
  .blog-featured-img-wrap { height: 230px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .blog-featured-body     { padding: 1.25rem; }
  .blog-featured-title    { font-size: 1.15rem; line-height: 1.4; }
  .blog-featured-excerpt  { font-size: .82rem; line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .blog-featured-footer   { flex-wrap: wrap; gap: .65rem; }
  .blog-featured-footer .btn { flex: 1 1 100%; text-align: center; }
}

/* ── Article card grid ── */
@media (max-width: 575.98px) {
  .blog-card-photo { height: 190px; }
  .blog-card-body  { padding: 1rem; }
  .blog-title      { font-size: .95rem; line-height: 1.4; }
  .blog-excerpt    { font-size: .8rem; }
  .blog-card-footer { flex-wrap: wrap; gap: .5rem; }
  .blog-card-footer .btn { flex: 1 1 100%; text-align: center; font-size: .78rem; }
}

/* ── ABOUT ROYAL HORIZON TOUR ── */
@media (max-width: 991.98px) {
  .about-cat-spotlight { grid-template-columns: 1fr; gap: 0; border-radius: var(--radius-md); overflow: hidden; }
  .about-cat-img-wrap  { height: 220px; order: -1; border-radius: 0; }
  .about-cat-img       { border-radius: 0; }
  .about-cat-spotlight-inner { border-radius: 0; padding: 1.5rem; }
  .about-cat-heading   { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .about-cat-stats     { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
}
@media (max-width: 767.98px) {
  .about-values-strip  { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .about-value-item    { padding: 1rem; gap: .75rem; }
  .about-value-icon    { width: 36px; height: 36px; font-size: 1rem; }
  .about-value-title   { font-size: .9rem; }
  .about-value-sub     { font-size: .72rem; }
}
@media (max-width: 420px) {
  .about-values-strip  { grid-template-columns: 1fr; }
  .about-cat-stats     { grid-template-columns: repeat(2, 1fr); }
}

/* ── CLIMBING KILIMANJARO ── */
@media (max-width: 767.98px) {
  .climb-cat-hero      { height: auto; min-height: 360px; border-radius: var(--radius-md); }
  .climb-cat-hero-body { padding: 1.5rem 1.25rem; }
  .climb-cat-eyebrow   { font-size: .64rem; }
  .climb-cat-title     { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .climb-cat-desc      { font-size: .82rem; line-height: 1.6; }
  .climb-cat-stats     { flex-wrap: wrap; gap: .5rem; }
  .climb-stat-divider  { display: none; }
  .climb-stat          { min-width: calc(50% - .5rem); background: rgba(0,0,0,.25); border-radius: var(--radius-sm); padding: .5rem .75rem; }
  .climb-stat-num      { font-size: 1.2rem; }
  .climb-stat-label    { font-size: .6rem; }
  .climb-route-cards   { grid-template-columns: 1fr; }
  .climb-route-card-featured { order: -1; }
  .climb-route-best-badge { position: static; border-radius: var(--radius-sm) var(--radius-sm) 0 0; margin-bottom: -1px; display: block; text-align: center; padding: .3rem; font-size: .65rem; }
}

/* ── SAFARI ── */
@media (max-width: 767.98px) {
  .safari-cat-hero      { height: auto; min-height: 370px; border-radius: var(--radius-md); }
  .safari-cat-hero-body { padding: 1.5rem 1.25rem; }
  .safari-cat-eyebrow   { font-size: .64rem; }
  .safari-cat-title     { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .safari-cat-desc      { font-size: .82rem; line-height: 1.6; }
  .safari-cat-pillars   { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .safari-pillar        { padding: .6rem .75rem; gap: .5rem; font-size: .75rem; }
  .safari-seasons-strip { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .safari-season-card   { padding: 1.25rem; }
  .safari-season-icon   { width: 38px; height: 38px; font-size: .95rem; margin-bottom: .5rem; }
  .safari-season-months { font-size: .65rem; }
  .safari-season-name   { font-size: .95rem; }
  .safari-season-desc   { font-size: .76rem; }
}
@media (max-width: 420px) {
  .safari-seasons-strip { grid-template-columns: 1fr; }
  .safari-cat-pillars   { grid-template-columns: repeat(2, 1fr); }
}

/* ── ABOUT TANZANIA ── */
@media (max-width: 767.98px) {
  .tz-cat-hero      { height: auto; min-height: 380px; border-radius: var(--radius-md); }
  .tz-cat-hero-body { padding: 1.5rem 1.25rem; }
  .tz-cat-eyebrow   { font-size: .64rem; }
  .tz-cat-title     { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .tz-cat-desc      { font-size: .82rem; line-height: 1.6; }
  .tz-cat-facts     { width: 100%; flex-wrap: wrap; justify-content: space-between; }
  .tz-fact          { padding: .55rem .75rem; flex: 1 1 calc(50% - 1px); }
  .tz-fact-num      { font-size: 1.1rem; }
  .tz-fact-label    { font-size: .58rem; }
  .tz-fact-divider  { height: 30px; }
  .tz-dest-strip    { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .tz-dest-card     { padding: 1.1rem 1rem; }
  .tz-dest-icon     { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: .75rem; }
  .tz-dest-name     { font-size: .95rem; }
  .tz-dest-desc     { font-size: .75rem; }
}
@media (max-width: 420px) {
  .tz-dest-strip    { grid-template-columns: 1fr; }
  .tz-cat-facts     { justify-content: flex-start; }
  .tz-fact          { flex: 1 1 50%; }
}

/* ── Sidebar compact on mobile ── */
@media (max-width: 991.98px) {
  .blog-sidebar-widget       { padding: 1.25rem; }
  .sidebar-widget-title      { font-size: .9rem; margin-bottom: .9rem; }
  .blog-newsletter-widget    { text-align: center; }
  .blog-trip-cta-widget      { padding: 1.25rem; }
  .blog-trip-cta-icon        { font-size: 1.75rem; margin-bottom: .5rem; }
  .blog-trip-cta-title       { font-size: 1rem; }
  .recent-post-thumb         { width: 52px; height: 52px; }
  .recent-post-title         { font-size: .78rem; }
}

/* ── Sidebar column order — content always first ── */
@media (max-width: 991.98px) {
  .col-lg-8 { order: 1; }
  .col-lg-4 { order: 2; }
}

/* ── Section heading / articles heading ── */
@media (max-width: 575.98px) {
  .about-articles-title { font-size: 1.1rem; }
  .climb-routes-label   { font-size: .65rem; }
  .safari-seasons-label { font-size: .65rem; }
  .tz-dest-label        { font-size: .65rem; }
}

/* ── Empty state ── */
@media (max-width: 575.98px) {
  .blog-empty-state { padding: 3rem 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   DESTINATIONS LIST PAGE  (.dlist-*)
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.dlist-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dlist-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}
.dlist-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,24,41,.18) 0%,
    rgba(7,24,41,.12) 38%,
    rgba(7,24,41,.62) 72%,
    rgba(7,24,41,.88) 100%
  );
}
.dlist-hero-inner {
  position: relative; z-index: 2;
  padding-top: 5.5rem;
  padding-bottom: 0;
  width: 100%;
}
.dlist-breadcrumb { margin-bottom: 3rem; }
.dlist-breadcrumb .breadcrumb-item,
.dlist-breadcrumb .breadcrumb-item a,
.dlist-breadcrumb .breadcrumb-item.active {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
}
.dlist-breadcrumb .breadcrumb-item::before { color: rgba(255,255,255,.4); }

.dlist-hero-content { max-width: 720px; padding-bottom: 2.5rem; }
.dlist-hero-label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-ui); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 1.35rem;
}
.dlist-hero-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
  animation: dlist-pulse 2.2s infinite;
}
@keyframes dlist-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.75); }
}
.dlist-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5.5vw, 3.75rem);
  color: #fff; line-height: 1.13; margin-bottom: 1.25rem;
  text-shadow: 0 2px 22px rgba(0,0,0,.45);
}
.dlist-hero-accent { color: var(--gold); }
.dlist-hero-sub {
  font-family: var(--font-ui); font-size: 1.05rem;
  color: rgba(255,255,255,.82); line-height: 1.75;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.dlist-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats panel */
.dlist-hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 1.6rem 0;
  margin-top: 2.5rem;
  width: fit-content;
  max-width: 100%;
}
.dlist-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 2.25rem; gap: .25rem;
}
.dlist-stat-num {
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.dlist-stat-plus { color: var(--gold); font-size: 1.6rem; vertical-align: middle; }
.dlist-stat-label {
  font-family: var(--font-ui); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.6);
}
.dlist-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.22); flex-shrink: 0; }

/* ── Filter bar ── */
.dlist-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  z-index: 100;
}
.dlist-filter-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dlist-filter-scroll::-webkit-scrollbar { display: none; }
.dlist-filter-inner {
  display: flex; align-items: center; gap: .4rem;
  padding: .7rem 0; min-width: max-content;
}
@media (min-width: 992px) {
  .dlist-filter-inner { min-width: 0; flex-wrap: wrap; }
}
.dlist-filter-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-ui); font-size: .82rem; font-weight: 500;
  padding: .46rem 1.15rem;
  border-radius: 2rem;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.dlist-filter-pill:hover { border-color: var(--teal); color: var(--teal); background: rgba(26,107,90,.06); }
.dlist-filter-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ── Body ── */
.dlist-body { padding: 4rem 0 2.5rem; }

/* ── Featured destination ── */
.dlist-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(7,24,41,.18);
}
.dlist-featured-link {
  display: grid; grid-template-columns: 1fr 1fr;
  text-decoration: none; min-height: 440px;
}
.dlist-featured-img-wrap { position: relative; overflow: hidden; }
.dlist-featured-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 440px;
  transition: transform 7s ease-out;
}
.dlist-featured:hover .dlist-featured-img { transform: scale(1.05); }
.dlist-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(7,24,41,.18) 100%);
}
.dlist-featured-body {
  background: var(--navy);
  color: #fff;
  padding: 3rem 2.75rem;
  display: flex; flex-direction: column; justify-content: center; gap: .9rem;
}
.dlist-featured-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-ui); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); font-weight: 700;
}
.dlist-featured-region {
  font-family: var(--font-ui); font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
}
.dlist-featured-name {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: #fff; line-height: 1.2; margin: 0;
}
.dlist-featured-desc {
  font-family: var(--font-ui); font-size: .95rem;
  color: rgba(255,255,255,.72); line-height: 1.75; margin: 0;
}
.dlist-featured-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  font-family: var(--font-ui); font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.dlist-featured-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .88rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
  margin-top: .5rem;
  transition: gap var(--transition);
}
.dlist-featured:hover .dlist-featured-cta { gap: .85rem; }

/* ── Destination card ── */
.dlist-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.dlist-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.dlist-card-img-link {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.dlist-card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 5s ease-out;
}
.dlist-card-img-link:hover .dlist-card-img { transform: scale(1.07); }
.dlist-img-grad { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.dlist-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.72) 0%, transparent 52%);
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-start;
  padding: .85rem 1rem; gap: .35rem;
}
.dlist-card-region {
  font-family: var(--font-ui); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold);
  background: rgba(7,24,41,.6);
  backdrop-filter: blur(4px);
  padding: .18rem .6rem; border-radius: 2rem;
}
.dlist-card-tag {
  font-family: var(--font-ui); font-size: .66rem;
  color: rgba(255,255,255,.75);
}
.dlist-card-arrow {
  position: absolute; top: .8rem; right: .8rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .72rem;
  opacity: 0; transform: translateX(-5px);
  transition: opacity var(--transition), transform var(--transition);
}
.dlist-card-img-link:hover .dlist-card-arrow { opacity: 1; transform: translateX(0); }
.dlist-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; flex: 1;
}
.dlist-card-name { font-size: 1.08rem; margin-bottom: .5rem; line-height: 1.3; }
.dlist-card-name a { color: var(--navy); text-decoration: none; }
.dlist-card-name a:hover { color: var(--teal); }
.dlist-card-desc {
  font-family: var(--font-ui); font-size: .855rem;
  color: var(--text-muted); line-height: 1.65; margin-bottom: auto;
}
.dlist-card-best-time {
  font-family: var(--font-ui); font-size: .78rem;
  color: var(--text-muted); margin-top: .85rem;
}
.dlist-card-best-time .fa-sun { color: var(--gold); }
.dlist-card-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
  font-family: var(--font-ui); font-size: .8rem; font-weight: 700;
  color: var(--teal); text-decoration: none;
  padding: .5rem 0;
  border-top: 1px solid var(--border);
  transition: color var(--transition), gap var(--transition);
}
.dlist-card-btn:hover { color: var(--navy); gap: .65rem; }

/* ── Region section headings ── */
.dlist-region-header { margin-bottom: 1.75rem; }
.dlist-region-title {
  font-family: var(--font-head); font-size: 1.7rem; color: var(--navy);
  display: flex; align-items: center; gap: .75rem; margin-bottom: .35rem;
}
.dlist-region-dot {
  width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0;
}
.dlist-region-dot.tanzania { background: var(--gold); }
.dlist-region-dot.zanzibar { background: var(--teal); }
.dlist-region-dot.other    { background: var(--navy-mid); }
.dlist-region-sub {
  font-family: var(--font-ui); font-size: .9rem;
  color: var(--text-muted); margin: 0;
}

/* ── Experience types section ── */
.dlist-experiences { padding: 5rem 0; background: var(--cream); }
.dlist-exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .dlist-exp-grid { grid-template-columns: repeat(4, 1fr); }
}
.dlist-exp-card {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  height: 340px;
  background-size: cover; background-position: center;
  transition: transform .4s ease;
}
.dlist-exp-card:hover { transform: scale(1.02); }
.dlist-exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.85) 0%, rgba(7,24,41,.2) 55%, transparent 100%);
  transition: background .4s ease;
}
.dlist-exp-card:hover .dlist-exp-overlay {
  background: linear-gradient(to top, rgba(7,24,41,.92) 0%, rgba(7,24,41,.38) 60%, transparent 100%);
}
.dlist-exp-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem 1.35rem; }
.dlist-exp-icon { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: .7rem; }
.dlist-exp-name { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-bottom: .4rem; }
.dlist-exp-desc { font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.72); line-height: 1.5; margin: 0; }

/* ═══════════════════════════
   DESTINATIONS — RESPONSIVE
═══════════════════════════ */
@media (max-width: 991.98px) {
  .dlist-hero { min-height: 480px; }
  .dlist-hero-inner { padding-top: 4rem; }
  .dlist-hero-stats { width: 100%; border-radius: 0; }
  .dlist-featured-link { grid-template-columns: 1fr; }
  .dlist-featured-img { min-height: 260px; height: 260px; }
  .dlist-featured-body { padding: 1.75rem 1.5rem; }
}
@media (max-width: 767.98px) {
  .dlist-hero { min-height: 380px; }
  .dlist-hero-inner { padding-top: 3.5rem; }
  .dlist-hero-label { font-size: .7rem; letter-spacing: .06em; }
  .dlist-hero-title { font-size: clamp(1.6rem, 7vw, 2.1rem); margin-bottom: .85rem; }
  .dlist-hero-sub { display: none; }
  .dlist-hero-actions { gap: .6rem; margin-bottom: 0; }
  .dlist-hero-actions .btn { font-size: .82rem; padding: .45rem 1rem; }
  .dlist-hero-content { padding-bottom: 1.25rem; }
  .dlist-hero-stats { padding: .85rem 0; margin-top: 1.25rem; }
  .dlist-stat { padding: 0 .85rem; gap: .15rem; }
  .dlist-stat-num { font-size: 1.25rem; }
  .dlist-stat-label { font-size: .58rem; }
  .dlist-stat-divider { height: 30px; }
  .dlist-featured-img { min-height: 220px; height: 220px; }
  .dlist-featured-body { padding: 1.35rem 1.15rem; gap: .55rem; }
  .dlist-featured-name { font-size: 1.35rem; }
  .dlist-featured-desc { font-size: .85rem; line-height: 1.55; }
  .dlist-exp-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .dlist-exp-card { height: 190px; }
  .dlist-exp-name { font-size: .95rem; }
  .dlist-exp-desc { font-size: .71rem; }
  .dlist-region-title { font-size: 1.25rem; }
  .dlist-body { padding: 2rem 0 1.25rem; }
  .dlist-experiences { padding: 3rem 0; }
}
@media (max-width: 575.98px) {
  .dlist-hero { min-height: 340px; }
  .dlist-hero-inner { padding-top: 3rem; }
  .dlist-hero-label { display: none; }
  .dlist-hero-title { font-size: clamp(1.45rem, 6.5vw, 1.85rem); margin-bottom: .7rem; }
  .dlist-hero-actions .btn-lg { font-size: .8rem; padding: .42rem .95rem; }
  .dlist-hero-stats {
    overflow-x: auto; flex-wrap: nowrap;
    scrollbar-width: none; padding: .75rem 0;
  }
  .dlist-hero-stats::-webkit-scrollbar { display: none; }
  .dlist-stat { padding: 0 .75rem; }
  .dlist-stat-num { font-size: 1.1rem; }
  .dlist-stat-label { font-size: .56rem; }
  .dlist-stat-divider { height: 26px; }
  .dlist-featured-img { min-height: 200px; height: 200px; }
  .dlist-featured-body { padding: 1.1rem 1rem; }
  .dlist-featured-name { font-size: 1.2rem; }
  .dlist-exp-grid { grid-template-columns: 1fr 1fr; gap: .55rem; }
  .dlist-exp-card { height: 170px; }
  .dlist-card-img-link { aspect-ratio: 16/10; }
}

/* ═══════════════════════════════════════════════════════════════
   GROUP DEPARTURES PAGE  (.grp-*)
═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.grp-hero {
  position: relative; min-height: 660px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.grp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 38%;
  transform: scale(1.05); transition: transform 10s ease-out;
}
.grp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,24,41,.2) 0%, rgba(7,24,41,.15) 35%,
    rgba(7,24,41,.65) 72%, rgba(7,24,41,.9) 100%);
}
.grp-hero-inner { position: relative; z-index: 2; padding-top: 5.5rem; padding-bottom: 0; width: 100%; }
.grp-breadcrumb { margin-bottom: 2.5rem; }
.grp-breadcrumb .breadcrumb-item,
.grp-breadcrumb .breadcrumb-item a,
.grp-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.75); font-size: .8rem; }
.grp-breadcrumb .breadcrumb-item::before { color: rgba(255,255,255,.4); }

.grp-hero-content { max-width: 700px; padding-bottom: 2.5rem; }
.grp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-ui); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 1.25rem;
}
.grp-hero-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
  animation: grp-pulse 2.2s infinite;
}
@keyframes grp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.75); }
}
.grp-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  color: #fff; line-height: 1.12; margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.grp-hero-accent { color: var(--gold); }
.grp-hero-sub {
  font-family: var(--font-ui); font-size: 1.05rem;
  color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.grp-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.grp-hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18); border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 1.5rem 0; margin-top: 2.5rem; width: fit-content; max-width: 100%;
}
.grp-stat { display: flex; flex-direction: column; align-items: center; padding: 0 2rem; gap: .2rem; }
.grp-stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.grp-stat-plus { color: var(--gold); font-size: 1.5rem; }
.grp-stat-lbl { font-family: var(--font-ui); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.grp-stat-div { width: 1px; height: 38px; background: rgba(255,255,255,.22); flex-shrink: 0; }

/* ── Intro ── */
.grp-intro-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;
}
.grp-intro-lead { font-family: var(--font-ui); font-size: 1.05rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 1rem; }
.grp-intro-body { font-family: var(--font-ui); font-size: .93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.grp-intro-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.grp-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: .78rem; font-weight: 600;
  color: var(--teal); background: rgba(26,107,90,.08);
  border: 1px solid rgba(26,107,90,.2);
  padding: .35rem .85rem; border-radius: 2rem;
}
/* Contact card sidebar */
.grp-contact-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(7,24,41,.1);
  padding: 2rem; text-align: center; margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.grp-contact-avatar { position: relative; width: 72px; height: 72px; margin: 0 auto 1rem; }
.grp-contact-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.grp-contact-online {
  position: absolute; bottom: 3px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #22c55e; border: 2px solid #fff;
}
.grp-contact-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); font-weight: 700; margin-bottom: .15rem; }
.grp-contact-role { font-family: var(--font-ui); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .85rem; }
.grp-contact-msg { font-family: var(--font-ui); font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.grp-trust-strip { background: var(--cream); border-radius: var(--radius-md); padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: .65rem; }
.grp-trust-item { display: flex; align-items: center; gap: .65rem; font-family: var(--font-ui); font-size: .8rem; color: var(--text-dark); }
.text-gold { color: var(--gold) !important; }
.text-teal { color: var(--teal) !important; }
.text-navy { color: var(--navy) !important; }

/* ── Why group ── */
.grp-why { padding: 5rem 0; background: var(--cream); }
.grp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grp-why-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 2rem 1.75rem; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border);
}
.grp-why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.grp-why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.1rem;
}
.grp-why-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.grp-why-text { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── How it works ── */
.grp-how-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
}
.grp-step { text-align: center; padding: 0 1rem; }
.grp-step-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: rgba(7,24,41,.08); line-height: 1; margin-bottom: .5rem;
}
.grp-step-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem; box-shadow: 0 4px 16px rgba(7,24,41,.2);
}
.grp-step-title { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: .6rem; }
.grp-step-text { font-family: var(--font-ui); font-size: .82rem; color: var(--text-muted); line-height: 1.65; }
.grp-step-arrow { color: var(--gold); font-size: 1.5rem; padding-top: 3.5rem; opacity: .5; }

/* ── Departures list ── */
.grp-departures { padding: 5rem 0; background: #fff; }
.grp-dep-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.grp-dep-sub { font-family: var(--font-ui); font-size: .9rem; color: var(--text-muted); }
.grp-dep-notice { font-family: var(--font-ui); font-size: .85rem; color: var(--text-muted); background: var(--cream); border-radius: var(--radius-sm); padding: .7rem 1.1rem; white-space: nowrap; }
.grp-dep-notice a { color: var(--teal); }

.grp-dep-list { display: flex; flex-direction: column; gap: 1.5rem; }
.grp-dep-card {
  display: grid; grid-template-columns: 300px 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(7,24,41,.1); border: 1px solid var(--border);
  background: #fff; transition: box-shadow var(--transition), transform var(--transition);
}
.grp-dep-card:hover { box-shadow: 0 8px 40px rgba(7,24,41,.16); transform: translateY(-3px); }
.grp-dep-img-wrap { position: relative; overflow: hidden; }
.grp-dep-img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; display: block; transition: transform 5s ease; }
.grp-dep-card:hover .grp-dep-img { transform: scale(1.05); }
.grp-dep-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,24,41,.55) 0%, transparent 55%);
}
.grp-dep-region {
  position: absolute; bottom: .9rem; left: .9rem;
  font-family: var(--font-ui); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; background: rgba(7,24,41,.6);
  backdrop-filter: blur(4px); padding: .22rem .65rem; border-radius: 2rem;
}
.grp-dep-body { padding: 1.6rem 1.75rem; display: flex; flex-direction: column; gap: .85rem; }
.grp-dep-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.grp-dep-difficulty {
  font-family: var(--font-ui); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .18rem .6rem; border-radius: 2rem; display: inline-block; margin-bottom: .4rem;
}
.grp-diff-easy { background: rgba(34,197,94,.12); color: #16a34a; }
.grp-diff-moderate { background: rgba(234,179,8,.12); color: #ca8a04; }
.grp-diff-challenging { background: rgba(239,68,68,.12); color: #dc2626; }
.grp-dep-title { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); line-height: 1.2; margin: 0; }
.grp-dep-price-wrap { text-align: right; flex-shrink: 0; }
.grp-dep-from { font-family: var(--font-ui); font-size: .7rem; color: var(--text-muted); text-transform: uppercase; }
.grp-dep-price { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1; }
.grp-dep-pp { font-family: var(--font-ui); font-size: .7rem; color: var(--text-muted); }
.grp-dep-meta { display: flex; flex-wrap: wrap; gap: .75rem; }
.grp-dep-meta-item { font-family: var(--font-ui); font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; }
.grp-dep-meta-item i { color: var(--teal); font-size: .75rem; }
.grp-dep-highlights { display: flex; flex-wrap: wrap; gap: .45rem; }
.grp-dep-hl {
  font-family: var(--font-ui); font-size: .75rem;
  color: var(--navy); background: var(--cream);
  border: 1px solid var(--border); padding: .2rem .7rem; border-radius: 2rem;
}
.grp-dep-hl i { color: var(--teal); }
.grp-dep-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .75rem; border-top: 1px solid var(--border); margin-top: auto; }
.grp-dep-spots { display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.grp-spots-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.grp-spots-fill { height: 100%; border-radius: 3px; }
.grp-spots-fill.danger  { background: #ef4444; }
.grp-spots-fill.warning { background: #f59e0b; }
.grp-spots-fill.success { background: #22c55e; }
.grp-spots-text { font-family: var(--font-ui); font-size: .78rem; font-weight: 600; }
.grp-dep-btn { white-space: nowrap; }
.grp-dep-urgency {
  position: absolute; top: .85rem; right: .85rem;
  font-family: var(--font-ui); font-size: .68rem; font-weight: 700;
  padding: .22rem .7rem; border-radius: 2rem;
  display: inline-flex; align-items: center;
}
.urgency-hot  { background: #ef4444; color: #fff; }
.urgency-warm { background: #f59e0b; color: #fff; }

/* ── Who joins ── */
.grp-who { background: var(--cream); }
.grp-who-inner { display: grid; grid-template-columns: 1fr 460px; gap: 4rem; align-items: center; }
.grp-who-lead { font-family: var(--font-ui); font-size: 1rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 1.25rem; }
.grp-who-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.grp-who-list li { font-family: var(--font-ui); font-size: .9rem; color: var(--text-dark); display: flex; align-items: center; }
.grp-who-flags { display: flex; align-items: center; gap: .5rem; font-size: 1.6rem; flex-wrap: wrap; }
.grp-who-flags span { cursor: default; }
.grp-who-flags span:last-child { font-family: var(--font-ui); font-size: .8rem; font-weight: 700; color: var(--teal); background: rgba(26,107,90,.1); padding: .2rem .6rem; border-radius: 2rem; }
.grp-who-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.grp-who-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.grp-who-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: var(--radius-md); padding: .85rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.grp-who-badge .fa-star { color: var(--gold); font-size: 1.5rem; }
.grp-who-badge-num { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); font-weight: 700; line-height: 1; }
.grp-who-badge-lbl { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); }

/* ── Reviews ── */
.grp-reviews { padding: 5rem 0; background: #fff; }
.grp-review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.grp-review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.grp-review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.grp-review-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.grp-review-ta { font-family: var(--font-ui); font-size: .72rem; color: #00aa6c; font-weight: 700; display: flex; align-items: center; gap: .3rem; }
.grp-review-text { font-family: var(--font-ui); font-size: .88rem; color: var(--text-dark); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
.grp-review-footer { display: flex; align-items: center; gap: .85rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.grp-review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
}
.grp-review-name { font-family: var(--font-ui); font-size: .88rem; font-weight: 700; color: var(--navy); }
.grp-review-flag { font-size: 1rem; }
.grp-review-meta { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); }

/* ── FAQ ── */
.grp-faq { background: var(--cream); }
.grp-faq-inner { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.grp-faq-sub { font-family: var(--font-ui); font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.grp-faq-contact { background: #fff; border-radius: var(--radius-md); padding: 1.25rem; border: 1px solid var(--border); }
.grp-faq-contact p { font-family: var(--font-ui); font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.grp-accordion-item { background: #fff; border: 1px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: .6rem; overflow: hidden; }
.grp-accordion-btn {
  font-family: var(--font-ui); font-size: .9rem; font-weight: 600;
  color: var(--navy); background: #fff; padding: 1.1rem 1.25rem;
  display: flex; align-items: center; gap: .85rem;
  box-shadow: none !important;
}
.grp-accordion-btn:not(.collapsed) { color: var(--teal); background: rgba(26,107,90,.04); }
.grp-accordion-btn::after { margin-left: auto; flex-shrink: 0; }
.grp-faq-q-num {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  color: var(--gold); background: rgba(224,120,50,.1);
  padding: .2rem .5rem; border-radius: .25rem; flex-shrink: 0;
}
.grp-accordion-body { font-family: var(--font-ui); font-size: .875rem; color: var(--text-muted); line-height: 1.75; padding: .25rem 1.25rem 1.25rem 1.25rem; }

/* ── Final CTA ── */
.grp-final-cta {
  position: relative; min-height: 420px;
  display: flex; align-items: center; overflow: hidden;
  padding: 5rem 0;
}
.grp-final-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.grp-final-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,24,41,.88) 0%, rgba(7,24,41,.7) 100%);
}
.grp-final-cta-inner { position: relative; z-index: 2; text-align: center; }
.grp-final-cta-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.grp-final-cta-sub { font-family: var(--font-ui); font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.grp-cta-options { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.grp-cta-option {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md);
  padding: 1.75rem 2.25rem; text-decoration: none; color: #fff;
  min-width: 160px; transition: all var(--transition);
}
.grp-cta-option:hover { background: rgba(255,255,255,.2); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.grp-cta-option-icon { font-size: 1.85rem; color: var(--gold); }
.grp-cta-option-label { font-family: var(--font-ui); font-size: .95rem; font-weight: 700; }
.grp-cta-option-sub { font-family: var(--font-ui); font-size: .75rem; color: rgba(255,255,255,.65); }

/* ═══════════════════════════
   GROUPS PAGE — RESPONSIVE
═══════════════════════════ */
@media (max-width: 1199.98px) {
  .grp-intro-grid { grid-template-columns: 1fr 340px; gap: 3rem; }
  .grp-who-inner  { grid-template-columns: 1fr 380px; gap: 3rem; }
  .grp-dep-card   { grid-template-columns: 260px 1fr; }
}
@media (max-width: 991.98px) {
  .grp-hero { min-height: 540px; }
  .grp-hero-stats { width: 100%; border-radius: 0; }
  .grp-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grp-intro-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .grp-contact-card { margin-bottom: 0; }
  .grp-who-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .grp-who-img    { height: 320px; }
  .grp-faq-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .grp-why-grid   { grid-template-columns: repeat(2, 1fr); }
  .grp-dep-card   { grid-template-columns: 220px 1fr; }
  .grp-how-steps  { grid-template-columns: 1fr; gap: 1.5rem; }
  .grp-step-arrow { display: none; }
  .grp-how-steps  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 767.98px) {
  .grp-hero { min-height: 400px; }
  .grp-hero-inner { padding-top: 3.5rem; }
  .grp-hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); margin-bottom: .9rem; }
  .grp-hero-sub { font-size: .92rem; display: none; }
  .grp-hero-actions { gap: .65rem; }
  .grp-hero-actions .btn { font-size: .82rem; padding: .45rem 1rem; }
  .grp-hero-content { padding-bottom: 1.5rem; }
  .grp-hero-stats { padding: 1rem 0; }
  .grp-stat { padding: 0 1rem; }
  .grp-stat-num { font-size: 1.4rem; }
  .grp-stat-lbl { font-size: .58rem; }
  .grp-stat-div { height: 28px; }
  .grp-why-grid { grid-template-columns: 1fr; }
  .grp-how-steps { grid-template-columns: 1fr; }
  .grp-dep-card { grid-template-columns: 1fr; }
  .grp-dep-img { min-height: 220px; height: 220px; }
  .grp-dep-body { padding: 1.25rem; }
  .grp-intro-aside { grid-template-columns: 1fr; }
  .grp-dep-header { flex-direction: column; align-items: flex-start; }
  .grp-dep-notice { white-space: normal; }
  .grp-faq-inner  { grid-template-columns: 1fr; }
  .grp-cta-options { gap: 1rem; }
  .grp-cta-option { min-width: 130px; padding: 1.35rem 1.5rem; }
}
@media (max-width: 575.98px) {
  .grp-hero { min-height: 350px; }
  .grp-hero-inner { padding-top: 3rem; }
  .grp-hero-eyebrow { display: none; }
  .grp-hero-title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .grp-hero-stats { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .grp-hero-stats::-webkit-scrollbar { display: none; }
  .grp-stat-num { font-size: 1.2rem; }
  .grp-dep-top { flex-direction: column; gap: .5rem; }
  .grp-dep-price-wrap { text-align: left; }
  .grp-dep-footer { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .grp-dep-btn { width: 100%; text-align: center; }
  .grp-cta-options { flex-direction: column; align-items: center; }
  .grp-cta-option { width: 100%; max-width: 280px; flex-direction: row; justify-content: center; padding: 1rem 1.5rem; }
}

/* =============================================================
   DAY TRIPS PAGE â€” /day-trips/
   ============================================================= */

/* â”€â”€ Hero â”€â”€ */
.dt-hero { position: relative; min-height: 580px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.dt-hero-videos { position: absolute; inset: 0; z-index: 0; }
.dt-hvid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; z-index: 0; }
.dt-hvid--active { opacity: 1; z-index: 1; }
.dt-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(7,24,41,.72) 0%, rgba(26,60,60,.85) 100%); }
.dt-hero-inner { position: relative; z-index: 2; padding-top: 7rem; padding-bottom: 0; width: 100%; }
.dt-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: .8rem; }
.dt-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.5); font-size: .8rem; }
.dt-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.dt-hero-content { max-width: 720px; padding: 1.5rem 0 1.5rem; }

/* ── Video nav: dots + caption + progress ── */
.dt-hero-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.dt-hdots {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.dt-hdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.dt-hdot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.dt-hdot:hover:not(.active) {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.25);
}
.dt-hero-caption {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.dt-hero-progress {
  flex: 1;
  min-width: 80px;
  max-width: 200px;
  height: 2px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
}
.dt-hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
}
.dt-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-ui); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 1rem;
}
.dt-hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: dtDotPulse 2.2s ease-in-out infinite; }
@keyframes dtDotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.45); opacity: .65; } }
.dt-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: .9rem; }
.dt-hero-accent { color: var(--gold); }
.dt-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 1.75rem; max-width: 580px; }
.dt-hero-actions { display: flex; gap: .875rem; flex-wrap: wrap; }
.dt-hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 1.1rem 2rem; margin: 0 calc(var(--bs-gutter-x) * -.5);
}
.dt-stat { text-align: center; flex: 1; padding: .25rem .5rem; }
.dt-stat-num { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.dt-stat-plus { font-size: 1.1rem; color: var(--gold); }
.dt-stat-lbl { display: block; font-family: var(--font-ui); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .25rem; }
.dt-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* â”€â”€ Trust Strip â”€â”€ */
.dt-trust-strip { background: var(--navy); padding: .85rem 0; }
.dt-trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.dt-trust-item { font-family: var(--font-ui); font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.82); padding: .35rem 1.25rem; white-space: nowrap; }
.dt-trust-item i { color: var(--gold); }
.dt-trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,.18); flex-shrink: 0; }

/* â”€â”€ Main section â”€â”€ */
.dt-main { background: var(--cream); }

/* â”€â”€ Filter Bar â”€â”€ */
.dt-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1rem 0 1.75rem; }
.dt-filter-left { display: flex; gap: .5rem; flex-wrap: wrap; }
.dt-filter-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-ui); font-size: .82rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--border); background: #fff; color: var(--text-body);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.dt-filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(224,120,50,.06); }
.dt-filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
.dt-filter-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; border-radius: 50px; background: rgba(0,0,0,.12); font-size: .7rem; font-weight: 700; padding: 0 4px; line-height: 1; }
.dt-filter-btn.active .dt-filter-count { background: rgba(255,255,255,.25); }
.dt-showing { font-family: var(--font-ui); font-size: .82rem; color: var(--text-muted); }
.dt-showing strong { color: var(--navy); }

/* â”€â”€ Cards Grid â”€â”€ */
.dt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; }

/* â”€â”€ Trip Card â”€â”€ */
.dt-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.dt-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dt-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-md); }
.dt-card-img-wrap { position: relative; overflow: hidden; height: 240px; flex-shrink: 0; }
.dt-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.dt-card:hover .dt-card-img { transform: scale(1.06); }
.dt-card-img-placeholder { width: 100%; height: 100%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--border); }
.dt-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%); pointer-events: none; }
.dt-badge-featured { position: absolute; top: .75rem; left: .75rem; background: var(--gold); color: #fff; font-family: var(--font-ui); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .28rem .65rem; border-radius: 50px; z-index: 3; display: inline-flex; align-items: center; gap: .25rem; }
.dt-badge-cat { position: absolute; top: .75rem; right: .75rem; font-family: var(--font-ui); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .28rem .65rem; border-radius: 50px; z-index: 3; color: #fff; }
.dt-badge-featured ~ .dt-badge-cat { top: 2.75rem; }
.dt-cat-nature    { background: rgba(26,107,90,.85); }
.dt-cat-adventure { background: rgba(7,24,41,.85); }
.dt-cat-culture   { background: rgba(130,80,20,.85); }
.dt-cat-wildlife  { background: rgba(60,130,40,.85); }
.dt-price-badge { position: absolute; bottom: 2.75rem; right: .875rem; background: var(--navy); color: #fff; border-radius: var(--radius-md); padding: .35rem .7rem; text-align: center; z-index: 3; line-height: 1; }
.dt-price-from { display: block; font-family: var(--font-ui); font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.65); margin-bottom: 2px; }
.dt-price-num { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.dt-price-pp { display: block; font-family: var(--font-ui); font-size: .58rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.dt-card-meta-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.52); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: .4rem .875rem; display: flex; align-items: center; gap: .5rem; z-index: 3; }
.dt-meta-item { font-family: var(--font-ui); font-size: .72rem; color: rgba(255,255,255,.88); display: flex; align-items: center; gap: .3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dt-meta-item i { color: var(--gold); font-size: .65rem; flex-shrink: 0; }
.dt-meta-sep { color: rgba(255,255,255,.35); font-size: .65rem; flex-shrink: 0; }
.dt-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.35rem 1.35rem; }
.dt-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.dt-diff { font-family: var(--font-ui); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: .22rem .65rem; border-radius: 50px; }
.dt-diff-easy        { background: rgba(26,140,60,.12); color: #1a8c3c; }
.dt-diff-moderate    { background: rgba(200,140,0,.12); color: #8a6000; }
.dt-diff-challenging { background: rgba(200,40,40,.12); color: #c82828; }
.dt-group-size { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); }
.dt-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: .55rem; }
.dt-card-desc { font-size: .83rem; line-height: 1.65; color: var(--text-muted); margin-bottom: .75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-align: left; }
.dt-card-highlights { list-style: none; padding: 0; margin: 0 0 .75rem; display: flex; flex-direction: column; gap: .3rem; }
.dt-card-highlights li { font-family: var(--font-ui); font-size: .75rem; color: var(--text-body); display: flex; align-items: flex-start; gap: .4rem; line-height: 1.4; }
.dt-card-highlights li i { color: #1B6B5A; font-size: .65rem; margin-top: .2rem; flex-shrink: 0; }
.dt-card-departure { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); margin-bottom: 1rem; padding: .45rem .75rem; background: var(--cream); border-radius: var(--radius-sm); border-left: 3px solid var(--gold); }
.dt-card-departure i { color: var(--gold); }
.dt-card-footer { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.dt-enquire-link { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); transition: color var(--transition); white-space: nowrap; }
.dt-enquire-link:hover { color: var(--gold); }
.dt-no-results { text-align: center; padding: 4rem 1rem; color: var(--text-muted); font-size: .95rem; }

/* â”€â”€ Custom CTA â”€â”€ */
.dt-custom-cta { background: var(--navy); padding: 3.5rem 0; }
.dt-custom-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.dt-custom-inner .section-label { color: rgba(255,255,255,.55); }
.dt-custom-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; color: #fff; margin-bottom: .6rem; }
.dt-custom-desc { color: rgba(255,255,255,.72); font-size: .92rem; max-width: 580px; margin: 0; text-align: left; }
.dt-custom-actions { display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }

/* â”€â”€ Why Section â”€â”€ */
.dt-why { background: #fff; }
.dt-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dt-why-card { padding: 1.75rem 1.5rem; border-radius: var(--radius-lg); border: 1.5px solid var(--border); background: var(--off-white); transition: box-shadow var(--transition), transform var(--transition); }
.dt-why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dt-why-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1rem; }
.dt-why-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.dt-why-text { font-size: .84rem; line-height: 1.7; color: var(--text-muted); margin: 0; text-align: left; }

/* â”€â”€ FAQ â”€â”€ */
.dt-faq { background: var(--cream); }
.dt-faq-inner { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.dt-faq-sub { font-size: .9rem; color: var(--text-muted); margin: .75rem 0 1.5rem; text-align: left; }
.dt-faq-contact p { font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; }
.dt-faq-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--font-ui); font-size: .68rem; font-weight: 700; flex-shrink: 0; margin-right: .75rem; }
.dt-accordion-item { border: none; border-bottom: 1px solid var(--border); background: transparent; }
.dt-accordion-item:first-child { border-top: 1px solid var(--border); }
.dt-accordion-btn { background: transparent; color: var(--navy); font-family: var(--font-ui); font-size: .9rem; font-weight: 600; padding: 1rem 0; box-shadow: none; display: flex; align-items: center; }
.dt-accordion-btn:not(.collapsed) { color: var(--gold); background: transparent; box-shadow: none; }
.dt-accordion-btn::after { margin-left: auto; flex-shrink: 0; }
.dt-accordion-body { padding: 0 0 1rem 2.5rem; font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

/* â”€â”€ Final CTA â”€â”€ */
.dt-final-cta { position: relative; padding: 6rem 0; overflow: hidden; text-align: center; }
.dt-final-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.dt-final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,24,41,.82) 0%, rgba(26,60,60,.88) 100%); }
.dt-final-cta-inner { position: relative; z-index: 2; }
.dt-final-title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: #fff; margin-bottom: .75rem; }
.dt-final-sub { color: rgba(255,255,255,.75); font-size: .98rem; max-width: 540px; margin: 0 auto 2.5rem; }
.dt-cta-options { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.dt-cta-option { display: flex; flex-direction: column; align-items: center; gap: .5rem; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 1.75rem 2.25rem; color: #fff; text-decoration: none; min-width: 160px; transition: background var(--transition), transform var(--transition); }
.dt-cta-option:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); color: #fff; }
.dt-cta-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.dt-cta-label { font-family: var(--font-ui); font-size: .9rem; font-weight: 700; }
.dt-cta-sub { font-family: var(--font-ui); font-size: .72rem; color: rgba(255,255,255,.6); }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1199.98px) {
  .dt-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
  .dt-hero { min-height: 460px; }
  .dt-hero-inner { padding-top: 5rem; }
  .dt-hero-content { padding-bottom: 1.75rem; }
  .dt-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .dt-faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .dt-custom-inner { grid-template-columns: 1fr; }
  .dt-custom-actions { flex-direction: row; flex-wrap: wrap; }
  .dt-trust-sep { display: none; }
  .dt-trust-inner { gap: .5rem .25rem; justify-content: flex-start; }
}
@media (max-width: 767.98px) {
  .dt-hero { min-height: 370px; }
  .dt-hero-inner { padding-top: 4rem; }
  .dt-hero-content { padding-top: 1rem; padding-bottom: 1.25rem; }
  .dt-hero-sub { display: none; }
  .dt-hero-actions { gap: .5rem; }
  .dt-hero-actions .btn-outline-light { display: none; }
  .dt-hero-stats { padding: .75rem 1rem; }
  .dt-stat-num { font-size: 1.3rem; }
  .dt-stat-lbl { font-size: .6rem; }
  .dt-grid { grid-template-columns: 1fr; }
  .dt-filter-bar { flex-direction: column; align-items: flex-start; }
  .dt-card-img-wrap { height: 210px; }
  .dt-why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 575.98px) {
  .dt-hero { min-height: 320px; }
  .dt-hero-inner { padding-top: 3.25rem; }
  .dt-hero-content { padding-top: .75rem; padding-bottom: 1rem; }
  .dt-hero-eyebrow { display: none; }
  .dt-hero-title { font-size: clamp(1.5rem, 6.5vw, 1.9rem); }
  .dt-hero-actions { display: none; }
  .dt-hero-caption { display: none; }
  .dt-hero-progress { display: none; }
  .dt-hero-stats { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding: .6rem .75rem; }
  .dt-hero-stats::-webkit-scrollbar { display: none; }
  .dt-stat-num { font-size: 1.15rem; }
  .dt-stat-lbl { font-size: .58rem; }
  .dt-stat-div { height: 26px; }
  .dt-filter-left { gap: .4rem; }
  .dt-filter-btn { font-size: .75rem; padding: .4rem .75rem; }
  .dt-why-grid { grid-template-columns: 1fr; }
  .dt-cta-options { flex-direction: column; align-items: center; }
  .dt-cta-option { width: 100%; max-width: 280px; flex-direction: row; justify-content: center; padding: 1rem 1.5rem; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KILIMANJARO SUCCESS RATE CALCULATOR  (.krc-*)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Page header â”€â”€ */
.krc-header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.krc-header-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1609198273892-4ba25e90e7fb?w=1920&auto=format&fit=crop&q=60')
    center / cover no-repeat;
  opacity: .28;
}
.krc-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,60,60,.92) 40%, rgba(27,60,60,.72));
}
.krc-header-inner {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 3rem;
  text-align: center;
}
.krc-breadcrumb { margin-bottom: 1.5rem; }
.krc-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); font-size: .8rem; }
.krc-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: .8rem; }
.krc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.krc-header-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(224,120,50,.15);
  border: 1.5px solid rgba(224,120,50,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--gold);
}
.krc-header-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.krc-header-accent { color: var(--gold); }
.krc-header-sub {
  font-family: var(--font-ui);
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.krc-header-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.krc-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
  padding: .35rem .9rem;
  border-radius: 100px;
}

/* â”€â”€ Section wrapper â”€â”€ */
.krc-section {
  background: #f1f5f9;
  padding: 3.5rem 0 5rem;
}

/* â”€â”€ Two-column layout â”€â”€ */
.krc-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
}
.krc-form-col { display: flex; flex-direction: column; gap: 1.5rem; }
.krc-result-col { /* sticky handled by inner */ }
.krc-result-sticky {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* â”€â”€ Card base â”€â”€ */
.krc-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 1.75rem;
}

/* â”€â”€ Step head â”€â”€ */
.krc-step-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.krc-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
}
.krc-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.krc-step-sub {
  font-family: var(--font-ui);
  font-size: .82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* â”€â”€ Route grid â”€â”€ */
.krc-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.krc-route-card {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.krc-route-card:hover { border-color: var(--navy); box-shadow: 0 2px 10px rgba(27,60,60,.12); }
.krc-route-card:has(.krc-r-input:checked),
.krc-route-card--active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,120,50,.2); }
.krc-r-input { position: absolute; opacity: 0; pointer-events: none; }
.krc-route-inner { padding: .9rem .85rem .75rem; }
.krc-route-name {
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.krc-route-days {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  margin-left: .25rem;
}
.krc-route-note {
  font-family: var(--font-ui);
  font-size: .71rem;
  color: #94a3b8;
  margin-bottom: .65rem;
  line-height: 1.4;
}
.krc-route-rate-bar {
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: .4rem;
}
.krc-rrb-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 3px;
  transition: width .5s ease;
}
.krc-route-rate-lbl {
  font-family: var(--font-ui);
  font-size: .71rem;
  color: #64748b;
}
.krc-route-rate-lbl strong { color: var(--navy); }
.krc-route-card--recommended { border-color: #e2e8f0; }
.krc-recommended-tag {
  display: inline-block;
  margin-top: .55rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 100px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.krc-tag-green { background: #16a34a; }

/* â”€â”€ Profile grid â”€â”€ */
.krc-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
.krc-field { display: flex; flex-direction: column; gap: .5rem; }
.krc-field--unit-row { grid-column: 1 / -1; }
.krc-label {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 600;
  color: #374151;
}
.krc-label-unit { font-weight: 400; color: #9ca3af; }
.krc-field-hint {
  font-family: var(--font-ui);
  font-size: .74rem;
  min-height: 1.1em;
  transition: color .3s;
}

/* â”€â”€ Toggle group â”€â”€ */
.krc-toggle-group {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.krc-toggle {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .45rem .9rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.krc-toggle:hover { border-color: var(--navy); color: var(--navy); }
.krc-toggle.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.krc-toggle-sm .krc-toggle { font-size: .74rem; padding: .35rem .75rem; }

/* â”€â”€ Stepper (number-wrap) â”€â”€ */
.krc-number-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
.krc-num-btn {
  width: 36px; height: 40px;
  background: #f8fafc;
  border: none;
  font-size: 1.15rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
  flex-shrink: 0;
}
.krc-num-btn:hover { background: #e2e8f0; }
.krc-number-input {
  flex: 1;
  text-align: center;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0 .25rem;
  min-width: 0;
  -moz-appearance: textfield;
}
.krc-number-input::-webkit-outer-spin-button,
.krc-number-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* â”€â”€ Dual input (ft + in) â”€â”€ */
.krc-dual-input { display: flex; align-items: center; gap: .4rem; }
.krc-dual-sep {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: #9ca3af;
  font-weight: 500;
}

/* â”€â”€ BMI readout â”€â”€ */
.krc-bmi-readout {
  grid-column: 1 / -1;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.krc-bmi-label {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.krc-bmi-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.krc-bmi-category {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 600;
  transition: color .3s;
}
.krc-bmi-bar-wrap { margin-top: .5rem; }
.krc-bmi-bar {
  position: relative;
  height: 8px;
  background: linear-gradient(90deg, #60a5fa 0 18%, #22c55e 18% 50%, #f59e0b 50% 70%, #ef4444 70% 100%);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.krc-bmi-zones {
  display: flex;
  position: absolute;
  top: 14px;
  left: 0; right: 0;
  font-family: var(--font-ui);
  font-size: .6rem;
  color: #9ca3af;
}
.krc-bmi-zones span { text-align: center; }
.krc-bmi-marker {
  position: absolute;
  top: -4px;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: #fff;
  border: 2.5px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: left .4s ease;
}

/* â”€â”€ Fitness grid â”€â”€ */
.krc-fitness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.krc-fit-card {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
  text-align: center;
}
.krc-fit-card:hover { border-color: var(--navy); }
.krc-fit-card:has(.krc-r-input:checked),
.krc-fit-checked { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,120,50,.15); }
.krc-fit-inner { padding: 1rem .75rem; }
.krc-fit-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto .6rem;
}
.krc-fit-poor     { background: #fee2e2; color: #ef4444; }
.krc-fit-fair     { background: #fef3c7; color: #f59e0b; }
.krc-fit-good     { background: #dcfce7; color: #22c55e; }
.krc-fit-excellent { background: #d1fae5; color: #16a34a; }
.krc-fit-level {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.krc-fit-desc {
  font-family: var(--font-ui);
  font-size: .68rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: .4rem;
}
.krc-fit-run {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
}

/* â”€â”€ Experience / training â”€â”€ */
.krc-exp-row { display: flex; flex-direction: column; gap: 1.5rem; }
.krc-exp-question { display: flex; flex-direction: column; gap: .75rem; }
.krc-exp-q-text {
  font-family: var(--font-ui);
  font-size: .88rem;
  color: #374151;
  line-height: 1.5;
}
.krc-q-icon { color: var(--gold); }
.krc-training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.krc-train-card {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  text-align: center;
  overflow: hidden;
}
.krc-train-card:hover { border-color: var(--navy); }
.krc-train-card:has(.krc-r-input:checked),
.krc-train-checked { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,120,50,.15); }
.krc-train-inner { padding: .8rem .6rem; }
.krc-train-label {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.krc-train-note {
  font-family: var(--font-ui);
  font-size: .7rem;
  color: #94a3b8;
}

/* â”€â”€ Mobile calculate button â”€â”€ */
.krc-calc-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(224,120,50,.35);
}
.krc-calc-btn:hover { background: #c96a28; transform: translateY(-1px); }

/* â”€â”€ Result: Gauge â”€â”€ */
.krc-result-card { padding: 1.5rem; }
.krc-gauge-wrap { margin-bottom: .5rem; }
.krc-gauge-svg { width: 100%; max-width: 280px; display: block; margin: 0 auto; }

/* â”€â”€ Confidence badge â”€â”€ */
.krc-confidence {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
.krc-conf-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #d1d5db;
  transition: background .4s;
}
.krc-conf-label {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  transition: color .4s;
  color: #374151;
}
.krc-conf-desc {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* â”€â”€ Factor bars â”€â”€ */
.krc-factors { border-top: 1px solid #f1f5f9; padding-top: 1rem; }
.krc-factors-title {
  font-family: var(--font-ui);
  font-size: .73rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .9rem;
}
.krc-factor-list { display: flex; flex-direction: column; gap: .7rem; }
.krc-factor {
  display: grid;
  grid-template-columns: 120px 1fr 44px;
  align-items: center;
  gap: .5rem;
}
.krc-factor-lbl {
  font-family: var(--font-ui);
  font-size: .75rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.krc-factor-lbl i { color: var(--navy); width: 13px; }
.krc-factor-bar-wrap {
  height: 7px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}
.krc-factor-bar {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width .7s ease, background .4s;
}
.krc-factor-val {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.krc-fv-mod { color: #16a34a; }

/* â”€â”€ Tips card â”€â”€ */
.krc-tips-card { padding: 1.4rem 1.5rem; }
.krc-tips-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.krc-tips-icon { font-size: 1.1rem; color: var(--gold); }
.krc-tips-title {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
}
.krc-tips-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.krc-tip {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: #374151;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.krc-tip-arr { color: var(--gold); flex-shrink: 0; margin-top: .2rem; }

/* â”€â”€ CTA card â”€â”€ */
.krc-cta-card {
  background: var(--navy);
  border-color: transparent;
  padding: 1.5rem;
}
.krc-cta-head {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.krc-cta-sub {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.krc-cta-btns { display: flex; flex-direction: column; gap: .6rem; margin-bottom: .85rem; }
.btn-outline-navy {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline-navy:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.krc-cta-note {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}
.krc-live-note {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: #64748b;
  margin: 0;
}

/* â”€â”€ Utility â”€â”€ */
.krc-hidden { display: none !important; }
.text-teal { color: var(--navy); }
.text-gold  { color: var(--gold); }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1199.98px) {
  .krc-layout { grid-template-columns: 1fr 380px; }
  .krc-route-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .krc-layout { grid-template-columns: 1fr; }
  .krc-result-sticky { position: static; }
  .krc-result-col { order: -1; }
  .krc-header { min-height: 260px; }
  .krc-header-inner { padding-top: 5rem; padding-bottom: 2.25rem; }
  .krc-route-grid { grid-template-columns: repeat(3, 1fr); }
  .krc-fitness-grid { grid-template-columns: repeat(2, 1fr); }
  .krc-training-grid { grid-template-columns: repeat(2, 1fr); }
  .krc-factor { grid-template-columns: 100px 1fr 40px; }
}
@media (max-width: 767.98px) {
  .krc-section { padding: 2rem 0 3.5rem; }
  .krc-header-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .krc-header-sub { font-size: .84rem; }
  .krc-route-grid { grid-template-columns: repeat(2, 1fr); }
  .krc-profile-grid { grid-template-columns: 1fr; }
  .krc-field--unit-row { grid-column: auto; }
  .krc-toggle-group { gap: .25rem; }
  .krc-toggle { font-size: .75rem; padding: .4rem .7rem; }
  .krc-fitness-grid { grid-template-columns: repeat(2, 1fr); }
  .krc-training-grid { grid-template-columns: repeat(2, 1fr); }
  .krc-card { padding: 1.25rem; }
  .krc-result-card { padding: 1.25rem; }
  .krc-gauge-svg { max-width: 240px; }
}
@media (max-width: 575.98px) {
  .krc-header { min-height: 220px; }
  .krc-header-inner { padding-top: 4.5rem; padding-bottom: 1.75rem; }
  .krc-header-badges { gap: .4rem; }
  .krc-badge { font-size: .7rem; padding: .28rem .7rem; }
  .krc-route-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .krc-route-inner { padding: .7rem .65rem .6rem; }
  .krc-route-name { font-size: .82rem; }
  .krc-fitness-grid { grid-template-columns: 1fr 1fr; }
  .krc-training-grid { grid-template-columns: 1fr 1fr; }
  .krc-factor { grid-template-columns: 90px 1fr 38px; }
  .krc-step-title { font-size: 1.1rem; }
  .krc-gauge-svg { max-width: 200px; }
  .krc-profile-grid { gap: 1rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV DROPDOWN  (.lht-dropdown / .lht-dd-*)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Wrapper â”€â”€ */
.lht-dropdown { position: relative; }

/* â”€â”€ Caret icon â”€â”€ */
.lht-dd-caret {
  font-size: .65rem;
  margin-left: .3rem;
  transition: transform .25s ease;
  vertical-align: middle;
  opacity: .6;
}
.lht-dropdown:hover .lht-dd-caret,
.lht-dropdown:focus-within .lht-dd-caret { transform: rotate(180deg); opacity: 1; }

/* â”€â”€ Dropdown panel â”€â”€ */
.lht-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  padding: .5rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

/* Arrow pointer */
.lht-dd-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #fff;
  filter: drop-shadow(0 -1px 1px rgba(0,0,0,.08));
}

/* â”€â”€ Show on hover / focus-within â”€â”€ */
@media (min-width: 1200px) {
  .lht-dropdown:hover .lht-dd-menu,
  .lht-dropdown:focus-within .lht-dd-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* â”€â”€ Dropdown items â”€â”€ */
.lht-dd-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .8rem;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.lht-dd-item:hover { background: #f8fafc; color: var(--navy); }

.lht-dd-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(27,60,60,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--navy);
  flex-shrink: 0;
}
.lht-dd-icon--gold { background: rgba(224,120,50,.1); color: var(--gold); }
.lht-dd-icon--teal { background: rgba(0,155,142,.1); color: var(--color-teal, #009B8E); }
.lht-dd-item:hover .lht-dd-icon { background: rgba(27,60,60,.12); }
.lht-dd-item:hover .lht-dd-icon--gold { background: rgba(224,120,50,.18); }
.lht-dd-item:hover .lht-dd-icon--teal { background: rgba(0,155,142,.18); }

.lht-dd-divider {
  height: 1px;
  background: #f1f5f9;
  margin: .35rem .4rem;
}

/* â”€â”€ Mobile accordion sub-links â”€â”€ */
.mobile-acc-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-acc-toggle {
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  padding-right: 1rem;
}
.mobile-acc-toggle:not(.collapsed) .mobile-acc-caret { transform: rotate(180deg); }
.mobile-acc-caret {
  font-size: .65rem;
  opacity: .6;
  transition: transform .25s ease;
}
.mobile-sub-links { padding: 0 0 .5rem 1.25rem; }
.mobile-sub-link {
  display: flex;
  align-items: center;
  padding: .55rem .75rem;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.mobile-sub-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-sub-link i { opacity: .65; }

/* â”€â”€ Kilimanjaro Lead Capture Card (.krc-lead-*) â”€â”€ */
.krc-lead-card { padding: 1.5rem; }

.krc-lead-head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #f1f5f9;
}
.krc-lead-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
.krc-lead-title {
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.krc-lead-sub {
  font-family: var(--font-ui);
  font-size: .75rem;
  color: #64748b;
  line-height: 1.5;
}

.krc-lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .9rem;
}
.krc-lead-field { display: flex; flex-direction: column; gap: .3rem; }
.krc-lead-field--full { grid-column: 1 / -1; }

.krc-lead-label {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  color: #374151;
}
.krc-req { color: #ef4444; }
.krc-opt { font-weight: 400; color: #9ca3af; }

.krc-lead-input {
  width: 100%;
  padding: .55rem .75rem;
  font-family: var(--font-ui);
  font-size: .85rem;
  color: var(--navy);
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.krc-lead-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,60,60,.1);
  background: #fff;
}
.krc-lead-textarea { resize: vertical; min-height: 72px; }

.krc-lead-alert {
  font-family: var(--font-ui);
  font-size: .8rem;
  padding: .55rem .85rem;
  border-radius: 8px;
  margin-bottom: .75rem;
}
.krc-lead-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}
.krc-lead-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

.krc-lead-btn {
  width: 100%;
  padding: .8rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
  margin-bottom: .65rem;
}
.krc-lead-btn:hover:not(:disabled) { background: #132e2e; transform: translateY(-1px); }
.krc-lead-btn:disabled { opacity: .7; cursor: not-allowed; }

.krc-lead-privacy {
  font-family: var(--font-ui);
  font-size: .71rem;
  color: #9ca3af;
  text-align: center;
  margin: 0;
}

/* Success state */
.krc-lead-success {
  text-align: center;
  padding: 1.5rem 1rem;
}
.krc-lead-success-icon {
  font-size: 2.5rem;
  color: #22c55e;
  margin-bottom: .75rem;
}
.krc-lead-success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.krc-lead-success-msg {
  font-family: var(--font-ui);
  font-size: .85rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 575.98px) {
  .krc-lead-fields { grid-template-columns: 1fr; }
  .krc-lead-card { padding: 1.1rem; }
}

/* â”€â”€ Route card enhancements â”€â”€ */
.krc-route-meta {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: .45rem;
}
.krc-acc-badge {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 100px;
  background: rgba(27,60,60,.08);
  color: var(--navy);
  letter-spacing: .02em;
}
.krc-diff-badge {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 100px;
  letter-spacing: .02em;
}
.krc-diff-easy    { background: #dcfce7; color: #16a34a; }
.krc-diff-mod     { background: #fef3c7; color: #92400e; }
.krc-diff-hard    { background: #fee2e2; color: #b91c1c; }

/* Rate bar colour variants */
.krc-rrb-low  { background: linear-gradient(90deg, #ef4444, #f87171); }
.krc-rrb-mid  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.krc-rrb-good { background: linear-gradient(90deg, #E07832, #f59e0b); }
.krc-rrb-high { background: linear-gradient(90deg, #22c55e, #16a34a); }
.krc-rrb-top  { background: linear-gradient(90deg, #16a34a, #059669); }

/* Danger route card */
.krc-route-card--danger {
  border-color: #fecaca;
  background: #fff8f8;
}
.krc-route-card--danger:hover { border-color: #ef4444; }

/* â”€â”€ Climber profile box â”€â”€ */
.krc-profile-box {
  background: linear-gradient(135deg, rgba(27,60,60,.06), rgba(224,120,50,.05));
  border: 1px solid rgba(27,60,60,.1);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: .85rem;
  text-align: center;
}
.krc-profile-lbl {
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}
.krc-profile-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* â”€â”€ Route summary below factor bar â”€â”€ */
.krc-route-summ-row {
  grid-column: 1 / -1;
  margin-top: -.35rem;
  margin-bottom: .3rem;
  padding-left: calc(120px + .5rem);
}
.krc-route-summ {
  font-family: var(--font-ui);
  font-size: .68rem;
  color: #94a3b8;
  font-style: italic;
}

/* â”€â”€ Tip category badge â”€â”€ */
.krc-tip-top { margin-bottom: .4rem; }
.krc-tip-cat {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.krc-tip-text {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Override old krc-tip padding (now handled inline) */
.krc-tips-list .krc-tip { padding: 0; margin-bottom: 0; }

/* â”€â”€ BMI bar: 6-zone gradient â”€â”€ */
.krc-bmi-bar {
  background: linear-gradient(90deg,
    #60a5fa 0 9%,
    #3b82f6 9% 13%,
    #22c55e 13% 36%,
    #16a34a 36% 47%,
    #f59e0b 47% 62%,
    #ef4444 62% 80%,
    #dc2626 80% 100%
  );
}
.krc-bmi-zones span {
  font-size: .55rem;
  text-align: center;
}

/* â”€â”€ Factor bar responsive â”€â”€ */
@media (max-width: 767.98px) {
  .krc-route-summ-row { padding-left: 0; grid-column: 1 / -1; }
}

/* ============================================================
   CONTACT PAGE — HERO SLIDER  (chero-*)
   ============================================================ */
.chero-wrapper { position: relative; width: 100%; overflow: hidden; background: var(--navy); }
.chero-slider { position: relative; width: 100%; height: 540px; overflow: hidden; }
@media (max-width: 991.98px) { .chero-slider { height: 440px; } }
@media (max-width: 575.98px) { .chero-slider { height: 380px; } }
.chero-track { display: flex; height: 100%; transition: transform 0.72s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.chero-slide { flex: 0 0 100%; width: 100%; height: 100%; position: relative; overflow: hidden; }
.chero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.chero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg,rgba(7,24,41,.72) 0%,rgba(7,24,41,.38) 60%,rgba(7,24,41,.18) 100%); z-index: 1; }
.chero-overlay-demo { background: linear-gradient(120deg,rgba(0,0,0,.40) 0%,rgba(0,0,0,.18) 65%,transparent 100%); }
.chero-demo-1 { background: linear-gradient(135deg,#0E2424 0%,#1B3C3C 50%,#0d5c3a 100%); }
.chero-demo-2 { background: linear-gradient(135deg,#0B1A2E 0%,#1B2E4A 48%,#243254 100%); }
.chero-demo-3 { background: linear-gradient(135deg,#083d5e 0%,#0a5b7a 52%,#0d7b7b 100%); }
.chero-demo-4 { background: linear-gradient(135deg,#3a1a08 0%,#7a3a10 48%,#c25f1a 100%); }
.chero-demo-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.chero-demo-blob-a { width: clamp(300px,55vw,700px); height: clamp(300px,55vw,700px); background: radial-gradient(circle,rgba(255,255,255,.07) 0%,transparent 70%); top: -25%; right: -10%; }
.chero-demo-blob-b { width: clamp(150px,28vw,380px); height: clamp(150px,28vw,380px); background: radial-gradient(circle,rgba(224,120,50,.18) 0%,transparent 70%); bottom: -12%; left: 8%; }
.chero-demo-icon { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); font-size: clamp(5rem,15vw,11rem); color: rgba(255,255,255,.055); pointer-events: none; z-index: 1; line-height: 1; }
@media (max-width: 575.98px) { .chero-demo-icon { display: none; } }
.chero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(3rem,7vw,5rem); z-index: 2; }
.chero-badge { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-ui); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--gold-light); background: rgba(224,120,50,.18); border: 1px solid rgba(224,120,50,.38); padding: .3rem .9rem; border-radius: 20px; margin-bottom: .85rem; width: fit-content; }
.chero-title { font-family: var(--font-display); font-size: clamp(1.75rem,4.5vw,3.2rem); color: #fff; font-weight: 700; line-height: 1.15; margin-bottom: .7rem; text-shadow: 0 2px 20px rgba(0,0,0,.45); max-width: 660px; }
.chero-sub { font-family: var(--font-ui); font-size: clamp(.875rem,2vw,1.05rem); color: rgba(255,255,255,.82); max-width: 520px; line-height: 1.65; margin-bottom: 1.5rem; }
.chero-cta-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--gold); color: #fff; font-family: var(--font-ui); font-size: .875rem; font-weight: 700; padding: .65rem 1.5rem; border-radius: var(--radius-sm); text-decoration: none; transition: background var(--transition),transform var(--transition),box-shadow var(--transition); width: fit-content; box-shadow: 0 4px 18px rgba(224,120,50,.35); }
.chero-cta-btn:hover { background: #c5621a; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(224,120,50,.45); }
.chero-breadcrumb { position: absolute; top: 1.4rem; left: 50%; transform: translateX(-50%); width: 100%; z-index: 20; pointer-events: none; }
.chero-breadcrumb a,.chero-breadcrumb .breadcrumb-item { pointer-events: all; }
.chero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.72); text-decoration: none; }
.chero-breadcrumb .breadcrumb-item a:hover { color: var(--gold-light); }
.chero-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.5); }
.chero-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.35); }
.chero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 15; width: 50px; height: 50px; border-radius: 50%; border: 2px solid rgba(255,255,255,.28); background: rgba(0,0,0,.28); color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.chero-prev { left: 1.25rem; }
.chero-next { right: 1.25rem; }
.chero-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
@media (max-width: 575.98px) { .chero-arrow { width: 38px; height: 38px; font-size: .85rem; } .chero-prev { left: .6rem; } .chero-next { right: .6rem; } }
.chero-dots { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: .45rem; z-index: 15; }
.chero-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.38); cursor: pointer; transition: all .3s ease; padding: 0; flex-shrink: 0; }
.chero-dot.active { background: var(--gold); width: 26px; border-radius: 4px; }
.chero-counter { position: absolute; bottom: 1.25rem; right: 1.25rem; font-family: var(--font-ui); font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .06em; z-index: 15; }
.chero-progress { position: absolute; bottom: 0; left: 0; height: 3px; width: 0%; background: var(--gold); z-index: 15; border-radius: 0 2px 0 0; }

/* ============================================================
   CONTACT PAGE — TRUST BADGES (ctrust-*)
   ============================================================ */
.ctrust-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.ctrust-grid { display: flex; align-items: center; justify-content: center; gap: clamp(1rem,3vw,2.5rem); flex-wrap: wrap; }
.ctrust-item { display: flex; align-items: center; gap: .65rem; font-family: var(--font-ui); }
.ctrust-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(224,120,50,.12); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.ctrust-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); display: block; line-height: 1; margin-bottom: .18rem; }
.ctrust-value { font-size: .82rem; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
.ctrust-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE — FORM + SIDEBAR
   ============================================================ */
.cpage-body { padding-top: 3.5rem; padding-bottom: 4rem; }
.cform-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid var(--border); overflow: hidden; position: relative; }
.cform-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--gold) 0%,var(--gold-light) 50%,var(--gold) 100%); }
.cform-header { background: linear-gradient(135deg,var(--navy) 0%,#2B5555 100%); padding: 2rem 2rem 1.75rem; }
.cform-header-badge { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-ui); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); background: rgba(224,120,50,.16); border: 1px solid rgba(224,120,50,.32); padding: .28rem .75rem; border-radius: 16px; margin-bottom: .75rem; }
.cform-title { font-family: var(--font-display); color: #fff; font-size: 1.4rem; margin-bottom: .3rem; }
.cform-sub { color: rgba(255,255,255,.72); font-family: var(--font-ui); font-size: .875rem; margin: 0; }
.cform-body { padding: 2rem; }
@media (max-width: 575.98px) { .cform-header { padding: 1.5rem; } .cform-body { padding: 1.25rem; } }
.cform-section-label { display: flex; align-items: center; gap: .6rem; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .85rem; margin-top: .25rem; }
.cform-section-num { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 800; flex-shrink: 0; line-height: 1; }
.cform-submit { letter-spacing: .03em; }
.cform-privacy { font-size: .75rem; color: var(--text-muted); }
.csidebar-card { background: #fff; border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.csidebar-title { font-family: var(--font-ui); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gold); display: flex; align-items: center; }
.csidebar-online { padding: 1.25rem 1.5rem; }
.csidebar-online-header { display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem; font-family: var(--font-ui); font-size: .78rem; font-weight: 600; color: var(--navy); }
.csidebar-online-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,.22); animation: onlinePulse 2s infinite; }
@keyframes onlinePulse { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.22); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,.08); } }
.csidebar-channels { display: flex; flex-direction: column; gap: .55rem; }
.csidebar-channel-btn { display: flex; align-items: center; gap: .85rem; padding: .75rem 1rem; border-radius: var(--radius-sm); text-decoration: none; transition: all .22s; font-family: var(--font-ui); }
.csidebar-channel-btn > i:first-child { font-size: 1.15rem; width: 20px; text-align: center; flex-shrink: 0; }
.csidebar-channel-label { display: block; font-size: .82rem; font-weight: 700; line-height: 1.1; }
.csidebar-channel-sub { display: block; font-size: .68rem; opacity: .7; line-height: 1.2; margin-top: .1rem; }
.csidebar-channel-btn:hover { transform: translateX(3px); }
.csidebar-wa { background: rgba(37,211,102,.08); color: #128C7E; border: 1px solid rgba(37,211,102,.2); }
.csidebar-wa:hover { background: rgba(37,211,102,.16); color: #075E54; }
.csidebar-email { background: rgba(27,60,60,.06); color: var(--navy); border: 1px solid rgba(27,60,60,.12); }
.csidebar-email:hover { background: rgba(27,60,60,.1); color: var(--navy); }
.csidebar-call { background: rgba(224,120,50,.07); color: #9a4e0d; border: 1px solid rgba(224,120,50,.18); }
.csidebar-call:hover { background: rgba(224,120,50,.14); color: #7a3b08; }
.csidebar-social-sub { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); margin-bottom: .85rem; line-height: 1.55; }
@media (max-width: 991.98px) { .cpage-body { padding-top: 2.5rem; padding-bottom: 3rem; } }
@media (max-width: 575.98px) { .chero-title { max-width: 100%; } .chero-sub { display: none; } .chero-badge { font-size: .6rem; padding: .25rem .7rem; } .ctrust-strip { display: none; } .cform-title { font-size: 1.2rem; } .csidebar-card { padding: 1.1rem; } }

/* ============================================================
   CONTACT HERO — smooth content-entrance & Ken Burns
   These override / extend the chero-* block already in main.css
   ============================================================ */

/* Progress bar wrapper */
.chero-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 15;
}
.chero-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 0 2px 0 0;
  position: relative;
}

@keyframes cheroProgressRun {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Hide content on all slides by default */
.chero-slide .chero-badge,
.chero-slide .chero-title,
.chero-slide .chero-sub,
.chero-slide .chero-cta-btn {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}

/* Animate content in when slide becomes active */
.chero-slide.is-active .chero-badge    { animation: cheroIn 0.55s ease 0.10s forwards; }
.chero-slide.is-active .chero-title    { animation: cheroIn 0.65s ease 0.22s forwards; }
.chero-slide.is-active .chero-sub      { animation: cheroIn 0.65s ease 0.36s forwards; }
.chero-slide.is-active .chero-cta-btn  { animation: cheroIn 0.55s ease 0.50s forwards; }

@keyframes cheroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ken Burns subtle zoom on real-image slides */
.chero-slide.has-image .chero-img {
  transform: scale(1);
  transform-origin: center center;
  transition: none;
}
.chero-slide.has-image.is-active .chero-img {
  animation: cheroBurn 7s ease-out forwards;
}

@keyframes cheroBurn {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

/* Smooth track transition */
.chero-track {
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dot pill — refined */
.chero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

/* Arrow focus ring */
.chero-arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* CTA button ripple on active slide */
.chero-slide.is-active .chero-cta-btn {
  box-shadow: 0 4px 18px rgba(224,120,50,.38);
}

/* Form step label — refined */
.cform-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.cform-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}
.cform-step-label {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Submit button disabled state */
.cform-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Sidebar sticky on large screens */
@media (min-width: 992px) {
  .col-lg-5 > .csidebar-card:first-child,
  .col-lg-5 > .csidebar-online { position: sticky; top: 5.5rem; }
}

/* Smooth scroll offset for the contact-form anchor */
#contact-form { scroll-margin-top: 80px; }

/* ============================================================
   SAFARI WITH KIDS PAGE  (swk-*)
   ============================================================ */

/* â”€â”€ Hero â”€â”€ */
.swk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1f1a;
}
.swk-hero-videos {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.swk-hvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.swk-hvid--active {
  opacity: 1;
}
.swk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.60) 100%
  );
  z-index: 1;
}
.swk-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.swk-breadcrumb {
  margin-bottom: 2.2rem;
}
.swk-breadcrumb .breadcrumb-item,
.swk-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.75);
  font-size: .82rem;
  text-decoration: none;
}
.swk-breadcrumb .breadcrumb-item.active { color: #fff; }
.swk-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.45); }
.swk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--color-gold, #f4c430);
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.swk-hero-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold, #f4c430);
  animation: swkDotPulse 2s ease-in-out infinite;
}
@keyframes swkDotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: .65; }
}
.swk-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.swk-hero-accent {
  color: var(--color-teal, #009B8E);
  position: relative;
}
.swk-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.swk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.5rem;
}
.swk-hero-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}
.swk-hdots {
  display: flex;
  gap: .45rem;
}
.swk-hdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.swk-hdot.active {
  background: #fff;
  transform: scale(1.3);
}
.swk-hero-caption {
  color: rgba(255,255,255,0.78);
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.swk-hero-progress {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.swk-hero-progress-bar {
  height: 100%;
  background: var(--color-gold, #f4c430);
  width: 0;
}

/* Stats bar */
.swk-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 3.5rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  max-width: 680px;
}
.swk-stat { text-align: center; }
.swk-stat-num {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.swk-stat-plus { color: var(--color-gold, #f4c430); font-size: 1rem; }
.swk-stat-lbl { display: block; font-size: .70rem; color: rgba(255,255,255,0.65); letter-spacing: .06em; margin-top: .2rem; }
.swk-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.18); }

/* â”€â”€ Trust Strip â”€â”€ */
.swk-trust-strip {
  background: var(--color-teal, #009B8E);
  padding: .9rem 0;
}
.swk-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
}
.swk-trust-item {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.swk-trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

/* â”€â”€ Section Commons â”€â”€ */
.swk-section-eyebrow {
  display: inline-block;
  color: var(--color-teal, #009B8E);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.swk-section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0d2b24;
  line-height: 1.18;
  margin-bottom: .65rem;
}
.swk-section-sub {
  font-size: .97rem;
  color: #4a5568;
  max-width: 620px;
  margin: 0 auto .2rem;
  line-height: 1.7;
}
.swk-section-head { margin-bottom: 3rem; }

/* â”€â”€ Why Grid â”€â”€ */
.swk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.swk-why-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  transition: transform .3s, box-shadow .3s;
}
.swk-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.swk-why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.swk-why-icon--teal   { background: rgba(0,155,142,0.12); color: var(--color-teal, #009B8E); }
.swk-why-icon--orange { background: rgba(230,119,0,0.12); color: var(--color-orange, #E67700); }
.swk-why-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0d2b24;
  margin-bottom: .5rem;
}
.swk-why-body { font-size: .88rem; color: #555; line-height: 1.65; margin: 0; }

/* â”€â”€ Packages â”€â”€ */
.swk-pkg-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
.swk-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: 30px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
}
.swk-filter-btn:hover { border-color: var(--color-teal, #009B8E); color: var(--color-teal, #009B8E); }
.swk-filter-btn.active {
  background: var(--color-teal, #009B8E);
  border-color: var(--color-teal, #009B8E);
  color: #fff;
}
.swk-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-size: .70rem;
  font-weight: 700;
}
.swk-filter-btn.active .swk-filter-count { background: rgba(255,255,255,0.3); }
.swk-filter-btn:not(.active) .swk-filter-count { background: #f3f4f6; color: #6b7280; }

.swk-pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.swk-pkg-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 22px rgba(0,0,0,0.09);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.swk-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.swk-pkg-card--featured {
  border: 2px solid var(--color-gold, #f4c430);
}
.swk-pkg-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}
.swk-pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.swk-pkg-card:hover .swk-pkg-img { transform: scale(1.05); }
.swk-pkg-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d3d35, #1a7a6e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}
.swk-pkg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.swk-badge-featured {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: var(--color-gold, #f4c430);
  color: #1a1a1a;
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: 30px;
}
.swk-pkg-duration-badge {
  position: absolute;
  bottom: 2.6rem;
  right: .9rem;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.swk-pkg-dest-badge {
  position: absolute;
  bottom: .9rem;
  left: .9rem;
  right: 0;
  color: rgba(255,255,255,0.9);
  font-size: .73rem;
  font-weight: 500;
}

.swk-pkg-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.swk-pkg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}
.swk-pkg-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #fff;
}
.swk-pkg-icon--1 { background: var(--color-teal, #009B8E); }
.swk-pkg-icon--2 { background: var(--color-orange, #E67700); }
.swk-pkg-icon--3 { background: #7c3aed; }
.swk-pkg-icon--4 { background: #065f46; }
.swk-pkg-age-badge {
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-teal, #009B8E);
  background: rgba(0,155,142,0.10);
  padding: .25rem .65rem;
  border-radius: 20px;
}
.swk-pkg-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0d2b24;
  margin-bottom: .2rem;
  line-height: 1.25;
}
.swk-pkg-tagline {
  font-size: .80rem;
  color: var(--color-teal, #009B8E);
  font-weight: 600;
  margin-bottom: .6rem;
}
.swk-pkg-desc {
  font-size: .87rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: .8rem;
}
.swk-pkg-highlights {
  list-style: none;
  margin: 0 0 .8rem;
  padding: 0;
}
.swk-pkg-highlights li {
  font-size: .82rem;
  color: #374151;
  padding: .22rem 0;
  display: flex;
  align-items: flex-start;
  gap: .45rem;
}
.swk-pkg-highlights li i { color: var(--color-teal, #009B8E); margin-top: .15rem; flex-shrink: 0; }
.swk-pkg-group {
  font-size: .78rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.swk-pkg-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}
.swk-pkg-price-block { line-height: 1; }
.swk-pkg-from { display: block; font-size: .68rem; color: #6b7280; text-transform: uppercase; letter-spacing: .06em; }
.swk-pkg-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-teal, #009B8E);
  line-height: 1;
}
.swk-pkg-pp { display: block; font-size: .70rem; color: #6b7280; }
.swk-pkg-ctas { display: flex; align-items: center; gap: .7rem; }
.swk-book-btn { font-weight: 700; }
.swk-enquire-link {
  font-size: .80rem;
  color: #6b7280;
  text-decoration: none;
  transition: color .2s;
}
.swk-enquire-link:hover { color: var(--color-teal, #009B8E); }

/* â”€â”€ Age Guide â”€â”€ */
.swk-age-guide { background: #f7faf9; }
.swk-age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.swk-age-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.swk-age-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.swk-age-card--highlight {
  border-top: 4px solid var(--color-teal, #009B8E);
}
.swk-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.swk-age--toddler { background: rgba(230,119,0,0.12); color: var(--color-orange, #E67700); }
.swk-age--child   { background: rgba(0,155,142,0.12); color: var(--color-teal, #009B8E); }
.swk-age--teen    { background: rgba(124,58,237,0.1); color: #7c3aed; }
.swk-age-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d2b24;
  margin-bottom: .2rem;
}
.swk-age-sub {
  font-size: .78rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.swk-age-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  text-align: left;
}
.swk-age-list li {
  font-size: .83rem;
  color: #374151;
  padding: .22rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.swk-age-list li i { color: var(--color-teal, #009B8E); font-size: .7rem; flex-shrink: 0; }
.swk-age-rec {
  display: inline-block;
  font-size: .73rem;
  font-weight: 600;
  color: var(--color-teal, #009B8E);
  background: rgba(0,155,142,0.10);
  padding: .3rem .8rem;
  border-radius: 20px;
}

/* â”€â”€ What's Included â”€â”€ */
.swk-inc-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.swk-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-top: 1.6rem;
}
.swk-inc-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.swk-inc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,155,142,0.10);
  color: var(--color-teal, #009B8E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.swk-inc-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #0d2b24;
  margin-bottom: .12rem;
}
.swk-inc-item span { font-size: .78rem; color: #6b7280; line-height: 1.4; }

.swk-inc-badge-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.swk-inc-big-badge {
  border-radius: 16px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.swk-inc-big-badge i { font-size: 1.5rem; }
.swk-inc-big-badge strong { font-size: 1.2rem; font-weight: 800; color: #fff; }
.swk-inc-big-badge span  { font-size: .72rem; color: rgba(255,255,255,0.8); }
.swk-ibadge--1 { background: var(--color-teal, #009B8E); color: #fff; }
.swk-ibadge--1 i { color: rgba(255,255,255,0.85); }
.swk-ibadge--2 { background: #0d3d35; color: #fff; }
.swk-ibadge--2 i { color: var(--color-gold, #f4c430); }
.swk-ibadge--3 { background: var(--color-orange, #E67700); color: #fff; }
.swk-ibadge--3 i { color: rgba(255,255,255,0.85); }
.swk-ibadge--4 { background: #1a1a2e; color: #fff; }
.swk-ibadge--4 i { color: var(--color-teal, #009B8E); }

/* â”€â”€ Reviews â”€â”€ */
.swk-reviews { background: #f7faf9; }
.swk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.swk-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}
.swk-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}
.swk-review-stars { color: #f59e0b; font-size: .85rem; }
.swk-review-badge {
  font-size: .70rem;
  font-weight: 600;
  color: var(--color-teal, #009B8E);
  background: rgba(0,155,142,0.10);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.swk-review-text {
  font-size: .88rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.2rem;
}
.swk-review-footer {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.swk-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-teal, #009B8E);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.swk-review-name { display: block; font-size: .88rem; font-weight: 700; color: #0d2b24; }
.swk-review-meta { font-size: .74rem; color: #6b7280; }

/* â”€â”€ FAQ â”€â”€ */
.swk-faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.swk-faq-head .swk-section-sub { max-width: 300px; margin: 0 0 .2rem; }
.swk-faq-list { display: flex; flex-direction: column; gap: .6rem; }
.swk-faq-item {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.swk-faq-item.is-open {
  border-color: var(--color-teal, #009B8E);
  box-shadow: 0 4px 20px rgba(0,155,142,0.10);
}
.swk-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.05rem 1.3rem;
  text-align: left;
  font-size: .92rem;
  font-weight: 600;
  color: #0d2b24;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.45;
}
.swk-faq-q:hover { background: #f9fafb; }
.swk-faq-arrow {
  flex-shrink: 0;
  font-size: .8rem;
  color: #6b7280;
  transition: transform .3s ease;
}
.swk-faq-item.is-open .swk-faq-arrow { transform: rotate(180deg); color: var(--color-teal, #009B8E); }
.swk-faq-a {
  padding: 0 1.3rem 1.1rem;
  font-size: .87rem;
  color: #4a5568;
  line-height: 1.75;
}
.swk-faq-a p { margin: 0; }

/* â”€â”€ CTA â”€â”€ */
.swk-cta {
  position: relative;
  background: linear-gradient(135deg, #0d3d35 0%, #0a2921 100%);
  padding: 6rem 0;
  overflow: hidden;
}
.swk-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,155,142,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.swk-cta-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
  pointer-events: none;
}
.swk-cta-inner { position: relative; z-index: 1; }
.swk-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.swk-cta-eyebrow {
  display: block;
  color: var(--color-gold, #f4c430);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.swk-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.18;
}
.swk-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.swk-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.swk-cta-note {
  font-size: .78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* â”€â”€ btn-outline-teal â”€â”€ */
.btn-outline-teal {
  border: 1.5px solid var(--color-teal, #009B8E);
  color: var(--color-teal, #009B8E);
  background: transparent;
  font-weight: 600;
  border-radius: 8px;
  padding: .6rem 1.4rem;
  text-decoration: none;
  transition: all .22s;
  display: inline-flex;
  align-items: center;
}
.btn-outline-teal:hover {
  background: var(--color-teal, #009B8E);
  color: #fff;
}

/* â”€â”€ Progress animation â”€â”€ */
@keyframes swkProgressRun {
  from { width: 0; }
  to   { width: 100%; }
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .swk-why-grid    { grid-template-columns: repeat(2, 1fr); }
  .swk-pkg-grid    { grid-template-columns: repeat(2, 1fr); }
  .swk-inc-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .swk-faq-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .swk-faq-head .swk-section-sub { max-width: 100%; }
}
@media (max-width: 768px) {
  .swk-hero        { min-height: 92vh; }
  .swk-hero-title  { font-size: 2.1rem; }
  .swk-hero-actions { flex-direction: column; align-items: flex-start; }
  .swk-why-grid    { grid-template-columns: 1fr; }
  .swk-pkg-grid    { grid-template-columns: 1fr; }
  .swk-age-grid    { grid-template-columns: 1fr; }
  .swk-reviews-grid { grid-template-columns: 1fr; }
  .swk-inc-grid    { grid-template-columns: 1fr; }
  .swk-inc-badge-stack { grid-template-columns: 1fr 1fr; }
  .swk-hero-stats  { gap: .5rem 1rem; }
  .swk-stat-div    { display: none; }
  .swk-trust-inner { flex-direction: column; text-align: center; }
  .swk-trust-sep   { display: none; }
  .swk-pkg-footer  { flex-direction: column; align-items: flex-start; }
  .swk-faq-inner   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .swk-hero-title  { font-size: 1.85rem; }
  .swk-hero-stats  { padding: .9rem 1rem; }
  .swk-stat-num    { font-size: 1.25rem; }
  .swk-inc-badge-stack { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .swk-pkg-filter-bar { gap: .4rem; }
  .swk-filter-btn  { font-size: .75rem; padding: .45rem .85rem; }
  .swk-cta-actions { flex-direction: column; }
}

/* â”€â”€ Gallery Section (swk-gallery) â”€â”€ */
.swk-gallery { background: #f7faf9; }

.swk-gallery-masonry {
  columns: 4;
  column-gap: 10px;
}
.swk-gal-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.swk-gal-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}
.swk-gal-item:hover img {
  transform: scale(1.06);
}
.swk-gal-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 100%);
  color: #fff;
  padding: 1.6rem .85rem .65rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.swk-gal-item:hover .swk-gal-overlay {
  opacity: 1;
  transform: translateY(0);
}
.swk-gal-overlay i {
  font-size: .85rem;
  color: var(--color-gold, #f4c430);
  flex-shrink: 0;
}
.swk-gal-overlay span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.3;
}

/* Tall items: taller aspect ratio by using a fixed-height img */
.swk-gal-item--tall img {
  height: 420px;
  object-fit: cover;
}
.swk-gal-item:not(.swk-gal-item--tall) img {
  height: 200px;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .swk-gallery-masonry { columns: 3; }
  .swk-gal-item--tall img { height: 340px; }
  .swk-gal-item:not(.swk-gal-item--tall) img { height: 180px; }
}
@media (max-width: 768px) {
  .swk-gallery-masonry { columns: 2; column-gap: 8px; }
  .swk-gal-item { margin-bottom: 8px; }
  .swk-gal-item--tall img { height: 270px; }
  .swk-gal-item:not(.swk-gal-item--tall) img { height: 150px; }
  .swk-gal-overlay { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .swk-gallery-masonry { columns: 2; column-gap: 6px; }
  .swk-gal-item { margin-bottom: 6px; }
  .swk-gal-item--tall img { height: 200px; }
  .swk-gal-item:not(.swk-gal-item--tall) img { height: 120px; }
}

/* â”€â”€ Age card photos â”€â”€ */
.swk-age-photo {
  position: relative;
  height: 160px;
  margin: -2rem -1.6rem 1.2rem;
  overflow: hidden;
}
.swk-age-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.swk-age-card:hover .swk-age-photo img {
  transform: scale(1.05);
}
.swk-age-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25) 100%);
}
.swk-age-card {
  overflow: hidden;
  padding-top: 0;
}
.swk-age-badge {
  margin-top: 0;
  position: relative;
  z-index: 1;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   IMAGE COPYRIGHT PROTECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Prevent native drag-to-save on all images */
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none; /* iOS long-press save sheet */
}

/* â”€â”€ Copyright Toast â”€â”€ */
.lht-copyright-toast {
  position: fixed;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #0f2828;
  color: #fff;
  padding: 1rem 1.25rem 1rem 1.1rem;
  border-radius: 12px;
  border-left: 4px solid #E07832;
  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.25);
  max-width: min(480px, 90vw);
  width: max-content;
  transition: transform .42s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  opacity: 0;
  pointer-events: none;
}

.lht-copyright-toast.lht-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lht-copyright-toast__icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(224,120,50,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E07832;
  font-size: 1.05rem;
}

.lht-copyright-toast__body {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  font-size: .88rem;
  line-height: 1.4;
}

.lht-copyright-toast__body strong {
  font-size: .92rem;
  color: #fff;
  font-weight: 600;
}

.lht-copyright-toast__body span {
  color: rgba(255,255,255,.75);
}

.lht-copyright-toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .15rem;
  margin-left: .25rem;
  flex-shrink: 0;
  transition: color .2s;
}

.lht-copyright-toast__close:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .lht-copyright-toast {
    bottom: 1.2rem;
    padding: .8rem 1rem;
    gap: .7rem;
  }
  .lht-copyright-toast__icon {
    width: 2rem;
    height: 2rem;
    font-size: .9rem;
  }
}

/* â”€â”€ lh-match-card: title + description layout â”€â”€ */
.lh-match-card-body { flex: 1; min-width: 0; }
.lh-match-card-title {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .4rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.lh-match-card-desc {
  font-family: var(--font-ui);
  font-size: .845rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.lh-match-card:hover .lh-match-card-title { color: var(--gold); transition: color var(--transition); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE â€” ENHANCED MOBILE RESPONSIVENESS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 480 px and below (small phones) â”€â”€ */
@media (max-width: 480px) {

  /* Hero */
  .lh-hero { min-height: 320px; }
  .lh-hero-body { padding-top: 2.5rem; padding-bottom: 1.5rem; }
  .lh-hero-title { font-size: clamp(1.35rem, 7.5vw, 1.75rem); line-height: 1.2; margin-bottom: .45rem; }
  .lh-hero-badge { font-size: .6rem; padding: .25rem .6rem; gap: .3rem; }
  .lh-hero-ctas { flex-direction: column; gap: .6rem; }
  .lh-cta-card { padding: .75rem 1rem; }
  .lh-cta-card-title { font-size: .85rem; }
  .lh-cta-card-sub   { font-size: .72rem; }

  /* Recognition strip */
  .lh-recognition { padding: 1.5rem 0; }
  .lh-recognition-grid { grid-template-columns: 1fr; gap: 0; }
  .lh-rec-card { padding: 1rem 1.1rem; gap: .85rem; border-bottom: 1px solid var(--border); }
  .lh-rec-card:last-child { border-bottom: none; }
  .lh-rec-icon { width: 36px; height: 36px; min-width: 36px; font-size: .9rem; flex-shrink: 0; }
  .lh-rec-stat { font-size: .95rem; }
  .lh-rec-text { font-size: .8rem; }

  /* Consultation */
  .lh-consultation-section { padding: 2.25rem 0; }
  .lh-consult-inner { flex-direction: column; gap: 1.25rem; }
  .lh-consult-expert { flex-direction: row; align-items: center; gap: .85rem; }
  .lh-consult-title  { font-size: 1.25rem; }
  .lh-consult-text   { font-size: .82rem; }
  .lh-consult-actions { flex-direction: column; gap: .6rem; }
  .lh-consult-actions .lh-btn-primary,
  .lh-consult-actions .lh-btn-whatsapp { width: 100%; justify-content: center; text-align: center; }

  /* Match / Values grid */
  .lh-match-grid { grid-template-columns: 1fr; gap: .75rem; }
  .lh-match-card { padding: 1rem 1.1rem; }
  .lh-match-card-title { font-size: .88rem; }
  .lh-match-card-desc  { font-size: .8rem; }

  /* Blog */
  .lh-blog-grid { grid-template-columns: 1fr; }
  .lh-blog-card-img-wrap { height: 155px; }
  .lh-blog-title { font-size: .92rem; }

  /* Instagram */
  .lh-insta-grid { grid-template-columns: repeat(2, 1fr); gap: .35rem; }

  /* YouTube */
  .lh-yt-grid { grid-template-columns: 1fr; gap: 1rem; }
  .lh-yt-thumb { height: 155px; }
  .lh-yt-title { font-size: .88rem; }

  /* Final CTA */
  .lh-final-cta { padding: 2.5rem 0; }
  .lh-final-cta-title { font-size: 1.35rem; }
  .lh-final-cta-sub   { font-size: .82rem; }
  .lh-final-cta-options { flex-direction: column; align-items: stretch; gap: .75rem; }
  .lh-cta-option { width: 100%; flex-direction: row; justify-content: flex-start; gap: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius-md); }
  .lh-cta-opt-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .lh-cta-opt-label { font-size: .92rem; }
  .lh-cta-opt-sub   { font-size: .75rem; }

  /* Section headers */
  .lh-section-title { font-size: clamp(1.25rem, 6vw, 1.6rem); }
  .lh-section-sub   { font-size: .82rem; }
}

/* â”€â”€ 360 px and below (very small phones) â”€â”€ */
@media (max-width: 360px) {
  .lh-hero-title { font-size: 1.25rem; }
  .lh-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-rec-card { flex-direction: column; gap: .6rem; }
  .lh-consult-expert { flex-direction: column; text-align: center; }
}

/* â”€â”€ 576 px (general small phone / large phone) â”€â”€ */
@media (max-width: 576px) {

  /* Recognition: single column */
  .lh-recognition-grid { grid-template-columns: 1fr; }

  /* Instagram: 3 cols instead of 4 */
  .lh-insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Section padding tighter */
  .lh-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }

  /* Consultation buttons stack */
  .lh-consult-actions { flex-direction: column; gap: .65rem; }

  /* Blog cards single column */
  .lh-blog-grid { grid-template-columns: 1fr; }

  /* YouTube single column */
  .lh-yt-grid { grid-template-columns: 1fr; }

  /* Final CTA options: column */
  .lh-final-cta-options { flex-direction: column; align-items: center; }
  .lh-cta-option { width: 100%; max-width: 320px; }
}

/* â”€â”€ Prevent horizontal overflow on all phones â”€â”€ */
@media (max-width: 768px) {
  .lh-hero,
  .lh-recognition,
  .lh-consultation-section,
  .lh-match-section,
  .lh-instagram-section,
  .lh-youtube-section,
  .lh-final-cta { overflow-x: hidden; }

  .lh-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .lh-yt-thumb { height: 165px; }
}

/* =========================================================
   PAGINATION — shared across all list pages
   ========================================================= */
.lh-pagination { margin-bottom: 2rem; }

.lh-pagination .pagination {
  gap: .25rem;
}

.lh-pagination .page-link {
  border-radius: 8px !important;
  border: 1.5px solid rgba(27,60,60,.18);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem .8rem;
  transition: background .18s, color .18s, border-color .18s;
  line-height: 1.4;
}

.lh-pagination .page-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.lh-pagination .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(224,120,50,.35);
}

.lh-pagination .page-item.disabled .page-link {
  opacity: .4;
  pointer-events: none;
  background: transparent;
}

.lh-pagination .lh-pg-edge {
  font-size: .75rem;
  padding: .45rem .65rem;
}

.lh-page-info {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}

@media (max-width: 480px) {
  .lh-pagination .page-link { padding: .4rem .6rem; font-size: .8rem; }
  .lh-pagination .lh-pg-edge { display: none; }
}
