/* ============================================================
   Africa Wandering Peak Safaris — main stylesheet
   Palette drawn from the AWPS logo:
   leaf green #3FA535, lime #A9CE3B, mountain teal #2E7D6E,
   deep teal-green #14463C, charcoal #232B29, mint #EDF7EE
   ============================================================ */

:root {
  --green: #3FA535;
  --lime: #A9CE3B;
  --teal: #2E7D6E;
  --deep: #14463C;
  --ink: #1E2B27;
  --body: #5E6D67;
  --mint: #EDF7EE;
  --mint-2: #E2F1E4;
  --white: #ffffff;
  --gold: #E8A317;
  --grad: linear-gradient(135deg, #3FA535 0%, #A9CE3B 100%);
  --grad-deep: linear-gradient(135deg, #14463C 0%, #2E7D6E 100%);
  --shadow: 0 10px 40px rgba(20, 70, 60, .12);
  --shadow-lg: 0 24px 60px rgba(20, 70, 60, .18);
  --radius: 18px;
  --font-title: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.container { width: min(1200px, 92%); margin-inline: auto; }

section { padding: 90px 0; }

/* ---------- eyebrow + section titles ---------- */
.eyebrow {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 42px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s;
  box-shadow: 0 8px 22px rgba(63, 165, 53, .35);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(63, 165, 53, .45); }
.btn.ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.75);
  box-shadow: none;
}
.btn.ghost:hover { background: rgba(255,255,255,.14); }
.btn.dark { background: var(--grad-deep); box-shadow: 0 8px 22px rgba(20,70,60,.35); }

/* ---------- topbar ---------- */
.topbar {
  background: var(--deep);
  color: #cfe4d8;
  font-size: 13.5px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.topbar a:hover { color: var(--lime); }
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .right { display: flex; gap: 20px; }

/* ---------- header / nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(20,70,60,.08);
  transition: box-shadow .3s;
}
.navwrap { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.logo img { height: 66px; width: auto; }

nav.mainnav > ul { display: flex; gap: 6px; }
nav.mainnav > ul > li { position: relative; }
nav.mainnav > ul > li > a {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  padding: 26px 14px;
}
nav.mainnav > ul > li > a:hover,
nav.mainnav > ul > li > a.active { color: var(--green); }

nav.mainnav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s;
}
nav.mainnav li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
nav.mainnav .dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
nav.mainnav .dropdown a:hover { color: var(--green); padding-left: 28px; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--deep);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 40px;
  transition: background .3s, transform .3s;
}
.whatsapp-btn:hover { background: var(--green); transform: translateY(-2px); }
.wa-ico { display: block; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--deep); border-radius: 3px; transition: .3s; }

/* mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0 30% 0 0;
  max-width: 340px;
  background: var(--deep);
  z-index: 1200;
  padding: 34px 28px;
  transform: translateX(-102%);
  transition: transform .4s cubic-bezier(.7,0,.3,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { color: #e7f3ea; display: block; padding: 11px 0; font-family: var(--font-title); font-weight: 700; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { color: var(--lime); }
.mobile-nav .sub a { font-size: 14.5px; font-weight: 500; padding: 8px 0 8px 16px; opacity: .85; border: 0; }
.mobile-nav .close { background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; margin-bottom: 18px; }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 30, 25, .55);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: .3s;
}
.nav-overlay.show { opacity: 1; visibility: visible; }

/* ---------- hero ---------- */
.hero { position: relative; height: min(88vh, 780px); min-height: 560px; overflow: hidden; padding: 0; }
.hero .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6.5s linear;
}
.hero .slide.active { opacity: 1; transform: scale(1); }
.hero .slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,30,24,.72) 0%, rgba(8,30,24,.35) 55%, rgba(8,30,24,.1) 100%);
}
.hero .content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hero .script {
  font-family: var(--font-script);
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--lime);
  margin-bottom: 10px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  max-width: 720px;
  margin-bottom: 22px;
}
.hero p.sub { max-width: 560px; font-size: 17px; color: #e8f1ea; margin-bottom: 34px; }
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .dots {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 6;
}
.hero .dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: .3s;
}
.hero .dots button.active { background: var(--lime); border-color: var(--lime); transform: scale(1.2); }

/* ---------- page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  padding: 130px 0 110px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.page-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8,30,24,.62), rgba(8,30,24,.62)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-bottom: 10px; }
.page-banner .crumbs { font-family: var(--font-title); font-weight: 600; color: #d9e9dd; }
.page-banner .crumbs a:hover { color: var(--lime); }
.page-banner .crumbs span { color: var(--lime); }

/* ---------- about section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-collage img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-collage img:nth-child(1) { border-radius: 140px 140px 24px 140px; margin-top: 44px; }
.about-collage img:nth-child(2) { border-radius: 140px 24px 140px 140px; }
.about-collage img:nth-child(3) { border-radius: 24px 140px 140px 140px; }
.about-collage img:nth-child(4) { border-radius: 140px 140px 140px 24px; margin-top: -44px; }
.about-collage .badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--grad);
  color: #fff;
  width: 132px; height: 132px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-title);
  font-weight: 800;
  box-shadow: 0 0 0 8px #fff, var(--shadow-lg);
}
.about-collage .badge strong { font-size: 30px; line-height: 1; }
.about-collage .badge small { font-size: 12.5px; font-weight: 700; }

.feature-list { margin: 26px 0 34px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .ic {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.feature-list h4 { font-size: 17px; margin-bottom: 2px; }
.feature-list p { font-size: 14.5px; }

/* ---------- carousels (generic) ---------- */
.carousel { position: relative; }
.carousel .track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 4px 30px;
}
.carousel .track::-webkit-scrollbar { display: none; }
.carousel .track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel .navbtns { display: flex; gap: 12px; justify-content: center; }
.carousel .navbtns button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--mint-2);
  background: #fff;
  color: var(--deep);
  font-size: 19px;
  cursor: pointer;
  transition: .3s;
}
.carousel .navbtns button:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------- trip cards ---------- */
.trip-card {
  width: 358px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
}
.trip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trip-card .thumb { position: relative; overflow: hidden; height: 235px; }
.trip-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.trip-card:hover .thumb img { transform: scale(1.09); }
.trip-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-title);
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
}
.trip-card .body { padding: 22px 24px 24px; }
.trip-card h3 { font-size: 18.5px; margin-bottom: 8px; min-height: 48px; }
.trip-card h3 a:hover { color: var(--green); }
.trip-card .loc { font-size: 13.5px; display: flex; gap: 7px; align-items: center; color: var(--body); }
.trip-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--mint-2);
  margin-top: 16px;
  padding-top: 16px;
}
.trip-card .price { font-family: var(--font-title); color: var(--deep); font-weight: 800; font-size: 20px; }
.trip-card .price small { font-size: 12.5px; color: var(--body); font-weight: 600; }
.trip-card .days { font-size: 13.5px; font-weight: 700; color: var(--body); }
.trip-card .book {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  color: var(--green);
}
.trip-card .book:hover { color: var(--deep); }

.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.trip-grid .trip-card { width: auto; }

/* ---------- category cards ---------- */
.cat-card {
  width: 250px;
  text-align: center;
  transition: transform .35s;
}
.cat-card:nth-child(odd) { transform: rotate(-2.5deg); }
.cat-card:nth-child(even) { transform: rotate(2.5deg) translateY(14px); }
.cat-card:hover { transform: rotate(0) translateY(-6px); }
.cat-card .ph {
  height: 300px;
  border-radius: 130px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.cat-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cat-card:hover .ph img { transform: scale(1.1); }
.cat-card h3 { font-size: 18px; }
.cat-card a.more { font-size: 13.5px; font-weight: 700; color: var(--green); }
.cat-card a.more:hover { color: var(--deep); }

/* ---------- destination cards ---------- */
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.dest-card:hover img { transform: scale(1.1); }
.dest-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(8,30,24,0) 40%, rgba(8,30,24,.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
}
.dest-card h3 { color: #fff; font-size: 22px; }
.dest-card .sub { font-size: 13.5px; color: #cfe3d5; margin-bottom: 4px; }
.dest-card .region {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.92);
  color: var(--deep);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 30px;
}
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

.dest-card.wide { width: 340px; height: 420px; }

/* filter pills */
.filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filters button {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 30px;
  border: 2px solid var(--mint-2);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: .3s;
}
.filters button.active, .filters button:hover { background: var(--grad); border-color: transparent; color: #fff; }

/* ---------- gallery ---------- */
.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}
.gallery-grid a {
  display: block;
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.gallery-grid img { width: 100%; transition: transform .6s; }
.gallery-grid a::after {
  content: "+";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 42px; color: #fff;
  background: rgba(20,70,60,.45);
  opacity: 0;
  transition: .35s;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a:hover img { transform: scale(1.07); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 22, 18, .93);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 4vh 4vw;
}
.lightbox.show { display: grid; }
.lightbox img { max-height: 88vh; max-width: 92vw; border-radius: 10px; }
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: .3s;
}
.lightbox button:hover { background: var(--green); }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- stats ---------- */
.stats {
  background: var(--deep) url('../images/2025/04/Untitled-design-7.png') center/cover no-repeat;
  background-blend-mode: soft-light;
  color: #fff;
  padding: 80px 0;
}
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats .circle {
  width: 168px; height: 168px;
  margin-inline: auto;
  border-radius: 50%;
  border: 3px dashed rgba(169, 206, 59, .55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform .35s, border-color .35s;
}
.stats .circle:hover { transform: scale(1.06); border-color: var(--lime); }
.stats .num { font-family: var(--font-title); font-size: 40px; font-weight: 800; color: var(--lime); line-height: 1.1; }
.stats .lbl { font-family: var(--font-title); font-weight: 700; font-size: 14.5px; color: #dcebe0; }

/* ---------- testimonials ---------- */
.testi { background: var(--mint); }
.testi-card {
  width: 420px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 32px;
  position: relative;
}
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 78px;
  color: var(--mint-2);
  position: absolute;
  top: 8px; right: 24px;
  line-height: 1;
}
.testi-card .stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p.txt { font-size: 15px; margin-bottom: 22px; }
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-card .who .av {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 19px;
}
.testi-card .who h4 { font-size: 16px; }
.testi-card .who small { font-size: 13px; color: var(--body); }

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--ink);
}
.trust-strip img { height: 30px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: url('../images/2025/04/tanzania-luxury-safari-banner.jpg') center/cover fixed;
  padding: 110px 0;
  text-align: center;
  color: #fff;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(11,40,32,.78), rgba(11,40,32,.78)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 14px; }
.cta-band p { max-width: 620px; margin: 0 auto 34px; color: #dcebe0; }

/* ---------- newsletter ---------- */
.newsletter { background: var(--grad-deep); color: #fff; padding: 64px 0; }
.newsletter .container { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.newsletter h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.newsletter form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input {
  border: 0;
  border-radius: 40px;
  padding: 15px 26px;
  min-width: 300px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
}

/* ---------- footer ---------- */
footer.site-footer { background: var(--deep); color: #b9cfc2; padding: 80px 0 0; font-size: 14.5px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 44px;
  padding-bottom: 54px;
}
.footer-grid .logo-badge {
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer-grid .logo-badge img { height: 62px; }
footer h3 { color: #fff; font-size: 18px; margin-bottom: 22px; }
footer .links li { margin-bottom: 11px; }
footer .links a { display: inline-flex; gap: 8px; align-items: center; }
footer .links a::before { content: "›"; color: var(--lime); font-weight: 800; }
footer a:hover { color: var(--lime); }
footer .contact-list li { display: flex; gap: 12px; margin-bottom: 15px; align-items: flex-start; }
footer .contact-list .ic { color: var(--lime); font-size: 17px; margin-top: 3px; }
.socials { display: flex; gap: 11px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: #fff;
  transition: .3s;
}
.socials a:hover { background: var(--green); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom img { height: 26px; }

/* ---------- floating whatsapp ---------- */
.float-wa {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* ---------- content pages ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
.checks { margin: 22px 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checks li::before { content: "✓"; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: var(--mint); color: var(--green); display: grid; place-items: center; font-size: 14px; font-weight: 800; }

/* ---- destination detail: quick facts & wildlife tags ---- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fact { background: #fff; border: 1px solid var(--mint-2); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow); }
.fact .ic { font-size: 26px; line-height: 1; }
.fact h4 { font-family: var(--font-title); font-size: 15px; margin: 12px 0 6px; color: var(--deep); }
.fact p { font-size: 14px; color: var(--ink); line-height: 1.55; opacity: .85; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 8px; }
.tags span { background: var(--mint); color: var(--deep); border-radius: 30px; padding: 9px 16px; font-size: 13px; font-weight: 700; }
.facts.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .facts, .facts.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .facts, .facts.cols-3 { grid-template-columns: 1fr; } }

/* ---- recognition badges (about page) ---- */
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--mint-2); border-radius: 50px;
  padding: 14px 26px; box-shadow: var(--shadow);
  font-family: var(--font-title); font-weight: 700; font-size: 15px; color: var(--deep);
}
.badge .b-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--mint); color: var(--green);
  display: grid; place-items: center; font-size: 18px;
  overflow: hidden;
}
.badge .b-ic.logo { background: #fff; border: 1px solid var(--mint-2); }
.badge .b-ic img { width: 100%; height: 100%; object-fit: contain; }

/* ---- about page media ---- */
.duo-shot { position: relative; }
.duo-shot .main {
  width: 100%; height: 470px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block;
}
.duo-shot .inset {
  position: absolute; right: -20px; bottom: -34px;
  width: 54%; height: 210px; object-fit: cover;
  border-radius: 16px; border: 7px solid #fff;
  box-shadow: var(--shadow-lg); display: block;
}
.duo-shot .tag {
  position: absolute; left: -18px; top: 28px;
  background: var(--grad); color: #fff;
  border-radius: 16px; padding: 14px 20px;
  font-family: var(--font-title); font-weight: 800;
  box-shadow: var(--shadow-lg); line-height: 1.15;
}
.duo-shot .tag strong { display: block; font-size: 26px; }
.duo-shot .tag small { font-size: 12px; font-weight: 700; opacity: .92; }
@media (max-width: 900px) {
  .duo-shot .main { height: 330px; }
  .duo-shot .inset { position: static; width: 100%; height: 190px; border: 0; margin-top: 16px; }
  .duo-shot .tag { left: 12px; top: 12px; }
}

.photo-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.photo-card {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.photo-card img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform .7s; }
.photo-card:hover img { transform: scale(1.07); }
.photo-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 22px 18px;
  background: linear-gradient(transparent, rgba(11, 40, 32, .88));
  color: #fff; font-family: var(--font-title); font-weight: 800; font-size: 17px;
}
.photo-card figcaption small { display: block; font-size: 12.5px; font-weight: 600; opacity: .85; margin-top: 3px; }

.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; margin-top: 28px; }
.logo-chip {
  background: #fff; border: 1px solid var(--mint-2); border-radius: 16px;
  padding: 14px 24px; box-shadow: var(--shadow); display: grid; place-items: center;
}
.logo-chip img { height: 56px; width: auto; max-width: 150px; object-fit: contain; transition: transform .4s; }
.logo-chip:hover img { transform: scale(1.07); }

/* ---- premium trip detail: sticky nav, stats, day cards ---- */
html { scroll-behavior: smooth; }
.trip-nav {
  position: sticky; top: 76px; z-index: 800;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mint-2);
}
.trip-nav .container { display: flex; gap: 8px; overflow-x: auto; padding-top: 13px; padding-bottom: 13px; scrollbar-width: none; }
.trip-nav .container::-webkit-scrollbar { display: none; }
.trip-nav a {
  font-family: var(--font-title); font-weight: 700; font-size: 14px;
  color: var(--deep); padding: 9px 22px; border-radius: 30px;
  white-space: nowrap; transition: background .25s, color .25s;
}
.trip-nav a:hover { background: var(--mint); }
.trip-nav a.on { background: var(--green); color: #fff; }
.anchor-target { scroll-margin-top: 158px; }

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--mint-2); border: 1px solid var(--mint-2);
  border-radius: var(--radius); overflow: hidden; margin-top: 38px;
  box-shadow: var(--shadow);
}
.stat-band > div { background: #fff; padding: 24px 16px; text-align: center; }
.stat-band .v { font-family: var(--font-title); font-weight: 800; font-size: 27px; color: var(--deep); line-height: 1.1; }
.stat-band .k { font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-top: 6px; }

.day-cards { display: grid; gap: 26px; max-width: 900px; margin: 0 auto; }
.day-card {
  background: #fff; border: 1px solid var(--mint-2); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px 36px; position: relative; overflow: hidden;
}
.day-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--green); }
.day-card .d-tag {
  display: inline-block; background: var(--mint); color: var(--green);
  font-family: var(--font-title); font-weight: 800; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 12px;
}
.day-card h3 { font-family: var(--font-title); color: var(--deep); font-size: 21px; margin-bottom: 10px; }
.day-card p { color: var(--ink); opacity: .87; font-size: 15.5px; line-height: 1.65; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chips span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--mint); color: var(--deep);
  border-radius: 30px; padding: 8px 15px;
  font-size: 13px; font-weight: 700;
}
.elev-chart {
  max-width: 900px; margin: 0 auto 44px; background: #fff;
  border: 1px solid var(--mint-2); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 26px 18px;
}
.elev-chart svg { width: 100%; height: auto; display: block; }
.elev-chart figcaption { text-align: center; font-size: 13px; color: var(--ink); opacity: .65; margin-top: 10px; }

.quote-panel {
  max-width: 900px; margin: 44px auto 0; text-align: center;
  background: var(--deep); color: #fff; border-radius: var(--radius);
  padding: 46px 34px; box-shadow: var(--shadow);
}
.quote-panel h3 { font-family: var(--font-title); font-size: 26px; margin-bottom: 10px; color: #fff; }
.quote-panel p { color: #b9cfc2; max-width: 560px; margin: 0 auto 24px; font-size: 15.5px; line-height: 1.65; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--mint-2); }
.map-frame iframe { display: block; width: 100%; height: 480px; border: 0; }
@media (max-width: 760px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .day-card { padding: 26px 22px 26px 26px; }
  .trip-nav { top: 64px; }
  .anchor-target { scroll-margin-top: 132px; }
}

/* ---- trip detail: itinerary timeline & includes ---- */
.itinerary { max-width: 860px; margin: 0 auto; display: grid; gap: 26px; }
.day { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: start; }
.day .num { width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--font-title); font-weight: 800; font-size: 13px; display: grid; place-items: center; text-align: center; line-height: 1.15; }
.day .d-body h4 { font-family: var(--font-title); color: var(--deep); font-size: 18px; margin-bottom: 6px; }
.day .d-body p { color: var(--ink); opacity: .85; font-size: 15px; line-height: 1.6; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.x-list { display: grid; gap: 12px; }
.x-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.x-list li::before { content: "✕"; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: #fbe6e6; color: #c0392b; display: grid; place-items: center; font-size: 13px; font-weight: 800; }
@media (max-width: 760px) { .incl-grid { grid-template-columns: 1fr; gap: 8px; } .day { grid-template-columns: 46px 1fr; gap: 16px; } .day .num { width: 46px; height: 46px; font-size: 12px; } }

/* FAQ */
.faq-item { border: 1.5px solid var(--mint-2); border-radius: 14px; margin-bottom: 16px; overflow: hidden; background: #fff; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 26px;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--green); transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .ans { padding: 0 26px 22px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow); margin-bottom: 18px; transition: transform .35s; }
.team-card:hover img { transform: translateY(-6px); }
.team-card h3 { font-size: 18px; }
.team-card small { color: var(--green); font-weight: 700; }

/* contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 50px; }
.info-card { background: var(--mint); border-radius: var(--radius); padding: 40px 36px; }
.info-card li { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.info-card .ic {
  flex: 0 0 50px; width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  display: grid; place-items: center;
  font-size: 20px;
  box-shadow: var(--shadow);
}
.info-card h4 { font-size: 16px; }
.contact-form { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--mint-2);
  border-radius: 12px;
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  background: #fff;
  transition: border-color .3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--green); }
.contact-form textarea { min-height: 150px; resize: vertical; }

/* labelled enquiry form (contact page) */
.form-panel {
  background: #f7f9f7;
  border: 1px solid var(--mint-2);
  border-radius: var(--radius);
  padding: 34px 34px 38px;
  box-shadow: var(--shadow);
}
.form-panel-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  color: var(--deep);
  margin-bottom: 26px;
}
.contact-form .field { display: grid; gap: 8px; align-content: start; }
.contact-form .field label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep);
}
.contact-form .req { color: #d1553f; }
.contact-form .trip-line {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep);
  margin-bottom: 4px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aa8a0; }
.contact-form select:invalid { color: #9aa8a0; }
.form-status {
  margin-top: 14px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.5;
  border-radius: 12px;
  padding: 0;
}
.form-status.ok, .form-status.err { padding: 13px 16px; }
.form-status.ok { background: var(--mint); color: var(--deep); border: 1px solid var(--mint-2); }
.form-status.err { background: #fdeeea; color: #a33d28; border: 1px solid #f3cfc6; }
.contact-form button[type="submit"][disabled] { opacity: .65; cursor: progress; }
@media (max-width: 640px) { .form-panel { padding: 26px 20px 30px; } }

/* route cards (trekking) */
.route-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: transform .35s, box-shadow .35s;
}
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.route-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.route-card .body { padding: 30px 34px; }
.route-card h3 { font-size: 21px; margin-bottom: 8px; }
.route-card .facts { display: flex; gap: 22px; flex-wrap: wrap; margin: 14px 0 18px; font-size: 13.5px; font-weight: 700; color: var(--deep); }
.route-card .facts span { background: var(--mint); padding: 6px 14px; border-radius: 30px; }

/* back to top */
.to-top {
  position: fixed;
  bottom: 98px; right: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  z-index: 890;
  opacity: 0;
  visibility: hidden;
  transition: .35s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--green); }

/* misc backgrounds */
.bg-mint { background: var(--mint); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  nav.mainnav { display: none; }
  .hamburger { display: flex; }
  .header-cta .whatsapp-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .about-collage img { height: 210px; }
  .route-card { grid-template-columns: 1fr; }
  .route-card img { max-height: 240px; }
  .topbar .right { display: none; }
  .hero { min-height: 520px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats .circle { width: 146px; height: 146px; }
  .stats .num { font-size: 32px; }
  .contact-form { grid-template-columns: 1fr; }
  .trip-card { width: 300px; }
  .testi-card { width: 320px; }
  .newsletter input { min-width: 0; width: 100%; }
}
