/* ============================================================
   HIMALAYAN PARTNER TREKS — Modern Design System
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary:        #0d2137;
  --primary-mid:    #163350;
  --primary-light:  #1a4a7a;
  --accent:         #e8730a;
  --accent-hover:   #c95f00;
  --accent-light:   #fff3e8;
  --blue:           #0368cd;
  --blue-light:     #e8f2ff;
  --text-dark:      #12202e;
  --text-body:      #4a5a6a;
  --text-light:     #8a9aaa;
  --bg-light:       #f5f8fc;
  --bg-white:       #ffffff;
  --border:         #e2e8f0;
  --shadow-sm:      0 2px 8px rgba(13,33,55,0.08);
  --shadow-md:      0 8px 30px rgba(13,33,55,0.12);
  --shadow-lg:      0 20px 60px rgba(13,33,55,0.15);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:      'Poppins', sans-serif;
  --font-body:      'Open Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; margin: 0; padding: 0; }
li { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
form { margin: 0; padding: 0; }
input, select, button { outline: none; font-family: inherit; }
select { -webkit-appearance: none; -moz-appearance: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; color: var(--text-dark); line-height: 1.2; }
p { color: var(--text-body); line-height: 1.8; }

/* --- Utility Classes --- */
.section-pad   { padding: 80px 0; }
.section-pad-sm{ padding: 50px 0; }
.bg-light-gray { background: var(--bg-light); }
.text-accent   { color: var(--accent); }
.text-primary  { color: var(--primary) !important; }

/* content-visibility: auto defers rendering of off-screen sections.
   Dramatically improves FCP/LCP on long pages. */
.section-pad,
.section-pad-sm,
.inner-section,
.packages-section,
.welcome-section,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px; /* estimated height prevents scroll-jump */
}

/* Section Title */
.section-title { margin-bottom: 50px; }
.section-title .label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-title p {
  color: var(--text-body);
  max-width: 560px;
  font-size: 16px;
}
.section-title .title-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.section-title .title-bar::before,
.section-title .title-bar::after {
  content: '';
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  flex: 1;
  max-width: 60px;
  border-radius: 2px;
}
.section-title .title-bar span {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FLOATING PHONE BUTTONS (mobile)
   ============================================================ */
.for-phone-contact {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 9999;
  gap: 8px;
}
.for-phone-contact ul { display: flex; flex-direction: column; gap: 8px; }
.for-phone-contact ul li { display: block; }
.for-phone-contact ul li a i {
  width: 44px; height: 44px;
  font-size: 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.for-phone-contact ul li a:hover i { transform: scale(1.1); background: var(--accent); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
/* ── SEARCH OVERLAY ── */
#nv-left-srch-box {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  z-index: 999999;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 0 36px;
  opacity: 0;
  transition: top 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
#nv-left-srch-box.open {
  top: 0;
  opacity: 1;
}
/* Header row */
.srch-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.srch-header h5 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-head);
  margin: 0 0 4px;
}
.srch-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
#close-nv {
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}
#close-nv:hover { background: #ff4444; border-color: #ff4444; color: #fff; }
/* Input */
.srch-input-wrap {
  position: relative;
  margin-bottom: 18px;
}
.srch-ico {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 17px;
  pointer-events: none;
}
#srch-text {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 50px 16px 52px;
  font-size: 16px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  outline: none;
}
#srch-text::placeholder { color: rgba(255,255,255,0.32); }
#srch-text:focus { border-color: var(--accent); background: rgba(255,255,255,0.1); }
#srch-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 17px;
  display: none;
  transition: color 0.2s;
}
#srch-clear:hover { color: #ff4444; }
#srch-clear.visible { display: block; }
/* Live results */
.srch-results {
  display: none;
  flex-direction: column;
  gap: 6px;
  max-height: 380px;
  overflow-y: auto;
  margin-bottom: 18px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.srch-results.visible { display: flex; }
.srch-results::-webkit-scrollbar { width: 4px; }
.srch-results::-webkit-scrollbar-track { background: transparent; }
.srch-results::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
/* Single result card */
.srch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  cursor: pointer;
}
.srch-item:hover { background: rgba(232,115,10,0.12); border-color: var(--accent); }
.srch-item img {
  width: 54px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.srch-item-info { flex: 1; min-width: 0; }
.srch-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-head);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.srch-item-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.srch-item-meta span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}
.srch-item-meta span i { color: var(--accent); font-size: 10px; }
.srch-item-price { font-size: 13px; font-weight: 800; color: var(--accent); white-space: nowrap; }
/* No results */
.srch-no-results {
  text-align: center;
  padding: 28px 0;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.srch-no-results i { font-size: 28px; display: block; margin-bottom: 8px; color: rgba(255,255,255,0.15); }
/* Spinner */
.srch-spinner {
  text-align: center;
  padding: 24px 0;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}
.srch-spinner i { animation: spin 0.8s linear infinite; display: inline-block; margin-right: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }
/* Popular tags */
.srch-popular {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.srch-popular > span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.srch-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.srch-tag:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================
   NAVIGATION — MAIN (desktop)
   ============================================================ */
.main-nav-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── TOP INFO BAR ── */
.nav-topbar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 9px 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.nav-topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-topbar .contact-strip {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-topbar .contact-strip a {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.nav-topbar .contact-strip a:hover { color: #fff; }
.nav-topbar .contact-strip i {
  font-size: 12px;
  color: var(--accent);
  width: 14px;
  text-align: center;
}
/* Separator between contact items */
.nav-topbar .contact-strip a + a {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.nav-topbar .right-strip {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-topbar .right-strip > a {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px 0 0;
  margin-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.nav-topbar .right-strip > a:hover { color: var(--accent); }
.nav-topbar .right-strip > a i { color: var(--accent); font-size: 12px; }
.nav-topbar .right-strip .social-icons { display: flex; gap: 8px; }
.nav-topbar .right-strip .social-icons a {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.nav-topbar .right-strip .social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ── MAIN NAVBAR ── */
.main-navbar {
  background: rgba(10,25,45,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── SCROLLED STATE ── */
.main-nav-wrapper.scrolled .nav-topbar {
  padding: 0;
  max-height: 0;
}
.main-nav-wrapper.scrolled .main-navbar {
  background: #fff;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 4px 30px rgba(13,33,55,0.14);
}
.main-nav-wrapper.scrolled .navbar-nav .nav-link {
  color: var(--text-dark) !important;
}
.main-nav-wrapper.scrolled .navbar-nav .nav-item:hover > .nav-link,
.main-nav-wrapper.scrolled .navbar-nav .nav-link.active {
  color: var(--accent) !important;
}
.main-nav-wrapper.scrolled .nav-actions .btn-search {
  background: var(--bg-light);
  border-color: var(--border);
  color: var(--text-dark);
}
.main-nav-wrapper.scrolled .nav-actions .btn-search:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.main-navbar .navbar {
  padding: 0;
  display: flex;
  align-items: center;
}
.main-navbar .container-fluid { padding: 0 36px; }

/* ── LOGO ── */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  margin-right: 20px;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar-brand img { height: 64px; width: auto; }
.navbar-brand .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand .logo-text .lname {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  transition: color var(--transition);
}
.navbar-brand .logo-text .lsub {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.main-nav-wrapper.scrolled .logo-text .lname { color: var(--text-dark); }
.main-nav-wrapper.scrolled .logo-text .lsub  { color: var(--accent); }

/* ── NAV LINKS ── */
.navbar-nav { display: flex; align-items: stretch; gap: 0; }
.navbar-nav .nav-item { position: relative; }
.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.94) !important;
  padding: 22px 16px !important;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.1px;
}
/* Orange underline indicator */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.navbar-nav .nav-item:hover > .nav-link { color: #fff !important; }
.navbar-nav .nav-item:hover > .nav-link::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
/* Chevron rotation */
.navbar-nav .nav-link .fa-chevron-down {
  font-size: 9px;
  transition: transform 0.2s ease;
}
.navbar-nav .nav-item:hover > .nav-link .fa-chevron-down { transform: rotate(180deg); }

/* ── DROPDOWNS ── */
.navbar-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  border: none;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 20px 60px rgba(13,33,55,0.18);
  min-width: 240px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  display: block;
  pointer-events: none;
}
.navbar-nav .nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.navbar-nav .dropdown-menu li { position: relative; display: block; width: 100%; }
.navbar-nav .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  font-size: 14.5px;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar-nav .dropdown-menu .dropdown-item:last-child { border-bottom: none; }
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background: var(--accent-light);
  color: var(--accent);
  padding-left: 28px;
}
.navbar-nav .dropdown-menu .dropdown-item i {
  font-size: 10px;
  color: var(--accent);
  opacity: 0.6;
}
.navbar-nav .dropdown-menu .dropdown-item:hover i { opacity: 1; }

/* Second-level dropdown */
.second-drop {
  position: absolute;
  top: -3px;
  left: 100%;
  background: #fff;
  border-top: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: 0 20px 60px rgba(13,33,55,0.18);
  min-width: 280px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 10;
}
.navbar-nav .dropdown-menu li:hover > .second-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}
.second-drop ul li { display: block; }
.second-drop ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  font-weight: 400;
}
.second-drop ul li a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.second-drop ul li:last-child a { border-bottom: none; }
.second-drop ul li a:hover {
  background: var(--accent-light);
  color: var(--accent);
  padding-left: 28px;
}
.second-drop ul li a:hover::before { opacity: 1; }

/* ── NAV ACTIONS (right side) ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 16px;
  flex-shrink: 0;
}
.nav-actions .btn-search {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-head);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.nav-actions .btn-search:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}
.nav-actions .btn-customize {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid var(--accent);
  letter-spacing: 0.2px;
}
.nav-actions .btn-customize:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,115,10,0.45);
}
.nav-actions .btn-customize i { font-size: 13px; }

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.mobile-nav-wrapper {
  display: none;
  position: sticky;
  top: 0;
  z-index: 999;
}
.mobile-topbar {
  background: var(--primary);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent);
}
.mobile-topbar .logo { display: flex; align-items: center; gap: 8px; }
.mobile-topbar .logo img { height: 46px; }
.mobile-topbar .right-icons { display: flex; align-items: center; gap: 14px; }
.mobile-topbar .right-icons a {
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  transition: var(--transition);
}
.mobile-topbar .right-icons a:hover { color: var(--accent); }
.mobile-topbar .btn-menu {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-topbar .btn-menu:hover { background: var(--accent-hover); }
.mobile-searchbar {
  background: #132233;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-searchbar input {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 4px 0;
  font-family: var(--font-body);
}
.mobile-searchbar input::placeholder { color: rgba(255,255,255,0.35); }
.mobile-searchbar i { color: var(--accent); font-size: 15px; }

/* Mobile Sidebar */
#nav-side {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 360px;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}
#n-side {
  width: 100%;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.side-header {
  background: var(--primary);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent);
}
.side-header img { height: 44px; }
.side-header .btn-close-side {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}
.side-header .btn-close-side:hover { background: var(--accent); border-color: var(--accent); }
.side-label {
  background: var(--bg-light);
  padding: 9px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
#nav-side ul { padding: 0; }
#nav-side ul li { display: block; border-bottom: 1px solid var(--border); }
#nav-side ul li > a {
  display: block;
  padding: 14px 20px;
  color: var(--text-dark) !important;
  font-size: 15.5px;
  font-weight: 600;
  font-family: var(--font-head);
  transition: var(--transition);
}
#nav-side ul li > a:hover { color: var(--accent) !important; background: var(--bg-light); padding-left: 26px; }
#nav-side .accordion-button {
  padding: 14px 20px !important;
  background: #fff !important;
  color: var(--text-dark) !important;
  font-size: 15.5px;
  font-weight: 600;
  font-family: var(--font-head);
  box-shadow: none !important;
  border-radius: 0 !important;
}
#nav-side .accordion-button:not(.collapsed) {
  background: var(--accent-light) !important;
  color: var(--accent) !important;
  border-left: 3px solid var(--accent);
}
#nav-side .accordion-body { padding: 0 !important; background: var(--bg-light); }
#nav-side .accordion-body ul li a {
  font-size: 14.5px;
  padding: 11px 20px 11px 30px;
  color: var(--text-body) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
#nav-side .accordion-body ul li a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
#nav-side .accordion-body ul li a:hover { color: var(--accent) !important; }
#nav-side .accordion-item { border: none; border-bottom: 1px solid var(--border); border-radius: 0 !important; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-shell {
  position: relative;
}

.hero-slider { position: relative; }
.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100%;
}

.hero-slider .slick-slide {
  position: relative;
  height: auto;
}

.hero-slider .slick-slide > .hero-slide,
.hero-slider > .hero-slide {
  position: relative;
  height: 100%;
}

.hero-slider-shell .hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
}

.hero-slider-shell .slick-dots {
  bottom: 88px;
  z-index: 8;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  z-index: 12;
  top: calc(50% - 36px);
}
.hero-slide { position: relative; }
.hero-slide img {
  width: 100%;
  height: clamp(420px, calc(100svh - 118px), 920px);
  min-height: 380px;
  max-height: 920px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,33,55,0.85) 0%,
    rgba(13,33,55,0.4) 50%,
    rgba(13,33,55,0.2) 100%
  );
  z-index: 2;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 80px;
  padding-bottom: 80px;
}
.hero-content .inner { max-width: 680px; }
.hero-content .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn-primary-hero {
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--accent);
}
.hero-btns .btn-primary-hero:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,115,10,0.4);
}
.hero-btns .btn-outline-hero {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.hero-btns .btn-outline-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}
.hero-stats .inner {
  display: flex;
  align-items: stretch;
}
.hero-stats .stat {
  flex: 1;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat .icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.hero-stats .stat .info .num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.hero-stats .stat .info .label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Slick overrides for hero */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15) !important;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background: var(--logo-blue, #2080c0) !important;
  border-color: var(--logo-blue, #2080c0);
}
.hero-slider .slick-prev { left: 24px; }
.hero-slider .slick-next { right: 24px; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { padding: 90px 0; background: #fff; }
.welcome-section .content-side { padding-right: 40px; }
.welcome-section .sub-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.welcome-section .sub-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.welcome-section h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.welcome-section .divider {
  width: 60px; height: 4px;
  background: linear-gradient(to right, var(--accent), var(--blue));
  border-radius: 4px;
  margin-bottom: 24px;
}
.welcome-section p { font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.welcome-section .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.welcome-section .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.welcome-section .feature-item i {
  width: 28px; height: 28px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.welcome-section .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.welcome-section .btn-more:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,115,10,0.35);
}
.welcome-section .img-side { position: relative; }
.welcome-section .img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.welcome-section .img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}
.welcome-section .img-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}
.welcome-section .img-grid:hover img { transform: scale(1.03); }
.welcome-section .experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.welcome-section .experience-badge .num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-head);
}
.welcome-section .experience-badge .text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
}
.welcome-section .tripadvisor-badge {
  position: absolute;
  top: -16px;
  right: -16px;
}
.welcome-section .tripadvisor-badge img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* ============================================================
   TOP REGIONS
   ============================================================ */
.regions-section { padding: 80px 0; background: var(--bg-light); }
.regions-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.region-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.region-card:first-child { grid-row: span 2; }
.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.region-card:hover img { transform: scale(1.08); }
.region-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.85) 0%, rgba(13,33,55,0.1) 60%, transparent 100%);
  transition: var(--transition);
}
.region-card:hover .overlay { background: linear-gradient(to top, rgba(13,33,55,0.9) 0%, rgba(13,33,55,0.3) 70%, rgba(13,33,55,0.1) 100%); }
.region-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
}
.region-card .info .name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.region-card:first-child .info .name { font-size: 28px; }
.region-card .info .count {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 5px;
}
.region-card .info .count i { font-size: 11px; color: var(--accent); }
.region-card .explore-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.region-card:hover .explore-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============================================================
   PACKAGES / TREK CARDS  — unified design used on all pages
   ============================================================ */
.packages-section { padding: 80px 0; background: #fff; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Card shell */
.trek-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,33,55,0.07);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.trek-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,33,55,0.14);
  border-color: transparent;
}

/* Image area */
.trek-card .card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: clamp(168px, 24vw, 228px);
  max-height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.trek-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.trek-card:hover .card-img img { transform: scale(1.07); }

/* Region label – top-left pill */
.trek-card .card-region {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13,33,55,0.78);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
}

/* Difficulty badge – top-right */
.trek-card .card-diff {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trek-card .card-diff.easy        { background: #dcfce7; color: #16a34a; }
.trek-card .card-diff.moderate    { background: #fef9c3; color: #ca8a04; }
.trek-card .card-diff.challenging { background: #fee2e2; color: #dc2626; }
.trek-card .card-diff.strenuous   { background: #ede9fe; color: #7c3aed; }

/* Price ribbon – bottom-left */
.trek-card .price-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 6px 16px 6px 18px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-head);
  border-radius: 0 var(--radius-sm) 0 0;
}

/* Body */
.trek-card .card-body {
  padding: 18px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trek-card .trek-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
  transition: color var(--transition);
  display: block;
}
.trek-card:hover .trek-title { color: var(--accent); }

/* ──── TRIP STATS: 2×2 icon grid (icomoon-style badges) ──── */
.trip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-bottom: 16px;
}
.trip-stat {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
/* Coloured icon square */
.trip-stat .ts-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.trip-stat:nth-child(1) .ts-icon { background: #fff3e8; color: var(--accent); }   /* orange – duration */
.trip-stat:nth-child(2) .ts-icon { background: #e8f2ff; color: #0368cd; }          /* blue   – altitude */
.trip-stat:nth-child(3) .ts-icon { background: #f0fff4; color: #16a34a; }          /* green  – difficulty */
.trip-stat:nth-child(4) .ts-icon { background: #f5f0ff; color: #7c3aed; }          /* purple – group */
/* Text block */
.trip-stat .ts-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.trip-stat .ts-text em {
  font-size: 10px;
  font-style: normal;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1;
  margin-bottom: 2px;
}
.trip-stat .ts-text strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer row */
.trek-card .card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.trek-card .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
}
.trek-card .rating .stars { color: #f59e0b; display: flex; gap: 1px; font-size: 11px; }
.trek-card .rating .count { color: var(--text-light); }
.trek-card .btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.trek-card .btn-detail i { font-size: 10px; transition: transform var(--transition); }
.trek-card:hover .btn-detail { background: var(--accent); }
.trek-card:hover .btn-detail i { transform: translateX(3px); }

.packages-section .view-all-wrap { text-align: center; margin-top: 44px; }
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.btn-view-all:hover { background: var(--primary); color: #fff; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 80px 0;
  background-image: linear-gradient(rgba(13,33,55,0.82), rgba(13,33,55,0.9)), url(../images/ban2.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.why-section .section-title h2 { color: #fff; }
.why-section .section-title p { color: rgba(255,255,255,0.75); }
.why-section .section-title .label { background: rgba(232,115,10,0.2); color: var(--accent); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,115,10,0.4);
  transform: translateY(-2px);
}
.why-item .icon {
  width: 50px; height: 50px;
  background: rgba(232,115,10,0.15);
  border: 1px solid rgba(232,115,10,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-item:hover .icon { background: var(--accent); color: #fff; transform: rotate(5deg); }
.why-item .text .title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.why-item .text p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; padding: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { padding: 80px 0; background: var(--bg-light); }
.testi-section .responsive { padding: 20px 0; }
.testi-card {
  margin: 10px 12px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-card .quote-icon {
  font-size: 50px;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  font-weight: 900;
  position: absolute;
  top: 16px;
  right: 20px;
  color: #e8e8e8;
}
.testi-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.testi-card .reviewer img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testi-card .reviewer .info .name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-card .reviewer .info .stars {
  display: flex;
  gap: 2px;
  margin-top: 3px;
}
.testi-card .reviewer .info .stars i { font-size: 12px; color: #f59e0b; }
.testi-card p { font-size: 14px; line-height: 1.75; color: var(--text-body); padding: 0; }
.testi-section .responsive {
  position: relative;
  padding: 0 36px;
}

.testi-section .responsive .slick-prev,
.testi-section .responsive .slick-next {
  width: 40px;
  height: 40px;
  background: #fff !important;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  z-index: 5;
}
.testi-section .responsive .slick-prev { left: 0 !important; }
.testi-section .responsive .slick-next { right: 0 !important; }
.testi-section .responsive .slick-prev i,
.testi-section .responsive .slick-next i {
  color: var(--logo-blue, #2080c0);
}
.testi-section .responsive .slick-prev:hover,
.testi-section .responsive .slick-next:hover {
  background: var(--logo-blue, #2080c0) !important;
  border-color: var(--logo-blue, #2080c0);
}
.testi-section .responsive .slick-prev:hover i,
.testi-section .responsive .slick-next:hover i { color: #fff; }

/* ============================================================
   BLOG CARDS — uniform style used on homepage + blog.php
   ============================================================ */
.blog-section { padding: 80px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,33,55,0.07);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,33,55,0.13); border-color: transparent; }

/* Image area */
.blog-card .blog-img {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: clamp(160px, 22vw, 210px);
  max-height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }

/* Category badge */
.blog-card .blog-img .blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Body */
.blog-card .blog-body {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.blog-card .blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card .blog-meta i { font-size: 11px; color: var(--accent); }

/* Also support old .date class (homepage cards) */
.blog-card .date {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.blog-card .date i { font-size: 11px; color: var(--accent); }

.blog-card .blog-title {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--transition);
  display: block;
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-card .blog-excerpt,
.blog-card p { font-size: 13.5px; line-height: 1.75; color: var(--text-body); padding: 0; flex: 1; }

.blog-card .read-link,
.blog-card .blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
  transition: var(--transition);
}
.blog-card .read-link i,
.blog-card .blog-read-more i { font-size: 11px; transition: transform var(--transition); }
.blog-card:hover .read-link i,
.blog-card:hover .blog-read-more i { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-members {
  background: var(--bg-light);
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-members .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-members .group-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.footer-members .logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-members .logos a {
  display: block;
  transition: var(--transition);
  opacity: 0.7;
}
.footer-members .logos a:hover { opacity: 1; transform: scale(1.05); }
.footer-members .logos img { height: 44px; width: auto; }
.footer-members .payment-block { text-align: right; }
.footer-members .payment-block img { height: 44px; width: auto; }
.footer-social .social-links { display: flex; gap: 10px; margin-top: 8px; }
.footer-social .social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  color: #fff;
}
.footer-social .social-links a:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.social-fb   { background: #1778f2; }
.social-tw   { background: #1da1f2; }
.social-ig   { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.social-yt   { background: #ff0000; }
.social-pin  { background: #e60023; }

main-footer {
  background: var(--primary);
  padding: 60px 0 30px;
}
footer {
  background: var(--primary);
  padding: 60px 0 30px;
}
footer h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-head);
}
footer .footer-divider {
  width: 40px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}
footer .footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  padding: 0;
  margin-bottom: 20px;
}
footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: var(--transition);
}
footer .footer-contact-item:hover { color: #fff; }
footer .footer-contact-item i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
footer ul.lnk { display: block; }
footer ul.lnk li { display: block; margin-bottom: 8px; }
footer ul.lnk li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
}
footer ul.lnk li a::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}
footer ul.lnk li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  background: #04172a;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.trek-card,
.why-item,
.blog-card,
.region-card,
.testi-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow var(--transition);
}
.trek-card.in-view,
.why-item.in-view,
.blog-card.in-view,
.region-card.in-view,
.testi-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger siblings */
.trek-card:nth-child(2),  .why-item:nth-child(2),  .blog-card:nth-child(2)  { transition-delay: 0.1s; }
.trek-card:nth-child(3),  .why-item:nth-child(3),  .blog-card:nth-child(3)  { transition-delay: 0.2s; }
.trek-card:nth-child(4),  .why-item:nth-child(4)  { transition-delay: 0.15s; }
.trek-card:nth-child(5),  .why-item:nth-child(5)  { transition-delay: 0.25s; }
.trek-card:nth-child(6),  .why-item:nth-child(6)  { transition-delay: 0.3s; }
.region-card:nth-child(2) { transition-delay: 0.08s; }
.region-card:nth-child(3) { transition-delay: 0.16s; }
.region-card:nth-child(4) { transition-delay: 0.24s; }
.region-card:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .hero-content { padding: 0 50px; padding-bottom: 80px; }
  .main-navbar .container-fluid { padding: 0 24px; }
}

@media (max-width: 991px) {
  .main-nav-wrapper { display: none; }
  .mobile-nav-wrapper { display: block; }
  .for-phone-contact { display: flex; }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    top: calc(50% - 28px);
  }

  .hero-slider-shell .slick-dots {
    bottom: 72px;
  }

  .hero-slider .slick-prev { left: 12px; }
  .hero-slider .slick-next { right: 12px; }

  .testi-section .responsive {
    padding: 0 28px;
  }

  .hero-content { padding: 0 20px; padding-bottom: 80px; }

  .hero-slide img {
    height: clamp(360px, calc(100svh - 104px), 620px);
    min-height: 320px;
    max-height: 620px;
    object-position: center 40%;
  }
  .hero-stats .inner { flex-wrap: wrap; }
  .hero-stats .stat { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
  .hero-stats .stat:nth-child(2n) { border-right: none; }

  .welcome-section .content-side { padding-right: 0; margin-bottom: 40px; }
  .welcome-section .img-grid { grid-template-rows: 160px 160px; }
  .welcome-section .experience-badge { bottom: -10px; left: 10px; }

  .regions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .region-card:first-child { grid-row: span 1; grid-column: span 2; }

  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .footer-members .inner { justify-content: flex-start; }
  .footer-members .payment-block { text-align: left; }
}

@media (max-width: 767px) {
  .hero-slide img {
    height: clamp(300px, calc(100svh - 96px), 520px);
    min-height: 280px;
    max-height: 520px;
    object-position: center 42%;
  }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 15px; }
  .hero-btns .btn-primary-hero,
  .hero-btns .btn-outline-hero { padding: 11px 20px; font-size: 13px; }
  .hero-stats .stat { flex: 1 1 100%; }

  .packages-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .region-card:first-child { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 50px 0; }
  .welcome-section .features { grid-template-columns: 1fr; }
  .welcome-section .img-grid { grid-template-columns: 1fr; grid-template-rows: 200px 140px 140px; }
  .welcome-section .img-grid img:first-child { grid-row: span 1; height: 200px; }
  .welcome-section .experience-badge { position: static; margin-top: 16px; display: inline-block; }

  .footer-bottom .inner { flex-direction: column; text-align: center; }

  /* Search overlay on mobile */
  #nv-left-srch-box { padding: 24px 0 20px; }
  .srch-header h5 { font-size: 16px; }
  #srch-text { font-size: 15px; padding: 14px 44px 14px 46px; }
  .srch-results { max-height: 55vh; }
  .srch-item img { width: 44px; height: 38px; }
  .srch-item-name { font-size: 13px; }
  .srch-popular { gap: 6px; }
}
