/* =============================================
   WILDER AFRICA — Complete Stylesheet
   ============================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── Brand colours ── */
  --gold: #c6a43f;
  --gold-dark: #a88a2e;
  --sunset: #e67e22;
  --sunset-dark: #d35400;
  --green: #1e4a3b;
  --green-light: #2a6b54;
  --ocean: #2a6f8d;
  --purple: #9b59b6;

  /* ── Text ── */
  --text: #1e2b27;
  --text-light: #4a5a54;
  --text-muted: #6b7d76;

  /* ── Backgrounds ── */
  --bg: #f9f7f4;
  --white: #fff;
  --cream: #fdf9f3;
  --dark: #132b24;

  /* ── Borders & Dividers ── */
  --border-light: #eee;
  --border-subtle: #f0f0f0;
  --border-form: #e8e8e8;

  /* ── Shadows ── */
  --shadow-sm: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
  --shadow-md: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 1.6rem 4.8rem rgba(0, 0, 0, 0.16);
  --shadow-sunset: 0 0.8rem 2rem -0.8rem rgba(230, 126, 34, 0.5);
  --shadow-gold: 0 0.6rem 1.6rem -0.6rem rgba(198, 164, 63, 0.5);
  --shadow-float: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);

  /* ── Overlays ── */
  --overlay-hero: linear-gradient(
    180deg,
    rgba(0, 20, 10, 0.35) 0%,
    rgba(0, 20, 10, 0.25) 50%,
    rgba(0, 20, 10, 0.5) 100%
  );
  --overlay-dest: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  --overlay-mobile: rgba(0, 0, 0, 0.5);
  --overlay-dark: rgba(0, 0, 0, 0.45);
  --overlay-dark-hover: rgba(0, 0, 0, 0.65);
  --overlay-search: rgba(0, 0, 0, 0.3);
  --overlay-footer-social: rgba(255, 255, 255, 0.08);
  --overlay-footer-bottom: rgba(255, 255, 255, 0.08);
  --overlay-glass-bg: rgba(255, 255, 255, 0.15);
  --overlay-glass-border: rgba(255, 255, 255, 0.2);
  --overlay-glass-border-subtle: rgba(255, 255, 255, 0.15);
  --overlay-glass-border-75: rgba(255, 255, 255, 0.75);
  --overlay-stats-border: rgba(255, 255, 255, 0.2);
  --overlay-why-icon-start: rgba(198, 164, 63, 0.1);
  --overlay-why-icon-end: rgba(198, 164, 63, 0.2);
  --overlay-ci-icon: rgba(198, 164, 63, 0.12);
  --overlay-tip-box: rgba(30, 74, 59, 0.06);
  --overlay-lang-bg: rgba(255, 255, 255, 0.12);
  --overlay-lang-border: rgba(255, 255, 255, 0.2);
  --overlay-lang-hover: rgba(255, 255, 255, 0.25);
  --overlay-mobile-lang-active: rgba(30, 74, 59, 0.08);

  /* ── UI Accent colours ── */
  --star: #f1c40f;
  --wishlist-liked: #e74c3c;
  --cta-check: #2ecc71;
  --footer-muted: #ccc;
  --lang-scrolled-border: #e0e0e0;
  --lang-scrolled-hover: #e8e8e8;
  --blog-cta-text: rgba(255, 255, 255, 0.9);

  /* ── Social brand colours ── */
  --whatsapp: #25d366;
  --whatsapp-dark: #20ba5c;
  --facebook: #1877f2;
  --twitter: #1da1f2;
  --linkedin: #0a66c2;

  /* ── Third-party brand colours ── */
  --google-blue: #4285f4;
  --tripadvisor-green: #00af87;
  --tripadvisor-light: #34e0a1;
  --trustpilot-green: #00b67a;
  --acc-red: #791113;
  --rev-star: #f5a623;

  /* ── CTA gradient ── */
  --cta-gradient: linear-gradient(
    rgba(30, 74, 59, 0.85),
    rgba(42, 111, 141, 0.85)
  );

  /* ── Misc ── */
  --radius: 1.6rem;
  --radius-lg: 2.8rem;
  --radius-full: 999.9rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Playfair Display", system-ui, -apple-system, sans-serif;
  --font-heading: "Space Grotesk", Georgia, serif;

  /* ── Component-specific overlays ── */
  --overlay-cta-note: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
  /* base = 62.5% of 16px → 10px per rem */
  font-size: 62.5%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}
ul,
ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
:focus-visible {
  outline: 0.3rem solid var(--gold);
  outline-offset: 0.2rem;
}
::selection {
  background: var(--gold);
  color: var(--text);
}

/* ---------- Headings ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}
.section-title,
.page-hero h1,
.hero h1,
.blog-post-header h1,
.about-text h2,
.form-card h3,
.related-posts h2,
.nl-inner h2,
.cta-section h2 {
  font-family: var(--font-heading);
}

/* ---------- Container ---------- */
.container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* ---------- Section ---------- */
.section {
  padding: 10rem 0;
}
.section-header {
  text-align: center;
  max-width: 68rem;
  margin: 0 auto 5.6rem;
}
.section-badge {
  display: inline-block;
  font-size: 1.44rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(3.2rem, 4vw, 4.48rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-light);
  font-size: 1.76rem;
}
.section-cta {
  text-align: center;
  margin-top: 5.6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 3.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--sunset);
  color: var(--white);
  box-shadow: var(--shadow-sunset);
}
.btn-primary:hover {
  background: var(--sunset-dark);
  transform: translateY(-0.2rem);
}
.btn-secondary {
  background: var(--overlay-dark);
  color: var(--white);
  border: 0.2rem solid var(--overlay-glass-border-75);
  backdrop-filter: blur(0.6rem);
}
.btn-secondary:hover {
  background: var(--overlay-dark-hover);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-0.2rem);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 0.2rem solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-0.2rem);
}
.btn-lg {
  padding: 1.8rem 4rem;
  font-size: 1.76rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 0;
  z-index: 1000;
  transition: all 0.35s var(--ease);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.navbar.scrolled {
  padding: 1rem 0;
}

.nav-wrap {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.logo {
  font-size: 2.72rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.logo .accent {
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  color: var(--text);
  font-weight: 500;
  font-size: 1.472rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.nav-links > li > a .caret {
  font-size: 0.96rem;
  transition: transform 0.3s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
}

/* Center-to-edge underline animation */
.nav-links > li > a {
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  width: 0;
  height: 0.2rem;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  left: 1.4rem;
  width: calc(100% - 2.8rem);
}

/* Desktop Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 22rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown:hover > a .caret {
  transform: rotate(180deg);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: var(--text) !important;
  text-shadow: none !important;
  font-weight: 500;
  font-size: 1.44rem;
}
.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--green) !important;
}
.dropdown-menu a i {
  width: 1.8rem;
  color: var(--gold);
  text-align: center;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.8rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1.44rem;
  white-space: nowrap;
}
.nav-phone:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 1rem 2.4rem;
  background: var(--gold);
  color: var(--text);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.44rem;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--gold-dark);
  transform: scale(1.03);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.8rem;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  width: 2.6rem;
  height: 0.3rem;
  background: var(--text);
  border-radius: 0.3rem;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.6rem);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.6rem);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-mobile);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 1050;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 38rem;
  height: 100vh;
  background: var(--white);
  padding: 2.4rem;
  overflow-y: auto;
  transition: right 0.4s var(--ease);
  z-index: 1060;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid var(--border-light);
  margin-bottom: 2rem;
}
.mobile-menu-head .logo {
  color: var(--text);
  text-shadow: none;
  font-size: 2.24rem;
}
.mobile-close {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  font-size: 1.92rem;
  color: var(--text);
}

/* Mobile Nav Links */
.mobile-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-weight: 600;
  font-size: 1.68rem;
  border-bottom: 0.1rem solid var(--border-subtle);
}
.mobile-nav > li > a.active {
  color: var(--green);
}
.mobile-nav > li > a i {
  transition: transform 0.3s;
}

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  padding-left: 1.6rem;
}
.mobile-dropdown.open .mobile-sub {
  max-height: 50rem;
}
.mobile-dropdown.open > a i {
  transform: rotate(180deg);
}
.mobile-sub a {
  display: block;
  padding: 1rem 0;
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.52rem;
}
.mobile-sub a:hover {
  color: var(--green);
}

.mobile-menu-foot {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid var(--border-light);
}
.mobile-menu-foot .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.mobile-social {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.mobile-social a {
  width: 4.2rem;
  height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  font-size: 1.76rem;
  color: var(--text);
  transition: all 0.3s;
}
.mobile-social a:hover {
  background: var(--green);
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 12rem 2.4rem 8rem;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slides img.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--overlay-hero);
}
.hero-inner {
  max-width: 90rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.4rem;
  background: var(--overlay-glass-bg);
  backdrop-filter: blur(1rem);
  border: 0.1rem solid var(--overlay-glass-border);
  border-radius: var(--radius-full);
  font-size: 1.408rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(3.84rem, 7vw, 6.72rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 0.4rem 2rem var(--overlay-mobile);
  margin-bottom: 2rem;
}
.hero p {
  font-size: clamp(1.68rem, 2.2vw, 2.08rem);
  max-width: 64rem;
  margin: 0 auto 3.2rem;
  opacity: 0.95;
  text-shadow: 0 0.2rem 0.8rem var(--overlay-mobile);
}
.hero-buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4.8rem;
}
.hero-stats {
  display: flex;
  gap: 4.8rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2.8rem;
  border-top: 0.1rem solid var(--overlay-stats-border);
}
.stat-num {
  display: block;
  font-size: 3.52rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 1.36rem;
  opacity: 0.9;
}

/* Search Panel */
.search-panel {
  margin-top: 4rem;
  margin-bottom: 4rem; /* Added to push the scroll-hint down without affecting hero padding */
  background: var(--overlay-search);
  backdrop-filter: blur(1.8rem);
  border: 0.1rem solid var(--overlay-glass-border-subtle);
  border-radius: 6rem;
  padding: 1.6rem 2.4rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.search-panel select,
.search-panel input {
  padding: 1.4rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--white);
  min-width: 14rem;
  font-size: 1.52rem;
}
.search-panel .search-btn {
  padding: 1.4rem 2.8rem;
  background: var(--gold);
  color: var(--text);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.52rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
}
.search-panel .search-btn:hover {
  background: var(--gold-dark);
}

.scroll-hint {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  opacity: 0.7;
  padding-bottom: 2rem;
  animation: floatY 2s ease-in-out infinite;
}
.scroll-hint span {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 0.6rem;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-0.8rem);
  }
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero .hero-overlay {
  z-index: -1;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2.4rem;
}
.page-hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.12rem);
  font-weight: 700;
  text-shadow: 0 0.4rem 1.5rem var(--overlay-mobile);
  margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.84rem;
  opacity: 0.95;
  max-width: 60rem;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1.6rem 0;
  font-size: 1.408rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--green);
  font-weight: 500;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  margin: 0 0.8rem;
}

/* ---------- Card Grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
  gap: 3rem;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}
.pkg-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: var(--shadow-lg);
}
.pkg-img {
  position: relative;
  height: 23rem;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.08);
}
.pkg-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 1.248rem;
  font-weight: 700;
  color: var(--white);
}
.pkg-badge.hot {
  background: var(--sunset);
}
.pkg-badge.beach {
  background: var(--ocean);
}
.pkg-badge.limited {
  background: var(--green);
}
.pkg-badge.new {
  background: var(--gold);
  color: var(--text);
}
.pkg-badge.value {
  background: var(--purple);
}
.pkg-wishlist {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 3.8rem;
  height: 3.8rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.pkg-wishlist:hover,
.pkg-wishlist.liked {
  background: var(--wishlist-liked);
  color: var(--white);
}
.pkg-body {
  padding: 2.2rem;
}
.pkg-loc {
  font-size: 1.312rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.pkg-loc i {
  color: var(--sunset);
}
.pkg-title {
  font-size: 2.08rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.pkg-desc {
  color: var(--text-light);
  font-size: 1.472rem;
  margin-bottom: 1.4rem;
}
.pkg-features {
  display: flex;
  gap: 1.4rem;
  font-size: 1.312rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 0.1rem solid var(--border-subtle);
}
.pkg-features span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pkg-features i {
  color: var(--green);
}
.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-price-from {
  font-size: 1.28rem;
  color: var(--text-muted);
}
.pkg-price {
  font-size: 2.24rem;
  font-weight: 700;
  color: var(--green);
}
.pkg-price-per {
  font-size: 1.28rem;
  color: var(--text-muted);
}
.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.44rem;
  margin-right: 0.4rem;
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 1rem 2.4rem;
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.44rem;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: var(--white);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
  gap: 3rem;
}
.why-card {
  background: var(--white);
  padding: 3.6rem 2.8rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 2rem;
  background: linear-gradient(
    135deg,
    var(--overlay-why-icon-start),
    var(--overlay-why-icon-end)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.88rem;
  color: var(--gold);
}
.why-card h3 {
  font-size: 1.92rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.why-card p {
  color: var(--text-light);
  font-size: 1.472rem;
}

/* ---------- Destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 21rem;
  gap: 1.8rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dest-card:hover img {
  transform: scale(1.1);
}
.dest-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 2.4rem;
  color: var(--white);
  text-align: right;
}
.dest-info h3 {
  font-size: 2.24rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-weight: 700;
  text-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.5);
}
.dest-info p.dest-pkg-count {
  font-size: 1.36rem;
  opacity: 0.9;
  font-weight: 500;
}
.dest-card.span2c .dest-info {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
.dest-card.span2c .dest-info h3 {
  margin-bottom: 0;
  font-size: 2.6rem;
}
.dest-card.span2c .dest-info p.dest-pkg-count {
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}
.dest-card.span2c {
  grid-column: span 2;
}
.dest-card.span2r {
  grid-row: span 2;
}

/* ---------- Testimonials ---------- */
.test-track {
  display: flex;
  gap: 2.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg);
}
.test-card {
  flex: 0 0 34rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
}
.test-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.test-avatar {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  object-fit: cover;
}
.test-name {
  font-weight: 700;
  font-size: 1.6rem;
}
.test-from {
  font-size: 1.312rem;
  color: var(--text-muted);
}
.test-stars {
  color: var(--star);
  margin-bottom: 1.4rem;
  font-size: 1.44rem;
}
.test-card blockquote {
  font-size: 1.52rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.test-trip {
  font-size: 1.312rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.test-trip i {
  color: var(--sunset);
}

.accreditations-section {
  margin-top: 6rem;
  text-align: center;
  border-top: 0.1rem solid var(--border-light);
  padding-top: 6rem;
}
.acc-header h2 {
  font-size: 2.24rem;
  font-weight: 700;
  color: var(--acc-red);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.05rem;
}
.acc-divider {
  width: 6rem;
  height: 0.2rem;
  background-color: var(--acc-red);
  margin: 0 auto 2.4rem;
}
.acc-header p {
  color: var(--text-light);
  font-size: 1.6rem;
  margin-bottom: 4rem;
}
.acc-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  flex-wrap: wrap;
}
.acc-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text);
  min-width: 12rem;
}
.acc-logo img {
  max-width: 15rem;
  max-height: 8rem;
  object-fit: contain;
  opacity: 0.9;
  mix-blend-mode: multiply;
  transition: opacity 0.3s ease;
}
.acc-logo img:hover {
  opacity: 1;
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  background:
    var(--cta-gradient),
    url("../images/wildlife-section-image-1.webp")
      center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 16rem 3.84rem; /* 10rem -> 16rem, 2.4rem -> 3.84rem */
}
.cta-section h2 {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 700;
  margin-bottom: 2.56rem; /* 1.6rem */
}
.cta-section > p,
.cta-inner > p {
  font-size: 1.84rem;
  max-width: 96rem; /* 60rem */
  margin: 0 auto 5.12rem; /* 3.2rem */
  opacity: 1; /* keep fully visible without hover */
}

/* ensure CTA area remains visible at all times */
.cta-section,
.cta-section h2,
.cta-section .cta-buttons,
.cta-section:hover,
.cta-section * {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}
.cta-features {
  display: flex;
  gap: 4.48rem; /* 2.8rem */
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5.12rem; /* 3.2rem */
}
.cta-feat {
  display: flex;
  align-items: center;
  gap: 1.28rem; /* 0.8rem */
  font-weight: 600;
  font-size: 1.52rem;
}
.cta-feat i {
  color: var(--cta-check);
}
.cta-buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
  gap: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-md);
}
.blog-thumb {
  position: relative;
  height: 20rem;
  overflow: hidden;
  display: block;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}
.blog-cat {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.5rem 1.4rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 700;
}
.blog-body {
  padding: 2.2rem;
}
.blog-meta {
  display: flex;
  gap: 1.6rem;
  font-size: 1.312rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.blog-meta i {
  margin-right: 0.4rem;
}
.blog-body h3 {
  font-size: 1.92rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.blog-body h3 a:hover {
  color: var(--green);
}
.blog-body > p {
  color: var(--text-light);
  font-size: 1.472rem;
  margin-bottom: 1.4rem;
}
.read-more {
  font-weight: 600;
  color: var(--green);
  font-size: 1.44rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.read-more:hover {
  color: var(--gold);
}

.cta-note-wrapper {
  margin-top: 3.2rem;
  display: flex;
  justify-content: center;
}
.cta-note {
  font-size: 1.52rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--overlay-cta-note);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
}

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: var(--green);
  color: var(--white);
  padding: 6rem 0;
}
.nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.nl-inner h2 {
  font-size: 2.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.nl-inner > div:first-child p {
  opacity: 0.85;
  font-size: 1.6rem;
}
.nl-form {
  display: flex;
  gap: 1rem;
  flex: 1;
  max-width: 48rem;
}
.nl-form input {
  flex: 1;
  padding: 1.4rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.6rem;
}
.nl-form button {
  padding: 1.4rem 2.8rem;
  background: var(--gold);
  color: var(--text);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.52rem;
  white-space: nowrap;
  transition: all 0.3s;
}
.nl-form button:hover {
  background: var(--gold-dark);
}

/* ---------- About Intro ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: center;
}
.about-intro img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-text h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.6rem;
}
.about-text p {
  color: var(--text-light);
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  gap: 3rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-md);
}
.team-card img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.6rem;
  border: 0.3rem solid var(--gold);
}
.team-card h4 {
  font-size: 1.76rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.team-card span {
  font-size: 1.36rem;
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}
.ci-item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}
.ci-icon {
  width: 5rem;
  height: 5rem;
  background: var(--overlay-ci-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.92rem;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-item h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.ci-item p,
.ci-item a {
  font-size: 1.472rem;
  color: var(--text-light);
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.6rem;
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-size: 2.24rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form-group {
  margin-bottom: 1.8rem;
}
.form-group label {
  display: block;
  font-size: 1.408rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 0.2rem solid var(--border-form);
  border-radius: var(--radius);
  font-size: 1.52rem;
  transition: border-color 0.3s;
  background: var(--bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 12rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--footer-muted);
  padding-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand .logo {
  color: var(--white);
  text-shadow: none;
  font-size: 2.56rem;
  margin-bottom: 1.4rem;
  
}
.footer-brand > p {
  font-size: 1.44rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--overlay-footer-social);
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--footer-muted);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--text);
}
.footer h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.footer ul li {
  margin-bottom: 1rem;
}
.footer ul a {
  font-size: 1.44rem;
  opacity: 0.8;
  transition: all 0.3s;
}
.footer ul a:hover {
  opacity: 1;
  color: var(--gold);
}
.footer-bottom {
  margin-top: 4.8rem;
  padding: 2.4rem 0;
  border-top: 0.1rem solid var(--overlay-footer-bottom);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 1.36rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  opacity: 0.7;
}
.footer-legal a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ---------- Floating ---------- */
.wa-float {
  position: fixed;
  bottom: 2.8rem;
  left: 2.8rem;
  width: 5.8rem;
  height: 5.8rem;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.88rem;
  box-shadow: var(--shadow-float);
  z-index: 900;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.btt {
  position: fixed;
  bottom: 2.8rem;
  right: 2.8rem;
  width: 4.8rem;
  height: 4.8rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.08rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}
.btt.show {
  opacity: 1;
  visibility: visible;
}
.side-quote {
  position: fixed;
  top: 42%;
  right: -0.4rem;
  background: var(--sunset);
  color: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: 4rem 0 0 4rem;
  font-weight: 700;
  font-size: 1.28rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  cursor: pointer;
  z-index: 900;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.side-quote:hover {
  right: 0;
  padding-right: 2.2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 85em) {
  .nav-wrap {
    padding: 0 2.4rem;
    gap: 1.2rem;
  }
  .nav-links {
    gap: 0; /* Remove gap completely on small laptops, links already have padding */
  }
  .nav-links > li > a {
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
  }
  .logo {
    font-size: 2.3rem;
  }
}

@media (max-width: 75em) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-wrap {
    padding: 0 2rem;
    gap: 1.2rem;
  }
  .logo {
    font-size: 2.2rem;
  }
  .nav-right {
    gap: 1.2rem;
  }
  .nav-phone {
    font-size: 1.36rem;
  }
  .nav-cta {
    padding: 0.8rem 1.8rem;
    font-size: 1.36rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 47.9375em) {
  .nav-right .nav-phone {
    display: none;
  }
  .nav-wrap {
    padding: 0 1.6rem;
    gap: 1rem;
  }
  .logo {
    font-size: 1.8rem;
  }
  .nav-cta {
    padding: 0.8rem 1.6rem;
    font-size: 1.28rem;
  }
}
@media (max-width: 56.25em) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 18rem;
  }
  .dest-card.span2c {
    grid-column: span 2;
  }
  .contact-grid,
  .about-intro {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 3.2rem;
  }
}
@media (max-width: 40em) {
  .section {
    padding: 6.4rem 0;
  }
  .card-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 20rem;
  }
  .dest-card.span2c,
  .dest-card.span2r {
    grid-column: span 1;
    grid-row: span 1;
  }
  .dest-card.span2c .dest-info {
    flex-direction: column;
    align-items: flex-end;
  }
  .search-panel {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 2rem;
  }
  .search-panel select,
  .search-panel input,
  .search-panel .search-btn {
    width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .nl-inner {
    flex-direction: column;
    text-align: center;
  }
  .nl-form {
    flex-direction: column;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-features {
    flex-direction: column;
    align-items: center;
  }
}
/* =============================================
   BLOG POST PAGE STYLES
   ============================================= */
.blog-post-section {
  padding: 6rem 0 10rem;
}

.blog-post-container {
  max-width: 82rem;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 4rem;
}

.blog-post-header .blog-cat {
  position: static;
  display: inline-block;
  margin-bottom: 1.6rem;
}

.blog-post-header h1 {
  font-size: clamp(2.88rem, 4vw, 4.16rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 1.6rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  font-size: 1.44rem;
  color: var(--text-muted);
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid var(--border-light);
}

.blog-post-meta i {
  margin-right: 0.6rem;
  color: var(--gold);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info img {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info span {
  font-weight: 600;
  color: var(--text);
}

.blog-featured-img {
  width: 100%;
  height: 42rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
}

.blog-post-body h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  margin: 3.6rem 0 1.6rem;
}

.blog-post-body h3 {
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.8rem 0 1.2rem;
}

.blog-post-body p {
  color: var(--text-light);
  font-size: 1.68rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 1.6rem 0 2.4rem 2.4rem;
  color: var(--text-light);
  font-size: 1.68rem;
  line-height: 1.8;
}

.blog-post-body ul li,
.blog-post-body ol li {
  margin-bottom: 0.8rem;
  list-style: disc;
}

.blog-post-body ol li {
  list-style: decimal;
}

.blog-post-body blockquote {
  margin: 2.8rem 0;
  padding: 2.4rem 2.8rem;
  background: var(--cream);
  border-left: 0.4rem solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.76rem;
  line-height: 1.7;
}

.blog-post-body .tip-box {
  margin: 2.8rem 0;
  padding: 2.4rem 2.8rem;
  background: var(--overlay-tip-box);
  border-left: 0.4rem solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.blog-post-body .tip-box h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.blog-post-body .tip-box p {
  margin-bottom: 0;
  font-size: 1.52rem;
}

.blog-inline-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 2.4rem 0;
  box-shadow: var(--shadow-sm);
}

.blog-img-caption {
  text-align: center;
  font-size: 1.36rem;
  color: var(--text-muted);
  margin-top: -1.6rem;
  margin-bottom: 2.4rem;
  font-style: italic;
}

/* Share & Tags */
.blog-post-footer {
  margin-top: 4.8rem;
  padding-top: 3.2rem;
  border-top: 0.1rem solid var(--border-light);
}

.blog-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.blog-tag {
  padding: 0.6rem 1.6rem;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 1.312rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s;
}

.blog-tag:hover {
  background: var(--green);
  color: var(--white);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.blog-share span {
  font-weight: 600;
  font-size: 1.44rem;
  color: var(--text);
}

.share-btn {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--white);
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn.facebook {
  background: var(--facebook);
}
.share-btn.twitter {
  background: var(--twitter);
}
.share-btn.whatsapp {
  background: var(--whatsapp);
}
.share-btn.linkedin {
  background: var(--linkedin);
}

/* Related Posts */
.related-posts {
  margin-top: 6rem;
}

.related-posts h2 {
  font-size: 2.56rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 3.2rem;
  text-align: center;
}

/* Blog CTA Box */
.blog-cta-box {
  margin: 4rem 0;
  padding: 3.6rem;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
}

.blog-cta-box h3 {
  color: var(--white);
  font-size: 2.24rem;
  margin-bottom: 1.2rem;
}

.blog-cta-box p {
  color: var(--blog-cta-text);
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: var(--overlay-lang-bg);
  backdrop-filter: blur(0.6rem);
  border: 0.1rem solid var(--overlay-lang-border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-weight: 600;
  font-size: 1.36rem;
  cursor: pointer;
  transition: all 0.3s;
}

.navbar.scrolled .lang-btn {
  background: var(--bg);
  border-color: var(--lang-scrolled-border);
  color: var(--text);
}

.lang-btn:hover {
  background: var(--overlay-lang-hover);
}

.navbar.scrolled .lang-btn:hover {
  background: var(--lang-scrolled-hover);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  min-width: 16rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: all 0.3s var(--ease);
  z-index: 200;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.8rem;
  color: var(--text) !important;
  font-weight: 500;
  font-size: 1.44rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.lang-option:hover {
  background: var(--bg);
}

.lang-option.active {
  color: var(--green) !important;
  font-weight: 700;
}

.lang-option .lang-flag {
  font-size: 1.92rem;
}

/* Mobile language switcher */
.mobile-lang {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 0.1rem solid var(--border-light);
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 1.312rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  border: 0.2rem solid transparent;
}

.mobile-lang-btn.active {
  border-color: var(--green);
  background: var(--overlay-mobile-lang-active);
  color: var(--green);
}

/* Translation loading indicator */
.translating {
  opacity: 0.6;
  transition: opacity 0.3s;
}

.translating.done {
  opacity: 1;
}

/* =============================================
   REVIEWS BY SOURCE — Tabbed Section
   ============================================= */

/* Platform Summary Bar */
.review-platform-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.4rem 4rem;
  margin: 0 auto 3.6rem;
  max-width: 68rem;
  flex-wrap: wrap;
}
.rpb-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.rpb-icon {
  font-size: 3.84rem;
  line-height: 1;
}
.rpb-icon.google {
  color: var(--google-blue);
}
.rpb-icon.tripadvisor {
  color: var(--tripadvisor-light);
}
.trustpilot-icon {
  font-size: 3.52rem;
  font-weight: 900;
  color: var(--trustpilot-green);
  line-height: 1;
  display: inline-block;
}
.rpb-name {
  font-weight: 700;
  font-size: 1.52rem;
  color: var(--text);
}
.rpb-stars {
  font-size: 1.312rem;
  color: var(--text-muted);
}
.rpb-stars span {
  font-weight: 700;
  color: var(--text);
}
.rpb-divider {
  width: 0.1rem;
  height: 4.4rem;
  background: var(--border-light);
  margin: 0 0.8rem;
}

/* Tab Buttons */
.review-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.6rem;
  flex-wrap: wrap;
}
.rev-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  border-radius: var(--radius-full);
  border: 0.2rem solid var(--border-light);
  background: var(--white);
  font-size: 1.52rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.rev-tab:hover {
  border-color: var(--green);
  color: var(--green);
}
.rev-tab.active[data-tab="google"] {
  background: var(--google-blue);
  border-color: var(--google-blue);
  color: var(--white);
}
.rev-tab.active[data-tab="tripadvisor"] {
  background: var(--tripadvisor-green);
  border-color: var(--tripadvisor-green);
  color: var(--white);
}
.rev-tab.active[data-tab="trustpilot"] {
  background: var(--trustpilot-green);
  border-color: var(--trustpilot-green);
  color: var(--white);
}
.tp-star-sm {
  font-size: 1.76rem;
  font-weight: 900;
}

/* Review Panels */
.rev-panel {
  display: none;
  animation: revFadeIn 0.35s var(--ease);
}
.rev-panel.active {
  display: block;
}
@keyframes revFadeIn {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Review Grid */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* Review Card */
.rev-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.6rem 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: all 0.3s var(--ease);
  border: 0.1rem solid transparent;
}
.rev-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-md);
}

/* Source Badge */
.rev-source {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.248rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  width: fit-content;
}
.google-badge {
  background: rgba(66, 133, 244, 0.1);
  color: var(--google-blue);
}
.ta-badge {
  background: rgba(0, 175, 135, 0.1);
  color: var(--tripadvisor-green);
}
.tp-badge {
  background: rgba(0, 182, 122, 0.1);
  color: var(--trustpilot-green);
}

/* Review Head */
.rev-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.rev-head img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.2rem solid var(--gold);
  flex-shrink: 0;
}
.rev-name {
  font-weight: 700;
  font-size: 1.52rem;
}
.rev-loc {
  font-size: 1.28rem;
  color: var(--text-muted);
}

/* Stars */
.rev-stars {
  color: var(--rev-star);
  font-size: 1.68rem;
  letter-spacing: 0.2rem;
}

/* Quote */
.rev-card blockquote {
  font-size: 1.472rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
}

/* Trip label */
.rev-trip {
  font-size: 1.248rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.rev-trip i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 56.25em) {
  .rev-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-platform-bar {
    gap: 1.6rem;
  }
  .rpb-divider {
    display: none;
  }
}
@media (max-width: 37.5em) {
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .review-platform-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .rev-tab {
    padding: 1rem 2rem;
    font-size: 1.408rem;
  }
}

/* =============================================
   MAP SECTION — Contact Page
   ============================================= */

.map-section {
  padding: 8rem 0 0;
  background: var(--bg);
}

.map-header {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto 4.8rem;
  padding: 0 2.4rem;
}

/* Map container */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 52rem;
}

.google-map-embed {
  width: 100%;
  height: 100%;
  z-index: 1;
  border: none;
  display: block;
}

/* Info card overlaid on map */
.map-card {
  position: absolute;
  top: 3.2rem;
  right: 4rem;
  z-index: 400;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.6rem;
  width: 27rem;
  box-shadow: var(--shadow-lg);
  border-top: 0.4rem solid var(--gold);
}

.map-card-icon {
  width: 5.2rem;
  height: 5.2rem;
  background: linear-gradient(
    135deg,
    var(--overlay-why-icon-start),
    var(--overlay-why-icon-end)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.24rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.map-card h4 {
  font-size: 1.84rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.4rem;
}

.map-card p {
  font-size: 1.408rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.map-card p i {
  color: var(--gold);
  width: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.map-card a:not(.btn) {
  color: var(--green);
  font-weight: 500;
}

.map-card a:not(.btn):hover {
  color: var(--gold);
}

/* Custom marker pin */
.map-marker-pin {
  width: 4.4rem;
  height: 4.4rem;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.4rem 1.4rem rgba(198, 164, 63, 0.5);
  border: 0.3rem solid var(--white);
}

.map-marker-pin i {
  transform: rotate(45deg);
  color: var(--text);
  font-size: 1.6rem;
}

/* Leaflet popup */
.map-popup {
  font-family: var(--font);
  font-size: 1.44rem;
  line-height: 1.6;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
  padding: 0.4rem !important;
}

.leaflet-popup-tip-container {
  margin-top: -0.1rem;
}

/* Responsive */
@media (max-width: 48em) {
  .map-wrapper {
    height: 42rem;
  }
  .map-card {
    position: static;
    width: 100%;
    border-radius: 0;
    border-top: 0.4rem solid var(--gold);
    box-shadow: var(--shadow-sm);
    margin: 0;
    padding: 2.4rem;
  }
}

/* --- FontAwesome Fixes --- */
.fas, .far, .fa, .fa-solid, .fa-regular {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome' !important;
  font-weight: 900;
}
.fab, .fa-brands {
  font-family: 'Font Awesome 6 Brands', 'Font Awesome 5 Brands' !important;
  font-weight: 400;
}
