/* =========================================================
   WILDBALKANS — main.css
   ========================================================= */

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

:root {
  --black:   #0D0D0D;
  --white:   #FFFFFF;
  --off:     #F7F6F3;
  --gray:    #E8E6E0;
  --mid:     #9A9488;
  --green:   #1E3A1F;
  --green2:  #2D5A30;
  --accent:  #4A7C59;
  --warm:    #C8B89A;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1280px;
  --gutter:      clamp(20px, 4vw, 60px);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Typography ------------------------------------------ */
h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; }
h3 { font-family: var(--font-head); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 600; line-height: 1.2; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.3; }
p  { font-size: clamp(0.95rem, 1.2vw, 1.05rem); line-height: 1.7; color: #444; }

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--green); transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-ghost {
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* --- Nav ------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-bottom-color: transparent;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-links .btn {
  padding: 9px 20px;
  font-size: 0.8rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
}

/* --- Hero ------------------------------------------------ */
.hero {
  padding: 10px 12px 12px;
  background: var(--white);
}

.hero-img-wrap {
  position: relative;
  height: calc(100svh - 57px - 22px);
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2e1a 0%, #3d6b40 100%);
}

/* gradient overlay inside image */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg-img.loaded { opacity: 1; }

/* content sits above gradient */
.hero-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 52px);
}

.hero h1 {
  color: var(--white);
  max-width: 680px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* bottom row: stats left + badges right */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

/* --- Section: Discover ----------------------------------- */
.discover {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.discover-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.discover-text .label { margin-bottom: 16px; }
.discover-text h2 { margin-bottom: 20px; }
.discover-text p { margin-bottom: 30px; }

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 420px;
}
.discover-img {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray);
  position: relative;
}
.discover-img:first-child { grid-row: span 2; }
.discover-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.discover-img:hover img { transform: scale(1.04); }

/* --- Section: Tours -------------------------------------- */
.tours-section {
  padding: var(--section-pad) 0;
  background: var(--off);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.section-header h2 { max-width: 480px; }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.tour-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gray);
}
.tour-card-img img { transition: transform 0.6s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

.tour-card-body { padding: 18px 20px 22px; }
.tour-card-body h4 { margin-bottom: 4px; }
.tour-card-body .meta {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
}
.tour-card-body .meta span::before { content: ''; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}
.tour-price span {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--mid);
}

/* --- Section: About Mission ------------------------------ */
.mission {
  padding: var(--section-pad) 0;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  height: 480px;
}
.mission-img { border-radius: var(--r-md); overflow: hidden; background: var(--gray); }
.mission-img:first-child { grid-column: span 2; height: 280px; }
.mission-img img { transition: transform 0.6s ease; }
.mission-img:hover img { transform: scale(1.04); }

.mission-text blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 28px;
  font-style: italic;
}

.mission-text p { margin-bottom: 30px; }

/* --- Section: Video Feature ------------------------------ */
.video-section {
  padding: var(--section-pad) 0;
  background: var(--off);
}

.video-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--green);
  cursor: pointer;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2e1a 0%, #3d6b40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  color: white;
  font-size: 1.5rem;
}
.video-wrap:hover .video-play-btn {
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}

.video-stat {
  position: absolute;
  bottom: 32px;
  right: 40px;
  color: white;
  text-align: right;
}
.video-stat .num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
}
.video-stat p { color: rgba(255,255,255,0.8); font-size: 0.85rem; max-width: 200px; text-align: right; margin-top: 8px; }

.video-caption {
  padding: 28px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.video-caption h3 { max-width: 500px; }

/* --- Section: Tips --------------------------------------- */
.tips-section {
  padding: var(--section-pad) 0;
}

.tips-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tips-visual {
  position: relative;
  height: 480px;
}

.tips-main-img {
  width: 70%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--gray);
}

.tips-card {
  position: absolute;
  bottom: 24px;
  right: 0;
  width: 55%;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.tips-card h4 { margin-bottom: 6px; }
.tips-card p { font-size: 0.82rem; line-height: 1.5; }

.tips-list { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.tips-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tips-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--off);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.tips-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.tips-item p { font-size: 0.82rem; }

/* --- Section: Testimonials ------------------------------- */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--off);
}

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.rating-big {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}
.rating-stars { display: flex; gap: 4px; margin: 8px 0; }
.star { color: #F5A623; font-size: 1rem; }
.rating-meta { font-size: 0.82rem; color: var(--mid); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
}
.review-card .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray);
  overflow: hidden;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.85rem; font-weight: 600; }
.reviewer-date { font-size: 0.75rem; color: var(--mid); }

/* --- Section: Guides ------------------------------------- */
.guides {
  padding: var(--section-pad) 0;
}

.guides-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.guides-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 400px;
}
.guide-img { border-radius: var(--r-md); overflow: hidden; background: var(--gray); }
.guide-img:first-child { grid-row: span 2; }
.guide-img img { transition: transform 0.6s; }
.guide-img:hover img { transform: scale(1.04); }

.guide-card {
  background: var(--off);
  border-radius: var(--r-md);
  padding: 24px;
  margin-top: 28px;
}
.guide-card .label { margin-bottom: 10px; }
.guide-card p { font-size: 0.88rem; line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.guide-name { font-size: 0.85rem; font-weight: 600; }
.guide-role { font-size: 0.78rem; color: var(--mid); }

.guides-stats {
  display: flex;
  gap: 28px;
  margin: 24px 0;
}
.guide-stat h3 { font-family: var(--font-head); font-size: 2rem; }
.guide-stat p { font-size: 0.8rem; color: var(--mid); }

/* --- Section: Blog --------------------------------------- */
.blog-section {
  padding: var(--section-pad) 0;
  background: var(--off);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.blog-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--gray);
  position: relative;
}
.blog-card-img img { transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-card-body { padding: 22px 24px 26px; }
.blog-card-date { font-size: 0.75rem; color: var(--mid); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { font-size: 0.85rem; line-height: 1.6; }

.blog-card-body .btn-ghost { margin-top: 18px; font-size: 0.82rem; }

/* --- Section: FAQ ---------------------------------------- */
.faq-section {
  padding: var(--section-pad) 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--gray);
  padding: 22px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-question h4 { font-size: 0.95rem; font-weight: 600; }

.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  color: var(--black);
}
.faq-item.open .faq-toggle { background: var(--black); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 14px; }
.faq-answer p { font-size: 0.9rem; line-height: 1.7; color: #555; }

/* --- Section: CTA ---------------------------------------- */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--off);
}

.cta-inner {
  background: var(--green);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.cta-text {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.7); margin: 20px 0 32px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--off); }

.cta-visual {
  position: relative;
  background: linear-gradient(135deg, #2d5a30, #4a7c59);
  overflow: hidden;
}
.cta-visual img { object-fit: cover; width: 100%; height: 100%; opacity: 0.6; }

/* --- Footer ---------------------------------------------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px var(--gutter) 36px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 240px; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* --- Animations ------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* =========================================================
   MEGA MENU — desktop
   ========================================================= */
.nav-item { position: relative; list-style: none; }

.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: default;
}
.nav-chevron {
  display: block;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.55;
}
.has-mega:hover .nav-chevron,
.has-mega.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Invisible hover bridge so menu stays open when moving from trigger to panel */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -40px;
  right: -40px;
  height: 18px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 700px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 56px rgba(0,0,0,.13), 0 0 0 1px rgba(0,0,0,.06);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
}
.has-mega:hover .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Arrow caret */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px; height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-top: 1px solid rgba(0,0,0,.07);
  border-left: 1px solid rgba(0,0,0,.07);
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 180px;
  gap: 20px;
}
.mega-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}
.mega-tour-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  margin-bottom: 2px;
  transition: background 0.12s;
}
.mega-tour-card:hover { background: var(--off); }
.mega-tour-img {
  width: 50px; height: 38px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray);
}
.mega-tour-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega-tour-name {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.mega-tour-meta {
  display: block;
  font-size: 0.73rem;
  color: var(--mid);
  margin-top: 1px;
}
.mega-view-all {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  margin-top: 8px;
  padding: 4px 8px;
  transition: color 0.15s;
}
.mega-view-all:hover { color: var(--black); }

.mega-promo {
  background: var(--off);
  border-radius: var(--r-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}
.mega-promo-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 8px;
}
.mega-promo p {
  font-size: 0.81rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 14px;
  flex: 1;
}
.mega-promo .btn {
  font-size: 0.8rem;
  padding: 9px 14px;
  text-align: center;
  width: 100%;
}
.mega-all-link {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--mid);
  margin-top: 9px;
  transition: color 0.15s;
}
.mega-all-link:hover { color: var(--black); }

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  max-width: 92vw;
  height: 100dvh;
  background: var(--white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray);
  flex-shrink: 0;
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--black);
  border-radius: var(--r-sm);
  transition: background 0.15s;
}
.mobile-nav-close:hover { background: var(--off); }

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-section { border-bottom: 1px solid var(--gray); }
.mobile-section-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 8px;
}
.mobile-section-toggle:active { background: var(--off); }
.mobile-chevron { transition: transform 0.2s; flex-shrink: 0; }
.mobile-section-toggle[aria-expanded="true"] .mobile-chevron { transform: rotate(180deg); }

.mobile-section-body {
  display: none;
  background: var(--off);
  padding: 4px 0 8px;
}
.mobile-section-body.open { display: block; }

.mobile-tour-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px 11px 28px;
  font-size: 0.875rem;
  color: var(--dark);
  gap: 10px;
  transition: color 0.12s;
}
.mobile-tour-link:hover,
.mobile-tour-link:active { color: var(--black); }
.mobile-tour-meta {
  font-size: 0.73rem;
  color: var(--mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.mobile-nav-links { padding: 4px 0; border-bottom: 1px solid var(--gray); }
.mobile-nav-links a {
  display: block;
  padding: 14px 20px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.12s;
}
.mobile-nav-links a:hover { color: var(--black); }
.mobile-nav-links a:active { background: var(--off); }

.mobile-nav-cta {
  padding: 20px;
  border-top: 1px solid var(--gray);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { width: 100%; text-align: center; justify-content: center; display: flex; align-items: center; gap: 7px; }

/* --- Mobile -------------------------------------------- */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex; }

  .discover-inner,
  .mission-inner,
  .tips-inner,
  .guides-inner,
  .faq-inner,
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }

  .testimonials-header { grid-template-columns: 1fr; gap: 24px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .cta-visual { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .tours-grid,
  .blog-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .hero { padding: 8px 8px 10px; }
  .hero-img-wrap { border-radius: 14px; min-height: 420px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 20px; }
  .hero-badges { justify-content: flex-start; }
  .hero-stats { gap: 20px; }
}


/* =========================================================
   FLOATING WHATSAPP BUTTON (global)
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
/* On tour pages the sticky bar pushes WA float up */
body.has-sticky-bar .wa-float { bottom: 80px; }
