/* ═══════════════════ TOKENS ═══════════════════ */
:root {
  --ink: #0c1810;
  --forest: #122018;
  --forest-mid: #1a3225;
  --moss: #2b5438;
  --sage: #3d7a52;
  --terra: #c0420f;
  --terra-lt: #d95a22;
  --amber: #c98a18;
  --gold: #e8a82a;
  --gold-lt: #f5c94e;
  --cream: #f6f1e8;
  --paper: #fdfaf3;
  --white: #ffffff;
  --muted: #7a7268;
  --border: rgba(12, 24, 16, 0.1);

  --grad-fire: linear-gradient(135deg, #e8a82a 0%, #d95a22 55%, #c0420f 100%);
  --grad-forest: linear-gradient(135deg, #122018, #2b5438);
  --grad-gold: linear-gradient(135deg, #e8a82a, #f5c94e);
  --sh-sm: 0 4px 20px rgba(12, 24, 16, 0.1);
  --sh-md: 0 12px 40px rgba(12, 24, 16, 0.14);
  --sh-lg: 0 24px 72px rgba(12, 24, 16, 0.18);
  --sh-fire: 0 8px 28px rgba(192, 66, 15, 0.32);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 76px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* ═══════════════════ RESET ═══════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(--font-body);
  cursor: pointer;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.8rem);
}

/* ── Labels ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--grad-fire);
  border-radius: 2px;
  flex-shrink: 0;
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--ink);
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.sec-sub {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.9;
  font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-fire {
  background: var(--grad-fire);
  color: #fff;
  box-shadow: var(--sh-fire);
}
.btn-fire:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(192, 66, 15, 0.4);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
}

/* ── Reveal ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rv.vis {
  opacity: 1;
  transform: none;
}
.rv-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rv-l.vis {
  opacity: 1;
  transform: none;
}
.rv-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rv-r.vis {
  opacity: 1;
  transform: none;
}

/* ═══════════════════ HEADER ═══════════════════ */
#hdrNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: all 0.4s var(--ease);
}
#hdrNav.scrolled {
  background: rgba(12, 24, 16, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 28px rgba(0, 0, 0, 0.28);
  height: 66px;
}
.hdr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  max-width: 1440px;
  margin: 0 auto;
  gap: 1rem;
}
.hdr-nav-logo-img img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;

  filter: brightness(1.25) contrast(1.15)
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}
#hdrNav {
  height: 76px;
}

#hdrNav.scrolled {
  height: 76px; /* same rakho */
}
/* scroll pe shrink */
#hdr.scrolled .logo-img img {
  height: 50px;
}
@media (max-width: 768px) {
  .hdr-nav-logo-img img {
    height: 64px;
    transition: all 0.3s ease;
  }

  #hdrNav.scrolled .hdr-nav-logo-img img {
    height: 58px;
  }
}
/* Logo */
.hdr-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.hdr-nav-logo:hover {
  opacity: 0.88;
}
.logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(192, 66, 15, 0.3);
  flex-shrink: 0;
  transition: transform 0.35s var(--spring);
}
.logo:hover .logo-icon {
  transform: scale(1.06);
}
.logo-icon i {
  color: #fff;
  font-size: 1rem;
}
.logo-words {
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  display: block;
}
.logo-name span {
  color: var(--gold);
}
.logo-tag {
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 2px;
}

/* Nav */
.hdr-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.hdr-nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 15px;
  border-radius: 8px;
  transition:
    color 0.25s,
    background 0.25s;
  white-space: nowrap;
}
.hdr-nav-links a:hover,
.hdr-nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.hdr-nav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hdr-nav-drop-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 15px;
  border-radius: 8px;
  transition:
    color 0.25s,
    background 0.25s;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hdr-nav-drop-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.hdr-nav-drop-btn::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 0.55rem;
  opacity: 0.5;
}
.hdr-nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(12, 24, 16, 0.98);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.hdr-nav-drop.open .hdr-nav-drop-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.hdr-nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  border-radius: 8px;
  transition: all 0.2s;
  text-transform: none;
  letter-spacing: 0;
}
.hdr-nav-drop-menu a i {
  width: 16px;
  color: var(--terra-lt);
  font-size: 0.7rem;
}
.hdr-nav-drop-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding-left: 17px;
}

/* Nav right */
.hdr-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-hdr-nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: all 0.3s;
  white-space: nowrap;
}
.hdr-nav-phone i {
  color: var(--gold);
  font-size: 0.65rem;
}
.hdr-nav-phone:hover {
  /* background: rgba(255, 255, 255, 0.08); */
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.hdr-nav-phone {
  /* background: rgba(255, 255, 255, 0.08); */
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

/* Hamburger */
.hdr-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s;
}
.hdr-nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.14);
}
.hdr-nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hdr-nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hdr-nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hdr-nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════ MOBILE DRAWER ═══════════════════ */
.hdr-nav-mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.hdr-nav-mob-overlay.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.hdr-nav-mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  z-index: 960;
  background: #0c1810;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  pointer-events: none;
}
.hdr-nav-mob-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.hdr-nav-mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.4rem;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
.hdr-nav-mob-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hdr-nav-mob-close:hover {
  background: var(--grad-fire);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(192, 66, 15, 0.35);
}
.hdr-nav-mob-close:active {
  transform: scale(0.95);
}
.hdr-nav-mob-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1rem;
  gap: 0.2rem;
}
.hdr-nav-mob-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
}
.hdr-nav-mob-link-item a {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  flex: 1;
  pointer-events: auto;
}
.hdr-nav-mob-link-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}
.hdr-nav-mob-link-item:hover a {
  color: #fff;
}
.hdr-nav-mob-link-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.65rem;
  transition: all 0.25s;
  flex-shrink: 0;
}
.hdr-nav-mob-link-item:hover .hdr-nav-mob-link-arrow {
  background: var(--grad-fire);
  color: #fff;
}
.hdr-nav-mob-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease);
  padding-left: 1rem;
}
.hdr-nav-mob-sub.open {
  max-height: 260px;
}
.hdr-nav-mob-sub a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.65rem 0.4rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s;
  pointer-events: all;
}
.hdr-nav-mob-sub a:hover {
  color: var(--gold);
}
.hdr-nav-mob-sub a i {
  color: var(--terra-lt);
  font-size: 0.68rem;
  width: 13px;
}
.hdr-nav-hdr-nav-mob-drawer-foot {
  padding: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}
.hdr-nav-hdr-nav-mob-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}
.hdr-nav-mob-contact-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.hdr-nav-mob-contact-info a:hover {
  color: var(--gold);
}
.hdr-nav-mob-contact-info i {
  color: var(--terra-lt);
  font-size: 0.65rem;
}
.hdr-nav-mob-cta-row {
  display: flex;
  gap: 0.65rem;
}
.hdr-nav-mob-cta-row .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 14px;
  font-size: 0.68rem;
}
.hdr-nav-mob-socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.hdr-nav-hdr-nav-mob-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: all 0.25s;
}
.hdr-nav-mob-soc:hover {
  background: var(--grad-fire);
  color: #fff;
  border-color: transparent;
}

/* ═══════════════════ HERO — PREMIUM ═══════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 1.5rem;
  padding: 3rem clamp(1.2rem, 4vw, 2.8rem);
}

/* Multi-layer cinematic background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: -4%;
  object-fit: cover;
  animation: heroKen 22s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: center center;
  width: 108%;
  height: 108%;
}
@keyframes heroKen {
  0% {
    transform: scale(1.06) translate(0%, 0%);
  }
  33% {
    transform: scale(1.1) translate(-1%, 0.5%);
  }
  66% {
    transform: scale(1.08) translate(1%, -0.5%);
  }
  100% {
    transform: scale(1.04) translate(-0.5%, 1%);
  }
}

/* Layered cinematic overlays */
.hero-bg-layer1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(12, 24, 16, 0.1) 0%,
    rgba(12, 24, 16, 0) 25%,
    rgba(12, 24, 16, 0.65) 75%,
    rgba(12, 24, 16, 0.95) 100%
  );
}
.hero-bg-layer2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 24, 16, 0.75) 0%,
    rgba(12, 24, 16, 0.4) 40%,
    rgba(12, 24, 16, 0) 70%
  );
}
/* Warm amber vignette from bottom */
.hero-bg-layer3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(192, 66, 15, 0.12), transparent);
}
/* Subtle grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 168, 42, 0.5);
  animation: floatParticle linear infinite;
  will-change: transform, opacity;
}

/* Light leak / flare */
.hero-flare {
  position: absolute;
  top: 8%;
  right: 18%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 168, 42, 0.07) 0%,
    transparent 70%
  );
  animation: flarePulse 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
@keyframes flarePulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Horizontal scan line — premium cinema touch */
.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 168, 42, 0.15) 30%,
    rgba(232, 168, 42, 0.25) 50%,
    rgba(232, 168, 42, 0.15) 70%,
    transparent 100%
  );
  animation: scanMove 9s linear infinite;
  pointer-events: none;
  z-index: 2;
  top: 0;
}
@keyframes scanMove {
  0% {
    top: -2px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-left {
  max-width: 100%;
  display: none;
}

/* Animated pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 18px 7px 8px;
  border-radius: var(--r-pill);
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(18px);
  animation: entryFadeUp 0.9s 0.3s cubic-bezier(0.22, 0.68, 0, 1.2) forwards;
}
.pill-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192, 66, 15, 0.4);
  animation: pillPulse 2.5s ease-in-out infinite;
}
@keyframes pillPulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(192, 66, 15, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(192, 66, 15, 0.72);
  }
}
.pill-dot i {
  color: #fff;
  font-size: 0.62rem;
}
.hero-pill span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* Hero H1 — word-by-word reveal */
.hero-h1 {
  margin-top: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 0.8rem;
  overflow: hidden;
  text-align: center;
}
.hero-h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) skewY(4deg);
  animation: wordReveal 0.9s cubic-bezier(0.22, 0.68, 0, 1.1) forwards;
}
.hero-h1 .word:nth-child(1) {
  animation-delay: 0.55s;
}
.hero-h1 .word:nth-child(2) {
  animation-delay: 0.7s;
}
.hero-h1 .word.italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-top: 0.1em;
}
.hero-h1 .word.italic {
  animation-delay: 0.85s;
}
@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

/* Animated underline under "Story" */
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  display: block;
  position: relative;
  width: fit-content;
  text-align: center;

  width: 100%;
}
.hero-h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--grad-fire);
  border-radius: 2px;
  animation: underlineGrow 1.2s 1.4s ease forwards;
}
@keyframes underlineGrow {
  to {
    width: 100%;
  }
}

/* Tagline + buttons */
.hero-p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-weight: 300;
  max-width: 550px;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(16px);
  animation: entryFadeUp 0.9s 1s ease forwards;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Center Layout */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-center .hero-h1 {
  margin-top: 0;
}

/* Hero Controls - Search & Buttons */
.hero-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  z-index: 2;
  position: relative;
  justify-content: center;
  margin-bottom: 0;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: entryFadeUp 0.9s 1.15s ease forwards;
  justify-content: center;
}

.trip-toggle {
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  cursor: pointer;
}

.trip-toggle.active {
  background: linear-gradient(135deg, var(--terra), #ff8c42) !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(192, 66, 15, 0.35) !important;
  border-color: transparent !important;
}

.trip-toggle.active:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(192, 66, 15, 0.45) !important;
}

.trip-toggle:not(.active) {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
}

.trip-toggle:not(.active):hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: entryFadeUp 0.9s 1.3s ease forwards;
}
@keyframes entryFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.avs-row {
  display: flex;
}
.avs-row img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  margin-left: -8px;
  object-fit: cover;
  transition: transform 0.3s;
  filter: brightness(0.92);
}
.avs-row img:first-child {
  margin-left: 0;
}
.avs-row:hover img {
  transform: translateX(0) scale(1.08);
}
.trust-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.trust-copy strong {
  color: #fff;
  font-weight: 700;
  display: block;
}

/* Search */
.hero-search-wrap {
  position: relative;
  z-index: 4;
  margin-top: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: entryFadeUp 0.9s 1.45s ease forwards;
  width: 100%;
  display: flex;
  justify-content: center;
}
.search-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 0.55rem;
  display: flex;
  align-items: stretch;
  gap: 0;
  box-shadow:
    0 20px 60px rgba(12, 24, 16, 0.28),
    0 4px 12px rgba(12, 24, 16, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  max-width: 750px;
  width: 95%;
}
.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.1rem;
  border-right: 1px solid rgba(12, 24, 16, 0.1);
  min-width: 0;
}
.search-field:last-of-type {
  border-right: none;
}
.search-field i {
  color: var(--terra);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.search-field label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
}
.search-field select,
.search-field input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink);
  width: 100%;
  cursor: pointer;
}
.search-box .btn {
  flex-shrink: 0;
  border-radius: var(--r-lg);
  margin: 0.1rem;
  font-size: 0.68rem;
}

/* Hero Panel */
.hero-panel {
  opacity: 0;
  transform: translateX(22px);
  animation: entryFadeUp 0.9s 1.55s ease forwards;
  align-self: flex-end;
  padding-bottom: 0.3rem;
}
.panel-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}
.panel-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.panel-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}
.panel-divider {
  grid-column: 1/-1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.panel-badge {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  background: rgba(232, 168, 42, 0.12);
  border: 1px solid rgba(232, 168, 42, 0.22);
}
.panel-badge i {
  color: var(--gold);
}
.panel-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 9rem;
  left: 2.8rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: entryFadeUp 1s 1.9s ease forwards;
  cursor: pointer;
}
.scroll-cue span {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--terra-lt), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/* Side location badge — new premium element */
.hero-location-badge {
  position: absolute;
  right: clamp(1.2rem, 3vw, 2.8rem);
  bottom: clamp(3.5rem, 8vh, 7rem);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  animation: entryFadeUp 0.9s 1.7s ease forwards;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 24, 16, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-pill);
  padding: 5px 14px 5px 7px;
  cursor: pointer;
  transition: all 0.3s;
}
.loc-item:hover {
  background: rgba(192, 66, 15, 0.25);
  border-color: rgba(192, 66, 15, 0.4);
}
.loc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-fire);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(192, 66, 15, 0.6);
}
.loc-item span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}
.loc-item i {
  font-size: 0.55rem;
  color: var(--gold);
  margin-left: 2px;
}

/* ── Marquee ── */
.marquee-strip {
  background: var(--grad-fire);
  padding: 11px 0;
  overflow: hidden;
}
.marquee-tr {
  display: flex;
  gap: 2.8rem;
  white-space: nowrap;
  animation: marqueeAnim 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-item i {
  font-size: 0.55rem;
  opacity: 0.6;
}
.marquee-dot {
  color: rgba(255, 255, 255, 0.3);
}
@keyframes marqueeAnim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════ ABOUT ═══════════════════ */
#about {
  /* padding: clamp(8rem, 15vw, 15rem) 0; */
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  position: relative;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
  margin-bottom: clamp(6rem, 12vw, 10rem);
}

.hero-text h2 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-box {
  padding: 1.8rem 2rem;
  background: #f5f5f5;
  border-radius: 8px;
  border-left: 4px solid var(--terra);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: #f0f0f0;
  transform: translateX(6px);
}

.stat-big {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.about-values {
  /* margin-bottom: clamp(6rem, 12vw, 10rem); */
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.4rem 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: var(--terra);
  box-shadow: 0 12px 40px rgba(192, 66, 15, 0.12);
  transform: translateY(-8px);
}

.value-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(192, 66, 15, 0.1),
    rgba(201, 138, 24, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-circle {
  background: linear-gradient(135deg, #c04210, #c9a818);
  color: #fff;
  transform: scale(1.1);
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.8rem 0;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.about-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 6rem);
}

.showcase-img {
  height: clamp(300px, 40vw, 480px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(12, 24, 16, 0.15);
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-img:hover img {
  transform: scale(1.04);
}

/* ═══════════════════ WHY ═══════════════════ */
#why {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}

.why-header {
  text-align: center;
  /* margin-bottom: clamp(6rem, 12vw, 8rem); */
  margin-bottom: 6%;
}

.why-header h2 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.why-header p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  /* margin-bottom: clamp(5rem, 10vw, 8rem); */
  margin-bottom: 6%;
}

.why-item {
  padding: 2.5rem 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.why-item:hover {
  background: #fff;
  border-color: var(--terra);
  box-shadow: 0 16px 48px rgba(12, 24, 16, 0.1);
  transform: translateY(-8px);
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(192, 66, 15, 0.08);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(192, 66, 15, 0.1),
    rgba(201, 138, 24, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.why-item:hover .why-icon {
  background: linear-gradient(135deg, #c04210, #c9a818);
  color: #fff;
  transform: scale(1.12) rotate(5deg);
}

.why-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 2.5rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(192, 66, 15, 0.1);
}

.ws {
  text-align: center;
}

.ws-num {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ws-txt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ═══════════════════ TREKS ═══════════════════ */
#treks {
  padding: 6rem 0;
  background: var(--cream);
}
.sec-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.treks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.trek {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all 0.42s var(--ease);
}
.trek:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.trek-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.trek-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.trek:hover .trek-img img {
  transform: scale(1.08);
}
.trek-level {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.easy {
  background: rgba(46, 125, 50, 0.14);
  backdrop-filter: blur(8px);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.moderate {
  background: rgba(230, 81, 0, 0.1);
  backdrop-filter: blur(8px);
  color: #e65100;
  border: 1px solid rgba(230, 81, 0, 0.18);
}
.hard {
  background: rgba(183, 28, 28, 0.1);
  backdrop-filter: blur(8px);
  color: #b71c1c;
  border: 1px solid rgba(183, 28, 28, 0.18);
}
.trek-body {
  padding: 1.3rem;
}
.trek-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.trek-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}
.trek-meta i {
  color: var(--terra);
  font-size: 0.58rem;
}
.trek-body h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.trek-body p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.72;
}
.trek-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1.3rem;
  border-top: 1px solid rgba(12, 24, 16, 0.07);
}
.trek-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  font-weight: 600;
}
.trek-price small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 400;
}
.trek-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--terra);
  transition: gap 0.25s;
}
.trek-cta:hover {
  gap: 10px;
}

/* ═══════════════════ TOURS ═══════════════════ */
#tours {
  padding: 6rem;
  background: var(--white);
}
.tour-tabs,
.trek-tabs {
  display: flex;
  gap: 0.45rem;
  margin-top: 2.2rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}
.tours-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}
.tour {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.38s var(--ease);
}
.tour:hover {
  transform: scale(1.02);
  z-index: 2;
}
.tour:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.tour img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.tour:hover img {
  transform: scale(1.06);
}
.tour-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 24, 16, 0.94) 0%,
    rgba(12, 24, 16, 0.16) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.tour-cat {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 4px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-fire);
  color: #fff;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.tour h3 {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.25;
  font-weight: 600;
}
.tour:nth-child(1) h3 {
  font-size: 1.7rem;
}
.tour-meta {
  display: flex;
  gap: 0.8rem;
  margin-top: 5px;
  flex-wrap: wrap;
}
.tour-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.58);
}
.tour-meta i {
  color: var(--gold);
  font-size: 0.55rem;
}
.tour-pr {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════ COUNTER ═══════════════════ */
#counter {
  padding: 0;
  background: var(--grad-fire);
}
.counter-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ctr-item {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s;
}
.ctr-item:last-child {
  border-right: none;
}
.ctr-item:hover {
  background: rgba(0, 0, 0, 0.1);
}
.ctr-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ctr-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
#testi {
  padding: 6rem 0;
  background: #fff;
  position: relative;
}

.testi-header {
  text-align: center;
  margin-bottom: 6%;
}

.testi-header h2 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.testi-header p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
}

.testi-item {
  padding: 2.2rem 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testi-item:hover {
  background: #fff;
  border-color: var(--terra);
  box-shadow: 0 16px 48px rgba(12, 24, 16, 0.1);
  transform: translateY(-6px);
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.testi-stars {
  display: flex;
  gap: 4px;
}

.testi-stars i {
  color: var(--terra);
  font-size: 0.85rem;
}

.testi-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--terra);
  background: rgba(192, 66, 15, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}

.testi-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.testi-trip {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ═══════════════════ GALLERY ═══════════════════ */
#gallery {
  padding: 6rem 0;
  background: var(--paper);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-top: 3rem;
}
.gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gal-item:hover img {
  transform: scale(1.12);
}
.gal-item::after {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  background: rgba(12, 24, 16, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover::after {
  opacity: 1;
}

/* ═══════════════════ FAQ ═══════════════════ */
#faq {
  padding: 6rem 0;
  background: var(--cream);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 4rem);
}
.faq-media {
  position: relative;
  height: clamp(280px, 42vw, 520px);
}
.faq-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.faq-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--ink);
  color: #fff;
  padding: 1.4rem 1.8rem;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.faq-badge .fb-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--terra-lt);
  line-height: 1;
}
.faq-badge .fb-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 3px;
}
.faq-leaf {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(43, 84, 56, 0.4);
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-row {
  border-bottom: 1px solid rgba(12, 24, 16, 0.08);
}
.faq-q-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1.2rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.25s ease;
}
.faq-q-btn span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.faq-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(12, 24, 16, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-size: 0.62rem;
  transition: all 0.32s var(--spring);
}
.faq-row.open .faq-ico {
  background: var(--grad-fire);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq-row.open .faq-ans {
  max-height: 200px;
}
.faq-ans p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.88;
  padding-bottom: 1.1rem;
}

/* ═══════════════════ BLOG ═══════════════════ */
#blog {
  padding: 6rem 0;
  background: var(--white);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.blog-big {
  grid-row: span 2;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: clamp(340px, 48vw, 560px);
  display: flex;
  align-items: flex-end;
}
.blog-sm {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: clamp(155px, 20vw, 255px);
  display: flex;
  align-items: flex-end;
}
.blog-big img,
.blog-sm img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.blog-big:hover img,
.blog-sm:hover img {
  transform: scale(1.06);
}
.blog-ov {
  position: relative;
  z-index: 2;
  padding: 1.8rem;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(12, 24, 16, 0.96) 0%,
    transparent 100%
  );
}
.blog-sm .blog-ov {
  padding: 1.2rem;
}
.blog-tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--grad-fire);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0.55rem;
}
.blog-big h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: #fff;
  line-height: 1.25;
  font-weight: 600;
}
.blog-sm h3 {
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  color: #fff;
  line-height: 1.28;
  font-weight: 600;
}
.blog-date {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.36);
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ═══════════════════ CTA ═══════════════════ */
#cta {
  padding: 6rem 0;
  background: var(--forest-mid);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1600&q=60")
    center/cover;
  opacity: 0.1;
}
.cta-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-body .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  justify-content: center;
}
.cta-body .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent);
}
.cta-body h2 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.cta-body p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 2.8rem;
  font-weight: 300;
}
.cta-row {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  background: #060f09;
}
.footer-body {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.8fr;
  gap: clamp(2rem, 4vw, 5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.foot-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.foot-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.9;
  max-width: 265px;
  margin-bottom: 1.6rem;
}
.foot-soc {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.foot-soc a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s;
}
.foot-soc a:hover {
  background: var(--grad-fire);
  color: #fff;
  border-color: transparent;
}
.foot-nl p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.7rem;
}
.nl-box {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nl-box input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 10px 13px;
  font-size: 0.72rem;
  font-family: var(--font-body);
  color: #fff;
}
.nl-box input::placeholder {
  color: rgba(255, 255, 255, 0.26);
}
.nl-box button {
  background: var(--grad-fire);
  color: #fff;
  border: none;
  padding: 0 16px;
  font-size: 0.82rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.nl-box button:hover {
  opacity: 0.82;
}
.foot-col h5 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(192, 66, 15, 0.18);
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.foot-col a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.34);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.foot-col a::before {
  content: "→";
  color: var(--terra-lt);
  font-size: 0.55rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.22s;
}
.foot-col a:hover {
  color: rgba(255, 255, 255, 0.76);
  padding-left: 5px;
}
.foot-col a:hover::before {
  opacity: 1;
  transform: none;
}
.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.fc {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.fc i {
  color: var(--terra-lt);
  font-size: 0.78rem;
  margin-top: 3px;
  width: 13px;
  flex-shrink: 0;
}
.fc p,
.fc a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.34);
  line-height: 1.72;
  transition: color 0.22s;
}
.fc a:hover {
  color: var(--terra-lt);
}
.footer-btm {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-btm p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
}
.footer-btm p span {
  color: var(--terra-lt);
}
.btm-links {
  display: flex;
  gap: 1.7rem;
}
.btm-links a {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.22s;
}
.btm-links a:hover {
  color: rgba(255, 255, 255, 0.52);
}

/* ═══════════════════ FLOATS ═══════════════════ */
.chat-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 940;
  animation: popIn 0.5s 2s both;
}
.chat-trigger {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad-fire);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(192, 66, 15, 0.44);
  transition: all 0.35s var(--spring);
}
.chat-trigger:hover {
  transform: scale(1.12) rotate(10deg);
}
.chat-win {
  position: fixed;
  bottom: 7.8rem;
  left: 2rem;
  z-index: 940;
  width: clamp(286px, 90vw, 312px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 72px rgba(12, 24, 16, 0.24);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(26, 50, 30, 0.07);
}
.chat-win.open {
  display: flex;
  animation: slideUp 0.32s var(--ease);
}
.chat-head {
  background: linear-gradient(135deg, var(--ink), var(--forest-mid));
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 11px;
}
.chat-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.chat-head h5 {
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.chat-head p {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.6rem;
  font-family: var(--font-body);
}
.chat-x {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px;
  transition: color 0.2s;
}
.chat-x:hover {
  color: #fff;
}
.chat-msgs {
  padding: 1rem;
  min-height: 130px;
  max-height: 190px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.msg {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.56;
  max-width: 85%;
  font-family: var(--font-body);
}
.msg.bot {
  background: var(--cream);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg.me {
  background: var(--grad-fire);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-quick {
  padding: 0 1rem 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.qbtn {
  padding: 5px 10px;
  border: 1.5px solid var(--terra);
  border-radius: var(--r-pill);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--terra);
  background: transparent;
  cursor: pointer;
  transition: all 0.22s;
  font-family: var(--font-body);
}
.qbtn:hover {
  background: var(--grad-fire);
  color: #fff;
  border-color: transparent;
}
.chat-in {
  display: flex;
  border-top: 1px solid rgba(12, 24, 16, 0.08);
}
.chat-in input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  outline: none;
  font-size: 0.74rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
}
.chat-in button {
  padding: 0 14px;
  background: var(--grad-fire);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  transition: opacity 0.2s;
}
.chat-in button:hover {
  opacity: 0.82;
}
.right-floats {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 940;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  animation: popIn 0.5s 2.2s both;
}
.rf {
  position: relative;
  display: flex;
  align-items: center;
}
.rf-tip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}
.rf-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--ink);
}
.rf:hover .rf-tip {
  opacity: 1;
}
.wa-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.36);
  transition: all 0.32s var(--spring);
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.46);
}
.call-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--forest-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(26, 50, 37, 0.4);
  transition: all 0.32s var(--spring);
}
.call-btn:hover {
  transform: scale(1.12);
  background: var(--moss);
}

/* ═══════════════════ KEYFRAMES ═══════════════════ */
@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(var(--dx)) scale(1);
    opacity: 0;
  }
}

/* ═══════════════════ TABLET ≤1024px ═══════════════════ */
@media (max-width: 1024px) {
  .hdr-nav-links,
  .nav-phone,
  .nav-right .btn {
    display: none;
  }
  .hdr-nav-hamburger {
    display: flex;
  }
  .hero-content {
    padding-bottom: clamp(3rem, 6vh, 5rem);
  }
  .hero-panel {
    display: none;
  }
  .hero-location-badge {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
  .hero-controls {
    width: 100%;
    gap: 1rem;
  }
  .hero-btns {
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }
  .hero-btns .btn {
    flex: 1 1 auto;
    min-width: 140px;
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }
  .hero-search-wrap {
    width: 100%;
    max-width: 90%;
  }
  .search-box {
    width: 100%;
    max-width: 100%;
  }
  .search-field {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
  .search-field label {
    font-size: 0.6rem;
  }
  .search-box .btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  .about-hero {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
  .hero-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .showcase-img {
    height: clamp(250px, 50vw, 350px);
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .treks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trek-tabs {
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
  }
  .tab-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
  .tours-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }
  .tour:nth-child(1) {
    grid-column: span 1;
    height: 220px;
  }
  .tour:nth-child(1) h3 {
    font-size: 1.2rem;
  }
  .tour {
    height: 180px;
  }
  .tour h3 {
    font-size: 0.9rem;
  }
  .tour-cat {
    font-size: 0.51rem;
    padding: 3px 9px;
  }
  .tour-meta span {
    font-size: 0.56rem;
  }
  .trek-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  .sec-hd {
    flex-direction: column;
    gap: 1rem;
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .testi-item {
    padding: 1.8rem 1.5rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-media {
    height: 300px;
  }
  .faq-badge {
    bottom: -1rem;
    right: -0.5rem;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-big {
    grid-row: auto;
    min-height: 300px;
  }
  .blog-sm {
    min-height: 175px;
  }
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .counter-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .ctr-item:nth-child(2) {
    border-right: none;
  }
  .ctr-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer-body {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section {
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  body {
    font-size: 15px;
  }
  .tours-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.9rem;
  }
  .tour:nth-child(1) {
    grid-column: span 1;
    height: 240px;
  }
  .tour:nth-child(1) h3 {
    font-size: 1.1rem;
  }
  .tour {
    height: 160px;
    width: 100%;
  }
  .tour h3 {
    font-size: 0.88rem;
  }
  .tour-cat {
    font-size: 0.5rem;
    padding: 3px 8px;
  }
  .tour-meta span {
    font-size: 0.54rem;
  }
  .tour-ov {
    padding: 1rem;
  }
  .trek-tabs {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
  }
  .tab-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
  }
  .sec-hd {
    flex-direction: column;
    align-items: flex-start;
  }
  .container {
    padding: 0 1.5rem;
  }
  .hdr-nav-links {
    display: none;
  }
  .hdr-nav-phone {
    display: none;
  }
  .hdr-nav-right .btn-fire {
    display: none;
  }
  .hdr-nav-hamburger {
    display: flex;
  }
  .logo-name {
    font-size: 1.1rem;
  }
  .hero-h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .hero-p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .hero-btns {
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  .hero-btns .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 130px;
  }
  .hero-search-wrap {
    width: 100%;
    padding: 0 1rem;
  }
  .search-box {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--r-lg);
    padding: 0;
    overflow: visible;
  }
  .search-field {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-right: none;
    border-bottom: 1px solid rgba(12, 24, 16, 0.1);
    flex: 1;
    min-width: auto;
  }
  .search-field:last-of-type {
    border-bottom: none;
  }
  .search-field label {
    font-size: 0.65rem;
    margin-bottom: 3px;
  }
  .search-field i {
    font-size: 0.75rem;
  }
  .search-field select {
    font-size: 0.85rem;
  }
  .search-box .btn {
    width: calc(100% - 0.2rem);
    margin: 0.1rem;
    border-radius: var(--r-md);
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
  .sec-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2rem;
  }
  .sec-sub {
    font-size: 0.95rem;
  }
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-media {
    height: clamp(300px, 60vw, 400px);
  }
  .hero-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.2;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .value-card {
    padding: 1.5rem;
  }
  .about-showcase {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .showcase-img {
    height: 280px;
  }
  .sec-hd {
    flex-direction: column;
    gap: 1rem;
  }
  .treks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .trek-card {
    padding: 1rem;
  }
  .trek-img {
    height: 200px;
  }
  .trek-tabs {
    gap: 0.5rem;
    margin-bottom: 1.4rem;
  }
  .tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--r-sm);
  }
  .tours-mosaic {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    grid-template-rows: auto;
  }
  .tour:nth-child(1) {
    grid-column: span 1;
    height: 240px;
  }
  .tour:nth-child(1) h3 {
    font-size: 1.2rem;
  }
  .tour {
    height: 160px;
  }
  .tour h3 {
    font-size: 0.88rem;
  }
  .tour-cat {
    font-size: 0.5rem;
    padding: 3px 8px;
  }
  .tour-meta span {
    font-size: 0.55rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-item {
    padding: 1.5rem;
  }
  .why-number {
    font-size: 2rem;
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .testi-item {
    padding: 1.5rem 1rem;
  }
  .testi-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .testi-top {
    margin-bottom: 1rem;
  }
  .testi-badge {
    font-size: 0.55rem;
    padding: 0.25rem 0.6rem;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .gal-item {
    border-radius: 8px;
  }
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-big {
    height: 280px;
  }
  .blog-sm {
    height: 180px;
  }
  .blog-card {
    border-radius: 8px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq-item {
    margin-bottom: 0.8rem;
  }
  .faq-q {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .ctr-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }
  .ctr-text p {
    font-size: 0.9rem;
  }
  .cta-row .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  .counter-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .ctr-item {
    padding: 1.5rem 1rem;
  }
  .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .foot-col {
    margin-bottom: 1rem;
  }
  .foot-col h3 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }
  .foot-link {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 64px;
  }
  .container {
    padding: 0 1rem;
  }
  .logo-name {
    font-size: 1.25rem;
  }
  .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .logo-icon i {
    font-size: 0.88rem;
  }
  .logo-tag {
    display: none;
  }
  .hero-h1 {
    font-size: clamp(2.8rem, 11vw, 3.8rem);
  }
  .hero-p {
    font-size: 0.86rem;
    margin-bottom: 1.5rem;
  }
  .hero-trust {
    display: none;
  }
  .hero-controls {
    width: 100%;
    gap: 1rem;
    max-width: 100%;
  }
  .hero-btns {
    flex-wrap: wrap;
    gap: 0.7rem;
    width: 100%;
    justify-content: center;
  }
  .hero-btns .btn:last-child {
    display: inline-flex;
  }
  .hero-btns .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 110px;
  }
  .hero-search-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .search-box {
    flex-direction: column;
    gap: 0;
    border-radius: var(--r-lg);
    overflow: visible;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(12, 24, 16, 0.08);
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    min-width: auto;
  }
  .search-field:last-of-type {
    border-bottom: none;
  }
  .search-box .btn {
    width: calc(100% - 0.8rem);
    justify-content: center;
    border-radius: var(--r-md);
    margin: 0.4rem;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
  section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }
  .sec-edge {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
  .sec-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    margin-bottom: 1.5rem;
  }
  .sec-sub {
    font-size: 0.85rem;
  }
  .about-media {
    height: clamp(260px, 70vw, 360px);
  }
  .about-images {
    height: 280px;
  }
  .img-container {
    width: 100%;
    height: 80%;
  }
  .img-container-secondary {
    width: 60%;
    height: 50%;
  }
  .years-badge {
    width: 80px;
    height: 80px;
    right: -10px;
  }
  .year-num {
    font-size: 1.4rem;
  }
  .year-text {
    font-size: 0.55rem;
  }
  .feature-item {
    padding: 1.2rem;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  .feature-text h3 {
    font-size: 0.9rem;
  }
  .feature-text p {
    font-size: 0.78rem;
  }
  .hero-text h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 1rem;
  }
  .stat-box {
    padding: 1rem 1.2rem;
  }
  .stat-big {
    font-size: 1.6rem;
  }
  .stat-sm {
    font-size: 0.75rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .value-card {
    padding: 1.5rem 1.2rem;
  }
  .value-circle {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .treks-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .trek-card {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
  }
  .trek-img {
    height: 180px;
  }
  .trek-info {
    padding: 1rem;
  }
  .trek-title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .trek-loc {
    font-size: 0.75rem;
  }
  .trek-tabs {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
  }
  .tab-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
    border-radius: var(--r-sm);
  }
  .tours-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.8rem;
  }
  .tour:nth-child(1) {
    grid-column: span 1;
    height: 250px;
  }
  .tour:nth-child(1) h3 {
    font-size: 1.1rem;
  }
  .tour {
    height: 200px;
    border-radius: 8px;
  }
  .tour h3 {
    font-size: 0.82rem;
  }
  .tour-cat {
    font-size: 0.48rem;
    padding: 3px 7px;
  }
  .tour-meta span {
    font-size: 0.53rem;
  }
  .tour-tabs {
    display: none;
  }
  .tour-content {
    padding: 1rem;
  }
  .tour-title {
    font-size: 1rem;
  }
  .tour-detail {
    font-size: 0.75rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-item {
    padding: 1.5rem 1.2rem;
  }
  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .why-number {
    font-size: 2.2rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testi-item {
    padding: 1.2rem 1rem;
  }
  .testi-text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .testi-top {
    margin-bottom: 0.8rem;
  }
  .testi-stars {
    gap: 3px;
  }
  .testi-stars i {
    font-size: 0.75rem;
  }
  .testi-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
  }
  .testi-profile {
    gap: 10px;
    padding-top: 1rem;
  }
  .testi-profile img {
    width: 40px;
    height: 40px;
  }
  .testi-name {
    font-size: 0.8rem;
  }
  .testi-trip {
    font-size: 0.65rem;
    margin-top: 1px;
  }
  .testi-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 0.5rem;
  }
  .testi-header p {
    font-size: 0.8rem;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .gal-item {
    border-radius: 6px;
    height: auto;
    aspect-ratio: 4/3;
  }
  .gal-item img {
    object-fit: cover;
    height: 100%;
  }
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .blog-sm {
    min-height: 165px;
  }
  .blog-big {
    min-height: 270px;
  }
  .blog-card {
    border-radius: 6px;
    padding: 1rem;
  }
  .blog-img {
    border-radius: 4px;
    height: 100%;
  }
  .blog-time {
    font-size: 0.7rem;
  }
  .blog-title {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }
  .blog-desc {
    font-size: 0.75rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }
  .faq-item {
    border-radius: 6px;
    margin-bottom: 0.8rem;
  }
  .faq-q {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
  .faq-a {
    padding: 1rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .faq-media {
    display: none;
  }
  .faq-badge {
    bottom: -0.8rem;
    right: -0.4rem;
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }
  .cta-row .btn:last-child {
    display: none;
  }
  .ctr-text h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
  }
  .ctr-text p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .cta-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  .cta-row .btn {
    width: 100%;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }
  .counter-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .ctr-item {
    padding: 1.2rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ctr-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ctr-item:nth-child(3) {
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ctr-num {
    font-size: 1.8rem;
  }
  .ctr-label {
    font-size: 0.7rem;
  }
  .footer-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .foot-col {
    margin-bottom: 1rem;
  }
  .foot-col h3 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  .foot-link {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .footer-btm {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
  }
  .btm-links {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .sec-hd {
    flex-direction: column;
    align-items: flex-start;
  }
  .chat-win {
    left: 0.7rem;
    width: calc(100vw - 1.4rem);
    max-height: 50vh;
  }
  .chat-float {
    bottom: 1.5rem;
    left: 1.2rem;
    width: 50px;
    height: 50px;
  }
  .right-floats {
    bottom: 1.5rem;
    right: 1.2rem;
    display: flex;
    gap: 0.8rem;
  }
}

@media (max-width: 380px) {
  :root {
    --nav-h: 56px;
  }
  .container {
    padding: 0 0.8rem;
  }
  .hero-h1 {
    font-size: 2.4rem;
  }
  .hero-p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .hero-controls {
    gap: 0.8rem;
    width: 95%;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
  .hero-search-wrap {
    width: 95%;
    padding: 0;
  }
  .search-box {
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: visible;
    width: 100%;
    padding: 0;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(12, 24, 16, 0.08);
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  .search-field i {
    font-size: 0.7rem;
  }
  .search-field label {
    font-size: 0.6rem;
  }
  .search-field :last-of-type {
    border-bottom: none;
  }
  .search-box .btn {
    width: calc(100% - 0.4rem);
    margin: 0.2rem;
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
  .logo-words {
    display: none;
  }
  .logo-name {
    font-size: 1rem;
  }
  .sec-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    margin-bottom: 1.2rem;
  }
  .sec-sub {
    font-size: 0.75rem;
  }
  section {
    padding: 2rem 0;
  }
  .about-media {
    height: 250px;
  }
  .stat-box {
    padding: 0.8rem 1rem;
  }
  .stat-big {
    font-size: 1.4rem;
  }
  .hero-text h2 {
    font-size: 1.4rem;
  }
  .value-card {
    padding: 1.2rem 1rem;
  }
  .trek-tabs {
    gap: 0.3rem;
    margin-bottom: 1rem;
  }
  .tab-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    border-radius: var(--r-sm);
  }
  .values-grid {
    gap: 0.8rem;
  }
  .treks-grid {
    gap: 0.8rem;
  }
  .trek-title {
    font-size: 0.85rem;
  }
  .trek-loc {
    font-size: 0.65rem;
  }
  .tours-mosaic {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }
  .tour:nth-child(1) h3 {
    font-size: 1rem;
  }
  .tour {
    height: 180px;
    border-radius: 6px;
  }
  .tour h3 {
    font-size: 0.75rem;
  }
  .tour-cat {
    font-size: 0.45rem;
    padding: 2px 6px;
  }
  .tour-meta span {
    font-size: 0.5rem;
  }
  .tour-ov {
    padding: 1rem;
  }
  .why-grid {
    gap: 1rem;
  }
  .why-item {
    padding: 1.2rem 1rem;
  }
  .why-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .why-stats {
    padding: 1rem 0.8rem;
    gap: 0.8rem;
  }
  .why-number {
    font-size: 1.8rem;
  }
  .testi-item {
    padding: 1rem;
  }
  .testi-text {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }
  .testi-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .gal-grid {
    gap: 0.4rem;
  }
  .blog-layout {
    gap: 1rem;
  }
  .blog-title {
    font-size: 0.8rem;
  }
  .blog-desc {
    font-size: 0.7rem;
  }
  .faq-item {
    margin-bottom: 0.6rem;
  }
  .faq-q {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
  .faq-a {
    padding: 0.8rem;
    font-size: 0.7rem;
  }
  .counter-inner {
    gap: 0.6rem;
  }
  .ctr-item {
    padding: 1rem 0.8rem;
  }
  .ctr-num {
    font-size: 1.4rem;
  }
  .ctr-label {
    font-size: 0.6rem;
  }
  .footer-body {
    gap: 1.2rem;
  }
  .foot-col h3 {
    font-size: 0.8rem;
  }
  .foot-link {
    font-size: 0.7rem;
  }
  .cta-row .btn {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }
}
