/* ================================================================
   WESTKATE SAFARIS — Homepage Styles  (index.css)
   Works with BOTH original HTML (inline styles, Tailwind) and
   refactored HTML (.reveal classes, semantic wrappers)
================================================================ */

/* ── RESET HELPERS ────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #faf7f2;
  color: #2d2416;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
/* .reveal system (refactored HTML) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.from-left {
  transform: translateX(-30px);
}
.reveal.from-right {
  transform: translateX(30px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

/* ── LOADER ───────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #2d2416;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #faf7f2;
  font-weight: 300;
}
.loader-logo span {
  color: #c8882a;
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: rgba(250, 247, 242, 0.15);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #c8882a;
  animation: loaderAnim 1.5s ease forwards;
}
@keyframes loaderAnim {
  to {
    left: 0;
  }
}

/* ── NAVBAR ───────────────────────────────────────────────────── */
/* nav,
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: #1a1409;
  box-shadow: 0 1px 0 rgba(250, 247, 242, 0.06);
  transition: all 0.4s ease;
}
nav.scrolled,
#navbar.scrolled {
  background: rgba(26, 20, 9, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
} */
/* .nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #faf7f2;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 2.2rem;
}
.nav-logo img {
  height: 100%;
  width: auto;
}
.nav-logo span {
  color: #c8882a;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a,
.nav-links li a {
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
} */
/* .nav-links a::after,
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c8882a;
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links li a:hover {
  color: #faf7f2;
}
.nav-links a:hover::after,
.nav-links li a:hover::after {
  width: 100%;
} */
/* .nav-cta,
.nav-links .nav-cta,
.nav-links .cta {
  background: #c8882a !important;
  color: #faf7f2 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 3px;
} */
/* .nav-cta::after,
.nav-links .nav-cta::after,
.nav-links .cta::after {
  display: none !important;
}
.nav-cta:hover,
.nav-links .nav-cta:hover,
.nav-links .cta:hover {
  background: #b07620 !important;
} */

/* Hamburger */
/* .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #faf7f2;
  transition: all 0.3s;
  z-index: 160;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
} */

/* Mobile menus — both original (.mobile-menu) and refactored (.mob-nav) */
/* .mobile-menu,
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 9, 0.98);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open,
.mob-nav.open {
  display: flex;
}
.mobile-menu a,
.mob-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: #faf7f2;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover,
.mob-nav a:hover {
  color: #c8882a;
}
.mob-cta {
  font-family: "DM Sans", sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #c8882a;
  padding: 0.9rem 2.5rem;
  border-radius: 3px;
} */

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #c8882a;
  color: #faf7f2;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: #b07620;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 136, 42, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #faf7f2;
  padding: 0.95rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(250, 247, 242, 0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: #c8882a;
  color: #c8882a;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #2d2416;
  color: #faf7f2;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-dark:hover {
  background: #4a3728;
  transform: translateY(-2px);
}

/* ── EYEBROW / SECTION LABELS ─────────────────────────────────── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c8882a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #c8882a;
  flex-shrink: 0;
}
.section-eyebrow[style*="center"],
.section-eyebrow.center {
  justify-content: center;
}
.section-eyebrow.center::before,
.section-eyebrow[style*="center"]::before {
  display: none;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 1.05;
  color: #2d2416;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 12, 5, 0.15) 0%,
    rgba(20, 12, 5, 0.45) 60%,
    rgba(20, 12, 5, 0.78) 100%
  );
}
.hero-slide-1 {
  background-image: url("../img/hero-1.jpg");
}
.hero-slide-2 {
  background-image: url("../img/curated/wildlife.jpg");
}
.hero-slide-3 {
  background-image: url("../img/hero-2.jpg");
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 5% 8%;
}
.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #faf7f2;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-tagline em {
  font-style: italic;
  color: #c8882a;
}
.hero-sub {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: rgba(250, 247, 242, 0.75);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.slide-dots {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: #c8882a;
  transform: scale(1.5);
}
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #c8882a, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── MARQUEE ──────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(45, 36, 22, 0.12);
  border-bottom: 1px solid rgba(45, 36, 22, 0.12);
  padding: 1.2rem 0;
  background: #faf7f2;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 28s linear infinite;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(45, 36, 22, 0.3);
  letter-spacing: 0.05em;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── STATS BAR ────────────────────────────────────────────────── */
.stats-bar {
  background: #2d2416;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #c8882a;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 0.5rem;
}

/* ── PACKAGES GRID ────────────────────────────────────────────── */
.pkg-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.pkg-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pkg-card:hover img {
  transform: scale(1.08);
}
.pkg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 12, 5, 0.9) 0%,
    rgba(20, 12, 5, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s;
}
.pkg-card:hover .pkg-card-overlay {
  background: linear-gradient(
    to top,
    rgba(20, 12, 5, 0.95) 0%,
    rgba(20, 12, 5, 0.3) 60%
  );
}
.pkg-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: #c8882a;
  color: #faf7f2;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.pkg-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #faf7f2;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.pkg-card-location {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pkg-card-desc {
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.pkg-card:hover .pkg-card-desc {
  max-height: 100px;
}

/* ── DESTINATIONS ─────────────────────────────────────────────── */
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.dest-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.dest-card:hover img {
  transform: scale(1.06);
}
.dest-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(20, 12, 5, 0.85) 0%,
    transparent 100%
  );
}

/* ── WHY US CARDS ─────────────────────────────────────────────── */
.why-card {
  padding: 2.5rem;
  border: 1px solid rgba(45, 36, 22, 0.1);
  border-radius: 4px;
  background: #faf7f2;
  transition: all 0.4s;
}
.why-card:hover {
  border-color: #c8882a;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(200, 136, 42, 0.1);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 136, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 5%;
}

/* ── FEATURE SPLIT ────────────────────────────────────────────── */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-content {
  background: #2d2416;
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── NEWSLETTER ───────────────────────────────────────────────── */
.newsletter-section {
  background: #2d2416;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200, 136, 42, 0.05);
  pointer-events: none;
}
.newsletter-input {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.2);
  color: #faf7f2;
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder {
  color: rgba(250, 247, 242, 0.35);
}
.newsletter-input:focus {
  border-color: #c8882a;
}

/* ── COOKIE BANNER ────────────────────────────────────────────── */
.cookie-banner,
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(26, 20, 9, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200, 136, 42, 0.3);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  padding: 1.4rem 5%;
}
.cookie-banner.show,
.cookie.show {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cookie-txt {
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}
.cookie-txt a {
  color: #c8882a;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.c-accept {
  padding: 0.58rem 1.3rem;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  background: #c8882a;
  color: #faf7f2;
  transition: all 0.3s;
}
.c-accept:hover {
  background: #b07620;
}
.c-decline {
  padding: 0.58rem 1.3rem;
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  background: transparent;
  border: 1px solid rgba(250, 247, 242, 0.18);
  color: rgba(250, 247, 242, 0.5);
  transition: all 0.3s;
}
.c-decline:hover {
  border-color: #c8882a;
  color: #c8882a;
}

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.wa-float,
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.wa-float:hover,
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.nl-consent {
  color: white;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer,
.footer {
  background: #1a1409;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 5% 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #faf7f2;
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo span {
  color: #c8882a;
}
.footer-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.38);
  max-width: 260px;
  margin-bottom: 1.8rem;
}
.footer-socs {
  display: flex;
  gap: 0.7rem;
}
.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, 0.4);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.3s;
}
.fsoc:hover {
  border-color: #c8882a;
  color: #c8882a;
}
.fcol-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #faf7f2;
  margin-bottom: 1.3rem;
  font-weight: 400;
}
.flinks {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}
.flinks a {
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.flinks a:hover {
  color: #c8882a;
}
.fclabel {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.22);
  margin-bottom: 0.2rem;
}
.fcval {
  font-size: 0.83rem;
  color: rgba(250, 247, 242, 0.5);
  display: block;
  margin-bottom: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s;
}
.fcval:hover {
  color: #c8882a;
}
footer a,
.footer a {
  color: rgba(250, 247, 242, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.85rem;
}
footer a:hover,
.footer a:hover {
  color: #c8882a;
}
.footer-divider,
.footer-line {
  height: 1px;
  margin: 0 5%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 136, 42, 0.2),
    transparent
  );
}
.footer-btm {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.fcopy {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.22);
}
.fbtm-links {
  display: flex;
  gap: 2rem;
}
.fbtm-links a {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.3);
}
.fbtm-links a:hover {
  color: #c8882a;
}

/* ================================================================
   RESPONSIVE
================================================================ */

/* ── Tablet landscape (≤1100px) ──────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 5% 2rem;
  }
}

/* ── Tablet portrait (≤860px) ────────────────────────────────── */
@media (max-width: 860px) {
  .feature-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feature-img {
    height: 380px;
  }
  .feature-content {
    padding: 4rem 5%;
  }

  .hero-content {
    padding: 0 5% 6%;
  }
}

/* ── Tablet / large mobile (≤768px) ─────────────────────────── */
@media (max-width: 768px) {
  /* Navbar */
  /* .nav-links,
  .nav-cta {
    display: none !important;
  } */
  .hamburger {
    display: flex !important;
  }

  /* Stats */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 5%;
  }

  /* Hero */
  .hero-tagline {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }
  .slide-dots {
    display: none;
  }
  .scroll-cue {
    display: none;
  }

  /* Packages grid — inline style uses repeat(3,1fr), override */
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Span-2 cards lose their span */
  [style*="grid-column: span 2"],
  [style*="grid-column:span 2"] {
    grid-column: span 1 !important;
  }

  /* Why Us 4-col */
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Newsletter 2-col */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-btm {
    flex-direction: column;
    text-align: center;
  }
  .fbtm-links {
    justify-content: center;
  }

  /* Sections padding */
  [style*="padding: 7rem 5%"] {
    padding: 5rem 5% !important;
  }
  [style*="padding: 6rem 5%"] {
    padding: 4.5rem 5% !important;
  }
}

/* ── Mobile (≤540px) ─────────────────────────────────────────── */
@media (max-width: 540px) {
  /* Packages + destinations → single column */
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-column: span 2"],
  [style*="grid-column:span 2"] {
    grid-column: span 1 !important;
  }

  /* Why us → 1 col */
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats 2×2 stays OK, go 1-col at very small */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero buttons stack */
  .hero-btns,
  [style*="display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem"] {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .hero-tagline {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .pkg-card img {
    height: 280px;
  }
  .dest-card img {
    height: 220px;
  }
  .feature-img {
    height: 260px;
  }

  /* Newsletter name row → 1 col */
  [style*="grid-template-columns: 1fr 1fr; gap: 1rem"],
  [style*="grid-template-columns:1fr 1fr;gap:1rem"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Very small (≤380px) ──────────────────────────────────────── */
@media (max-width: 380px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .hero-tagline {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }
}
