/* =====================================================
   Phioshinah Safaris - Stylesheet
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --green-dark: #1a7a3e;
  --green: #2b9c54;
  --green-light: #6abf5a;
  --script: #5cb85c;
  --accent: #f15a29;
  --accent-soft: #ff7d54;
  --navy: #2c2c44;
  --navy-deep: #232338;
  --beige: #fbf6ec;
  --gray-50: #f8f8f8;
  --gray-100: #f1f1f1;
  --gray-200: #e6e6e6;
  --gray-400: #b3b3b3;
  --gray-600: #6b6b6b;
  --text: #4d4d4d;
  --heading: #1a1a1a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 100%;
  --container-pad: clamp(20px, 4vw, 60px);
  --transition: 300ms ease;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { color: var(--heading); margin: 0 0 .5em; font-weight: 700; line-height: 1.25; }
[data-lucide] { width: 18px; height: 18px; stroke-width: 2; flex-shrink: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--wide { max-width: 100%; padding: 0; }

/* ---------- Scroll animations ---------- */
[data-anim] { opacity: 0; transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); will-change: transform, opacity; }
[data-anim="fade-up"]    { transform: translateY(28px); }
[data-anim="fade-down"]  { transform: translateY(-28px); }
[data-anim="fade-left"]  { transform: translateX(28px); }
[data-anim="fade-right"] { transform: translateX(-28px); }
[data-anim="zoom-in"]    { transform: scale(.94); }
[data-anim="rotate-in"]  { transform: rotate(-6deg) scale(.94); }
[data-anim].is-visible   { opacity: 1; transform: none; }

/* Global hover micro-interactions */
img { transition: transform 500ms ease; }
a, button { transition: color 200ms ease, background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease; }

/* Floating animation utility */
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(241,90,41,.6); }
  70%     { box-shadow: 0 0 0 14px rgba(241,90,41,0); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-25deg);
  transition: left 700ms ease;
}
.btn:hover::before { left: 130%; }
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(241,90,41,.25);
}
.btn--accent:hover { background: #d94a1f; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(241,90,41,.45); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 15px 32px; font-size: 15px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: #d6d6d6;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 28px; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d6d6d6;
  transition: color 250ms ease, transform 250ms ease;
}
.topbar__item:hover { color: var(--green-light); transform: translateY(-1px); }
.topbar__item:hover .topbar__icon { animation: pulse 1.2s ease-out 1; background: var(--accent); }
.topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.topbar__icon [data-lucide] { width: 12px; height: 12px; }
.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__social a { color: #d6d6d6; display: inline-flex; }
.topbar__social a:hover { color: var(--green-light); }
.topbar__social [data-lucide] { width: 15px; height: 15px; }
.topbar__cta {
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: .5px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: none;
  margin-left: 10px;
}
.topbar__cta:hover { background: var(--green-dark); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; transition: transform 400ms ease; }
.logo:hover { transform: scale(1.04); }
.logo__img { height: 56px; width: auto; display: block; transition: filter 400ms ease; }
.logo:hover .logo__img { filter: drop-shadow(0 4px 10px rgba(43,156,84,.35)); }
.logo--footer .logo__img { height: 60px; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 30px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  position: relative;
}
.nav__link [data-lucide] { width: 14px; height: 14px; }
.nav__link:hover, .nav__link.active { color: var(--green); }
.nav__link.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav__item--has-children { position: relative; }
.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.nav__item--has-children:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
}
.nav__submenu li a:hover { background: var(--gray-50); color: var(--green); }

.header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gray-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all var(--transition);
}
.icon-btn:hover { background: var(--green); color: #fff; transform: rotate(15deg); }
.icon-btn--menu { display: none; }

/* Search overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  padding: 16px 0;
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.search-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.search-form { display: flex; gap: 10px; align-items: center; }
.search-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 15px;
  border: 2px solid var(--gray-100);
  border-radius: 4px;
  outline: none;
  transition: border var(--transition);
}
.search-form input:focus { border-color: var(--green); }
.search-form button {
  width: 48px; height: 48px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search-form button:hover { background: var(--green-dark); }
.search-close { background: var(--gray-100) !important; color: #555 !important; }
.search-close:hover { background: var(--accent) !important; color: #fff !important; }

/* ---------- HERO (VIDEO BG) ---------- */
.hero {
  position: relative;
  width: 100%;
  height: clamp(520px, 78vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 900px;
}
.hero__sub {
  font-family: 'Sacramento', cursive;
  font-size: clamp(46px, 6vw, 72px);
  color: var(--accent-soft);
  margin: 0 0 4px;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
  rotate: -4deg; /* independent of [data-anim] transform so they compose cleanly */
  display: inline-block;
}
.hero__title {
  font-size: clamp(46px, 7vw, 88px);
  color: #fff;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
  line-height: 1.05;
}
.hero__caption {
  font-size: clamp(13px, 1.3vw, 16px);
  margin: 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* Hero arrows (decorative, matches original layout) */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 3;
  transition: background var(--transition), border-color var(--transition);
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero__arrow [data-lucide] { width: 22px; height: 22px; }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero__dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 2px solid rgba(255,255,255,.7);
}
.hero__dots button.is-active { background: var(--accent); border-color: var(--accent); }

/* ---------- Section base ---------- */
.section {
  padding: 50px 0;
}
.section + .section { padding-top: 0; }
.section__head {
  text-align: center;
  margin-bottom: 30px;
}
.section__script {
  font-family: 'Sacramento', cursive;
  color: var(--script);
  font-size: 32px;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.section__script--light { color: var(--green-light); }
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section__head .section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 700ms ease 200ms;
}
.section__head .section__title.is-visible::after,
.section__head .is-visible.section__title::after { transform: translateX(-50%) scaleX(1); }
.section__title--light { color: #fff; }
.section__title--left { text-align: left; }

/* ---------- Tours ---------- */
.tours { background: #fff; padding: 55px 0 40px; }
.tours__wrap {
  position: relative;
  padding: 0 20px;
}
.tours__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tours__track > .tour-card:nth-child(n+5) { display: none; }
.tour-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.tour-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.tour-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.tour-card:hover .tour-card__media img { transform: scale(1.08); }
.badge {
  position: absolute;
  top: 14px; left: 0;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  background: #3aa9c9;
  color: #fff;
  border-radius: 0 4px 4px 0;
}
.badge--featured { background: #3aa9c9; }
.tour-card__fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #777;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all var(--transition);
}
.tour-card__fav:hover { color: var(--accent); transform: scale(1.1); }
.tour-card__fav [data-lucide] { width: 16px; height: 16px; }
.tour-card__count {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 26px; height: 26px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(241,90,41,.35);
}
.tour-card__body { padding: 22px 20px 0; flex: 1; display: flex; flex-direction: column; }
.tour-card__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--heading);
  line-height: 1.35;
  min-height: 46px;
}
.tour-card__price {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
}
.tour-card__price strong { font-size: 16px; }
.tour-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-left: -20px;
  margin-right: -20px;
  border-top: 1px dashed var(--gray-200);
  background: var(--gray-50);
}
.tour-card__pax {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}
.tour-card__pax [data-lucide] { width: 14px; height: 14px; color: var(--green); }
.tour-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.tour-card__link:hover { gap: 10px; }
.tour-card__link [data-lucide] { width: 14px; height: 14px; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all var(--transition);
}
.slider-arrow:hover { background: var(--accent); color: #fff; }
.slider-arrow--prev { left: -8px; }
.slider-arrow--next { right: -8px; }

.tours__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.tours__dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--transition);
}
.tours__dots button.is-active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* ---------- About ---------- */
.about { background: #fff; padding: 40px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about__media { position: relative; }
.about__circle {
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about__circle img { width: 100%; height: 100%; object-fit: cover; }
.about__discount {
  position: absolute;
  top: 22%;
  right: 6%;
  text-align: center;
  font-family: 'Sacramento', cursive;
  line-height: .9;
  z-index: 2;
}
.about__discount-num {
  display: block;
  font-size: 60px;
  color: var(--accent);
  text-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.about__discount-text {
  display: block;
  font-size: 36px;
  color: #1a1a1a;
}
.about__talk {
  position: absolute;
  bottom: 18%;
  left: 4%;
  background: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  text-align: left;
  z-index: 2;
}
.about__talk-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  letter-spacing: .5px;
}
.about__talk-num {
  display: block;
  font-weight: 700;
  color: var(--heading);
  font-size: 16px;
  margin-top: 2px;
}
.about__plane {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 220px;
  pointer-events: none;
  opacity: .6;
}
.about__content .section__script,
.about__content .section__title { text-align: left; }
.about__text {
  margin: 20px 0 24px;
  color: var(--text);
}
.about__list {
  margin-bottom: 28px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 500;
  color: #444;
}
.about__list [data-lucide] { color: var(--green); width: 20px; height: 20px; }

/* ---------- Why Choose Us ---------- */
.why {
  background: var(--navy);
  color: #d8d8e0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: .25;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
  position: relative;
}
.why__media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
.why__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.why__accent {
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  width: 8px;
  height: 60%;
  background: var(--accent);
  border-radius: 4px;
}
.why__content {
  padding: clamp(40px, 5vw, 80px) var(--container-pad) clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px);
}
.why__content .section__script,
.why__content .section__title { text-align: left; }
.why__text {
  margin: 18px 0 36px;
  color: #b8b8c4;
  font-size: 14.5px;
  line-height: 1.8;
}
.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 36px;
}
.why-feature {
  display: flex;
  gap: 16px;
}
.why-feature__icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  background: rgba(43,156,84,.15);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
}
.why-feature__icon [data-lucide] { width: 26px; height: 26px; }
.why-feature h4 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 8px;
}
.why-feature p {
  margin: 0;
  font-size: 13px;
  color: #a8a8b4;
  line-height: 1.65;
}
.why-feature {
  padding: 6px;
  border-radius: 10px;
  transition: background 350ms ease, transform 350ms ease;
}
.why-feature:hover {
  background: rgba(255,255,255,0.04);
  transform: translateX(4px);
}
.why-feature:hover .why-feature__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}
.why-feature__icon { transition: all 350ms ease; }


/* ---------- Destinations ---------- */
.destinations { background: #fff; padding: 40px 0; }
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: clamp(260px, 24vw, 360px) clamp(260px, 24vw, 360px);
  gap: 14px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform 500ms ease, box-shadow 500ms ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.18); }
.dest-card:hover .dest-card__name { transform: translateX(8px); color: var(--accent-soft); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.65) 100%);
  transition: background var(--transition);
}
.dest-card:hover .dest-card__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}
.dest-card__name {
  position: relative;
  color: #fff;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
  transition: transform 350ms ease, color 350ms ease;
}
.dest-card--1 { grid-column: 1; grid-row: 1; }
.dest-card--2 { grid-column: 2; grid-row: 1 / span 2; }
.dest-card--3 { grid-column: 3; grid-row: 1; }
.dest-card--4 { grid-column: 1; grid-row: 2; }
.dest-card--5 { grid-column: 3; grid-row: 2; }

/* ---------- Companion ---------- */
.companion {
  position: relative;
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.companion__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(35,35,56,0.92), rgba(35,35,56,0.85));
}
.companion__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.companion__text .section__script,
.companion__text .section__title { text-align: left; }
.companion__text .section__title { font-size: clamp(32px, 4.5vw, 48px); }

.companion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.companion-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px 24px;
  text-align: center;
  border-radius: 4px;
  transition: all var(--transition);
}
.companion-card:hover {
  background: rgba(241,90,41,.12);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.companion-card [data-lucide] {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 14px;
  stroke-width: 1.4;
}
.companion-card h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; padding: 30px 0 50px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.testimonial-card {
  background: var(--beige);
  padding: 30px 26px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  margin-top: 70px;
  transition: transform 400ms ease, box-shadow 400ms ease, background 400ms ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.testimonial-card:hover .testimonial-card__photo { transform: scale(1.06) rotate(-3deg); }
.testimonial-card__photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: -95px auto 18px;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  transition: transform 400ms ease;
}
.testimonial-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #f5a623;
  margin-bottom: 14px;
}
.testimonial-card__stars [data-lucide] {
  width: 18px; height: 18px;
  fill: #f5a623;
}
.testimonial-card__text {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 20px;
}
.testimonial-card__author h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--heading);
}
.testimonial-card__author span {
  font-family: 'Sacramento', cursive;
  color: var(--green);
  font-size: 18px;
  letter-spacing: .5px;
}

/* ---------- Blog ---------- */
.blog { background: #fff; padding: 20px 0 50px; }
.blog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog__viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
}
.blog__viewall:hover { gap: 10px; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.08); }
.blog-card__date {
  position: absolute;
  bottom: 0; right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .5px;
  border-radius: 4px 4px 0 0;
}
.blog-card__date strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.blog-card__body { padding: 24px; }
.blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card__meta [data-lucide] { width: 12px; height: 12px; }
.blog-card__title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .5px;
}
.blog-card__link:hover { gap: 10px; }
.blog-card__link [data-lucide] { width: 13px; height: 13px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: #b8b8c4;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.2;
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding: 60px var(--container-pad) 40px;
  position: relative;
}
.footer__credit {
  color: var(--accent-soft);
  font-weight: 600;
  margin-left: 4px;
  transition: color var(--transition);
}
.footer__credit:hover { color: #fff; text-decoration: underline; }
.logo--footer { margin-bottom: 18px; }
.logo--footer .logo__name { color: var(--green-light); }
.logo--footer .logo__tag { color: #fff; }
.footer__about {
  margin: 0 0 24px;
  font-size: 14px;
  color: #a8a8b4;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
}
.footer__contact [data-lucide] { color: var(--green-light); width: 16px; height: 16px; }
.footer__title {
  color: #fff;
  font-size: 17px;
  margin: 0 0 22px;
  font-weight: 600;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14px;
  color: #b8b8c4;
  transition: all var(--transition);
}
.footer__links a:hover { color: var(--accent); padding-left: 6px; }

.footer__newsletter input {
  width: 100%;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 16px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border var(--transition);
}
.footer__newsletter input:focus { border-color: var(--accent); }
.footer__newsletter input::placeholder { color: #6a6a7a; }
.footer__newsletter button {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
  padding: 14px;
  border-radius: 4px;
  transition: background var(--transition);
}
.footer__newsletter button:hover { background: #d94a1f; }
.footer__terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  color: #a8a8b4;
}
.footer__terms [data-lucide] { color: var(--green-light); width: 14px; height: 14px; }

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.footer__top {
  width: 56px; height: 48px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms ease, transform 300ms ease;
  position: relative;
}
.footer__top::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: all 400ms ease;
}
.footer__top:hover { background: var(--green-dark); transform: translateY(-3px); }
.footer__top:hover::after { inset: -4px; opacity: 1; }
.footer__top:hover [data-lucide] { animation: floaty .8s ease-in-out infinite; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b8b8c4;
  transition: all 350ms ease;
}
.footer__socials a:hover { background: var(--accent); color: #fff; transform: translateY(-3px) rotate(8deg); }
.footer__socials [data-lucide] { width: 14px; height: 14px; }
.topbar__social a { transition: color 250ms ease, transform 250ms ease; }
.topbar__social a:hover { transform: translateY(-2px) scale(1.15); }
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: #8a8a98;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 50;
  transition: transform 300ms ease, box-shadow 300ms ease;
  animation: floaty 3s ease-in-out infinite;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 16px;
  border: 2px solid #25d366;
  opacity: .6;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(.9);  opacity: .8; }
  100% { transform: scale(1.25); opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-6deg); box-shadow: 0 14px 32px rgba(37,211,102,.55); animation: none; }
.whatsapp-float [data-lucide] { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .tours__track { grid-template-columns: repeat(3, 1fr); }
  .tours__track .tour-card:nth-child(n+4) { display: none; }
}

@media (max-width: 980px) {
  .topbar__contact { gap: 18px; }
  .header__inner { min-height: 70px; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    padding: 80px 24px 24px;
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 99;
  }
  .nav.is-open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
  .nav__link.active::after { display: none; }
  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 8px 16px;
    background: transparent;
    display: none;
  }
  .nav__item--has-children.is-open .nav__submenu { display: block; }
  .icon-btn--menu { display: inline-flex; }

  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__media { max-width: 460px; margin: 0 auto; }
  .about__content { text-align: center; }
  .about__content .section__script,
  .about__content .section__title { text-align: center; }
  .about__list li { justify-content: center; }

  .why__inner { grid-template-columns: 1fr; }
  .why__media { min-height: 380px; }
  .why__content { padding: 70px 28px; }

  .companion__inner { grid-template-columns: 1fr; }
  .companion__text { text-align: center; }
  .companion__text .section__script,
  .companion__text .section__title { text-align: center; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px var(--container-pad) 40px; }
}

@media (max-width: 720px) {
  .section { padding: 40px 0; }
  .tours__track { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .tours__track .tour-card:nth-child(n+3) { display: none; }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .dest-card--1 { grid-column: 1; grid-row: 1; }
  .dest-card--2 { grid-column: 2; grid-row: 1; }
  .dest-card--3 { grid-column: 1; grid-row: 2; }
  .dest-card--4 { grid-column: 2; grid-row: 2; }
  .dest-card--5 { grid-column: 1 / span 2; grid-row: 3; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 80px; }
  .blog__grid { grid-template-columns: 1fr; }
  .why__features { grid-template-columns: 1fr; gap: 22px; }
  .companion__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__contact { justify-content: center; }
  .hero__arrow { width: 42px; height: 42px; }
  .hero__arrow--prev { left: 10px; }
  .hero__arrow--next { right: 10px; }
}

@media (max-width: 480px) {
  .topbar__cta { display: none; }
  .topbar__contact { font-size: 12px; gap: 12px; }
  .tours__track { grid-template-columns: 1fr; }
  .tours__track .tour-card:nth-child(n+2) { display: none; }
}
