/* ===========================
   BESTTREKSNEPAL — style.css
   =========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
:root {
  --green: #1f7a63;
  --green-dark: #155a48;
  --green-light: #e8f5f1;
  --orange: #ff7a00;
  --orange-light: #fff3e8;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.bg-light {
  background: var(--off-white);
}

.accent {
  color: var(--green);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
  line-height: 1;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Hide topbar for minimalist look */
.nav-topbar {
  display: none;
}

/* Main nav bar */
.nav-main {
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.navbar.scrolled .nav-main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.nav-main-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 80px;
}

.navbar.scrolled .nav-main-inner {
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

.navbar.scrolled .logo-text {
  color: var(--text);
}

.logo-accent {
  color: #4ecba6;
}

.navbar.scrolled .logo-accent {
  color: var(--green);
}

/* Nav link list */
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Top-level link - minimalist: no background on hover */
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  white-space: nowrap;
  transition: color 0.25s;
  cursor: pointer;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.has-dropdown:hover > .nav-link::after,
.nav-link.nav-active::after {
  width: 100%;
}

.nav-link:hover,
.nav-item.has-dropdown:hover > .nav-link,
.nav-link.nav-active {
  color: var(--orange);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-item.has-dropdown:hover > .nav-link,
.navbar.scrolled .nav-link.nav-active {
  color: var(--green);
}

.navbar.scrolled .nav-link::after {
  background: var(--green);
}

.nav-arrow {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* ── DROPDOWN ── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  min-width: 440px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.dropdown-sm {
  min-width: 260px;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  display: flex;
  gap: 0;
  padding: 16px;
}

.dropdown-col {
  flex: 1;
  padding: 0 12px;
}

.dropdown-col+.dropdown-col {
  border-left: 1px solid var(--border);
}

.dropdown-heading {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 4px;
}

/* Dropdown links - minimalist */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.dropdown-link:hover {
  background: var(--off-white);
  color: var(--green);
}

.dropdown-link strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}

.dropdown-link small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.dlink-icon {
  width: 32px;
  height: 32px;
  background: var(--off-white);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--green);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-link:hover .dlink-icon {
  background: var(--green);
  color: white;
}

/* CTA col badge */
.dropdown-col-cta {
  background: var(--off-white);
  border-radius: 10px;
}

.dropdown-badge {
  margin-top: 14px;
  background: var(--green);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dropdown-badge i {
  font-size: 0.78rem;
}

.dropdown-badge strong {
  font-size: 1rem;
}

/* Right action buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}

.nav-phone {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-phone {
  border-color: var(--border);
  color: var(--text-muted);
}

.nav-phone:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #e06a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  z-index: 1002; /* Above mobile menu */
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: white;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  width: 20px;
}

.hamburger span:nth-child(2) {
  width: 14px;
}

.hamburger span:nth-child(3) {
  width: 18px;
}

.navbar.scrolled .hamburger span,
.hamburger.open span {
  background: var(--text);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 20px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 20px;
}

/* Mobile menu - minimalist & side-sliding (from right) */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 1001; /* Above navbar */
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Backdrop for mobile menu - only on mobile/tablet */
@media (max-width: 900px) {
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease forwards;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-links {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.mobile-links li a {
  display: block;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.mobile-links li a:hover {
  color: var(--green);
}

.mobile-links li:last-child a {
  border-bottom: none;
}

.mobile-cta {
  display: block;
  margin-top: 32px;
  background: var(--green);
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 6px;
  width: 100%;
  transition: all 0.3s ease;
}

.mobile-cta:hover {
  background: var(--green-dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 120vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 20, 0.75) 0%, rgba(10, 20, 15, 0.45) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 122, 0, 0.5);
  color: #ffa347;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}

.title-accent {
  color: #4ecba6;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 122, 99, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: white;
  transform: translateY(-2px);
}

.hero-search {
  margin-bottom: 48px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 99px;
  padding: 6px 6px 6px 20px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.search-icon {
  color: var(--text-muted);
  margin-right: 8px;
  font-size: 0.95rem;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text);
  background: transparent;
}

.search-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: #e06a00;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── TREK CARDS ── */
.treks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 28px;
}

.trek-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.trek-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trek-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.trek-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trek-card:hover .trek-img {
  transform: scale(1.07);
}

.trek-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-easy {
  background: #d1fae5;
  color: #065f46;
}

.badge-moderate {
  background: #fef3c7;
  color: #92400e;
}

.badge-challenging {
  background: #fee2e2;
  color: #b91c1c;
}

.trek-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.trek-card:hover .trek-overlay {
  opacity: 1;
}

.btn-view {
  text-decoration: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-view:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.trek-body {
  padding: 18px 20px 20px;
}

.trek-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trek-meta {
  display: flex;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.trek-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trek-meta i {
  color: var(--green);
}

.trek-diff {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.diff-easy {
  background: #d1fae5;
  color: #065f46;
}

.diff-mod {
  background: #fef3c7;
  color: #92400e;
}

.diff-hard {
  background: #fee2e2;
  color: #b91c1c;
}

.trek-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trek-price {
  font-size: 1rem;
  color: var(--text-muted);
}

.trek-price strong {
  color: var(--green);
  font-size: 1.1rem;
}

.btn-sm {
  text-decoration: none;
  background: var(--green);
  color: white;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-sm:hover {
  background: var(--green-dark);
}

/* ── DESTINATIONS ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.dest-large {
  grid-column: span 2;
  grid-row: span 2;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: var(--transition);
}

.dest-overlay h3 {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-large .dest-overlay h3 {
  font-size: 1.6rem;
}

.dest-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.dest-link {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.dest-card:hover .dest-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── WHY SECTION ── */
.why-section {
  background: linear-gradient(135deg, #0d2f27 0%, #1a4a3a 100%);
}

.why-section .section-tag {
  color: #4ecba6;
  border-color: #4ecba6;
}

.why-section .section-title {
  color: white;
}

.why-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(78, 203, 166, 0.4);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: white;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--orange);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ── FILTER SECTION ── */
.filter-bar {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.filter-group {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.filter-group select:focus {
  border-color: var(--green);
}

.btn-filter {
  padding: 10px 22px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-filter:hover {
  background: var(--green-dark);
}

.filter-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 24px;
  min-height: 80px;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
  font-size: 1rem;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.review-featured {
  border-color: var(--green);
  background: var(--green-light);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.bg1 {
  background: var(--green);
}

.bg2 {
  background: var(--orange);
}

.bg3 {
  background: #7c3aed;
}

.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 22px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--orange);
  gap: 10px;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 20, 15, 0.82), rgba(5, 15, 10, 0.65));
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin: 16px 0;
  line-height: 1.25;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 32px;
}

.btn-large {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ── FOOTER ── */
.footer {
  background: #0d1f18;
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.footer-logo i {
  color: var(--green);
  font-size: 1.2rem;
}

.footer-logo span {
  color: var(--green);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.contact-list i {
  color: var(--green);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.83rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .dest-large {
    grid-column: span 2;
    grid-row: span 1;
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-phone {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-large {
    grid-column: span 1;
  }

  .dest-card {
    height: 220px;
  }

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

  .filter-bar {
    flex-direction: column;
  }

  .filter-group {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .treks-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-main-inner {
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .nav-logo {
    gap: 8px;
    margin-right: 0;
  }

  .nav-actions {
    gap: 8px;
    margin-left: 8px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .nav-cta i {
    display: none;
  }

  .hamburger {
    width: 38px;
    height: 38px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 12px;
  }

  .stat-divider {
    height: 30px;
  }

  .search-box {
    padding: 4px 4px 4px 16px;
  }

  .search-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .treks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-bar {
    padding: 16px;
  }

  .why-card {
    padding: 24px 16px;
  }

  .review-card {
    padding: 20px;
  }

  .blog-body {
    padding: 16px;
  }
}

/* ── FAQ SECTION ── */
.faq-section {
  background: var(--white);
}

.faq-layout {
  max-width: 820px;
  margin: 0 auto;
}

/* Category Pill Buttons */
.faq-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.faq-cat-btn {
  padding: 8px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.faq-cat-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.faq-cat-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(31, 122, 99, 0.3);
}

/* Accordion Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: #c5dfd8;
}

.faq-item.open, .faq-item.active {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(31, 122, 99, 0.12);
}

.faq-item.hidden {
  display: none;
}

/* Question Row */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-item.open .faq-question, .faq-item.active .faq-question {
  background: var(--green-light);
  color: var(--green-dark);
}

.faq-q-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-light);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--green);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-q-icon {
  background: var(--green);
  color: white;
}

.faq-question>span:nth-child(2) {
  flex: 1;
  line-height: 1.5;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-item.open .faq-chevron, .faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--green);
  color: white;
}

/* Answer Panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px 0 74px;
}

.faq-answer.open, .faq-answer.active {
  max-height: 400px;
  padding: 0 24px 24px 74px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-answer strong {
  color: var(--green-dark);
}

@media (max-width: 600px) {
  .faq-question {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 18px 0 18px;
  }

  .faq-answer.open {
    padding: 0 18px 18px 18px;
  }

  .faq-q-icon {
    display: none;
  }
}

/* ── DEPARTURES SECTION ── */

/* Month Filter Tabs */
.dep-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.dep-tab {
  padding: 9px 22px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: white;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.dep-tab:hover {
  border-color: var(--green);
  color: var(--green);
}

.dep-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 4px 16px rgba(31, 122, 99, 0.28);
}

/* Table Wrapper */
.dep-table-wrap {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 20px;
}

.dep-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  white-space: nowrap;
}

.dep-table thead {
  background: linear-gradient(135deg, #0d2f27, #1f7a63);
}

.dep-table thead th {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.8rem;
  text-align: left;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.dep-table thead th i {
  margin-right: 5px;
  opacity: 0.8;
}

.dep-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.dep-table tbody tr:last-child {
  border-bottom: none;
}

.dep-table tbody tr:hover {
  background: var(--green-light);
}

.dep-table td {
  padding: 15px 18px;
  color: var(--text);
  vertical-align: middle;
}

/* Trek name cell */
.dep-trek-name {
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dep-trek-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.dep-trek-label {
  display: flex;
  flex-direction: column;
}

.dep-trek-label small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Difficulty pill in table */
.dep-diff {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Availability Status badges */
.dep-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 700;
}

.status-open {
  background: #d1fae5;
  color: #065f46;
}

.status-limited {
  background: #fef3c7;
  color: #92400e;
}

.status-full {
  background: #fee2e2;
  color: #b91c1c;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.status-open .status-dot {
  background: #065f46;
}

.status-limited .status-dot {
  background: #92400e;
}

.status-full .status-dot {
  background: #b91c1c;
}

/* Group size cell */
.dep-group {
  color: var(--text-muted);
}

.dep-group strong {
  color: var(--text);
}

/* Price in table */
.dep-price {
  font-weight: 800;
  color: var(--green);
  font-size: 0.97rem;
}

/* Book button in table */
.dep-book-btn {
  display: inline-block;
  padding: 7px 18px;
  background: var(--orange);
  color: white;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dep-book-btn:hover {
  background: #e06a00;
  transform: translateY(-1px);
}

.dep-book-btn.disabled {
  background: var(--border);
  color: var(--text-muted);
  pointer-events: none;
}

/* ── Mobile Cards (hidden on desktop) ── */
.dep-cards {
  display: none;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 20px;
}

.dep-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.dep-card:hover {
  border-color: var(--green);
}

.dep-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--green-light);
}

.dep-card-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.dep-card-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.dep-card-title small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.dep-card-body {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.dep-card-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dep-card-row span:first-child {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.dep-card-row span:last-child {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.dep-card-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dep-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}

/* No results row */
.dep-no-results td {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer note */
.dep-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--orange-light);
  border: 1px solid #ffe0bf;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  margin-top: 4px;
}

.dep-note i {
  color: var(--orange);
}

.dep-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.dep-note a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 860px) {
  .dep-table-wrap {
    display: none;
  }

  .dep-cards {
    display: flex;
  }
}

/* ==================================
   ABOUT PAGE CUSTOM STYLES
   ================================== */

/* ── ABOUT HERO ── */
.about-hero {
  position: relative;
  height: 50vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 24, 0.85) 0%, transparent 60%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.about-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── COMPANY STORY ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  margin-bottom: 20px;
}

.story-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.story-checkmarks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-checkmarks span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.story-checkmarks i {
  color: var(--green);
  font-size: 1.1rem;
}

.story-images {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.story-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── VALUES ── */
.values-section {
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 36px 32px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.val-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── STATS SECTION ── */
.about-stats-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 70px 0;
  color: white;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  vertical-align: top;
  margin-left: 2px;
}

.stat-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

/* ── TEAM SECTION ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-photo-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contract(1.05);
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 0.2s;
}

.team-social a:hover {
  background: var(--orange);
}

.team-body {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.team-exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  background: var(--orange-light);
  color: #92400e;
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── RESPONSIBLE TOURISM ── */
.resp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.resp-images {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.resp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resp-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resp-item {
  display: flex;
  gap: 18px;
}

.resp-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--green);
}

.resp-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.resp-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Add responsive adjustments for About */
@media (max-width: 900px) {

  .story-grid,
  .resp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ==================================
   CONTACT PAGE CUSTOM STYLES
   ================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Cards */
.info-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--green);
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.cc-icon {
  width: 50px;
  height: 50px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cc-details h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.cc-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-left: 4px;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(31, 122, 99, 0.1);
}

.input-group textarea {
  resize: vertical;
}

/* Map Section */
.map-section {
  line-height: 0;
}

.map-section iframe {
  filter: grayscale(0.2);
  transition: filter 0.5s ease;
}

.map-section iframe:hover {
  filter: grayscale(0);
}

/* Responsive Styles for Contact */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-card {
    padding: 20px;
  }
}

/* ==================================
   DEPARTURES PAGE CUSTOM STYLES
   ================================== */

/* ── Quick Stats Bar ── */
.dep-stats-bar {
  background: linear-gradient(135deg, #0d2f27 0%, #1a4a3a 100%);
  padding: 28px 0;
}

.dep-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dep-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.dep-stat-item>i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #4ecba6;
  flex-shrink: 0;
}

.dep-stat-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.dep-stat-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.4;
}

/* ── Enhanced Filter Bar ── */
.dep-filter-bar {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.dep-filter-group {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dep-filter-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dep-filter-group label i {
  color: var(--green);
  font-size: 0.75rem;
}

.dep-filter-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.dep-filter-group select:focus {
  border-color: var(--green);
}

/* ── Active Filter Tags ── */
.dep-active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
  min-height: 0;
}

.dep-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
}

.dep-tag-remove {
  background: none;
  border: none;
  color: var(--green-dark);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.dep-tag-remove:hover {
  opacity: 1;
}

.dep-clear-all {
  background: none;
  border: 1.5px solid var(--border);
  padding: 5px 14px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.dep-clear-all:hover {
  border-color: #b91c1c;
  color: #b91c1c;
}

/* ── Results Count ── */
.dep-results-count {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dep-results-count i {
  color: var(--green);
}

.dep-results-count strong {
  color: var(--text);
}

/* ── Season Section ── */
.dep-season-section {
  background: white;
}

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.season-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: var(--transition);
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.season-spring {
  border-top: 4px solid #10b981;
}

.season-autumn {
  border-top: 4px solid var(--orange);
}

.season-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 20px;
}

.season-spring .season-icon {
  background: #10b981;
}

.season-autumn .season-icon {
  background: var(--orange);
}

.season-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.season-months {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.season-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.season-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.season-highlights li i {
  color: var(--green);
  font-size: 0.8rem;
}

.season-temp {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.season-temp span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: white;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
}

.season-temp i {
  color: var(--orange);
  font-size: 0.85rem;
}

/* ── Booking Steps ── */
.booking-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.booking-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  z-index: 0;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.booking-step:hover .step-icon {
  background: var(--orange);
  transform: scale(1.1);
}

.booking-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.booking-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 32px;
  color: var(--border);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Inclusions ── */
.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.inclusion-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

.inclusion-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.included {
  background: var(--green-light);
  border-color: rgba(31, 122, 99, 0.2);
}

.included h3 {
  color: var(--green-dark);
}

.included h3 i {
  color: var(--green);
}

.excluded {
  background: #fff5f5;
  border-color: #fecaca;
}

.excluded h3 {
  color: #991b1b;
}

.excluded h3 i {
  color: #dc2626;
}

.inclusion-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inclusion-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.included li i {
  color: var(--green);
  font-size: 0.8rem;
}

.excluded li i {
  color: #dc2626;
  font-size: 0.8rem;
}

/* ── Departures Page Responsive ── */
@media (max-width: 900px) {
  .dep-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .season-grid {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .dep-filter-bar {
    flex-direction: column;
  }

  .dep-filter-group {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .dep-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .dep-stat-item {
    justify-content: flex-start;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dep-stat-item>i {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .dep-stat-item strong {
    font-size: 1.15rem;
  }
}

/* ── REGION DETAIL LAYOUT ── */
.region-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.region-layout-reverse {
  direction: rtl;
}

.region-layout-reverse .region-info {
  direction: ltr;
}

.region-info {
  padding: 20px 0;
}

.region-info .section-tag {
  margin-bottom: 16px;
}

.region-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.region-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.r-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.r-stat i {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.1rem;
}

.r-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.r-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.region-highlights {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}

.region-highlights h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-highlights h4 i {
  color: var(--orange);
}

.region-highlights ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.region-highlights li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-highlights li i {
  color: var(--green);
  font-size: 0.8rem;
}

.region-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .region-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .region-layout-reverse {
    direction: ltr;
  }

  .region-image {
    height: 300px;
    order: -1;
  }

  .region-stats {
    justify-content: flex-start;
  }

  .region-highlights ul {
    grid-template-columns: 1fr;
  }
}

/* ── REGION HUB SPECIFIC ── */
.hero-hub {
  height: 65vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-hub-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 10s linear;
}

.hero-hub:hover .hero-hub-bg {
  transform: scale(1.08);
}

.hero-hub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.75));
  z-index: -1;
}

.filter-bar-sticky {
  background: white;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: top 0.35s ease;
}

.navbar.scrolled+.hero-hub+.filter-bar-sticky {
  top: 60px;
}

/* Permit Cards */
.permit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.permit-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.permit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.permit-icon {
  width: 50px;
  height: 50px;
  background: var(--green-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.permit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

/* Seasonal Cards Hub */
.season-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.season-hub-card {
  background: var(--off-white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

.season-hub-card h3 {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.season-hub-card i {
  color: var(--orange);
}