/* ============================================
   CSS Variables & Root Styles
   ============================================ */

:root {
  /* Colors */
  --primary-color: #2e9acd;
  --primary-light-color: #d5f1ff;
  --secondary-color: #08613a;
  --text-color: #404040;
  --text-black: #000000;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #fff;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;

  /* Fonts */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Archivo', sans-serif;

  /* Font Sizes - Mobile First */
  --fs-h1: 38px;
  --fs-h2: 28px;
  --fs-h3: 24px;
  --fs-h4: 22px;
  --fs-h5: 20px;
  --fs-h6: 18px;
  --fs-base: 16px;
  --fs-sm: 15px;
  --fs-xs: 14px;

  /* Line Heights */
  --lh-heading: 1.2;
  --lh-body: 1.6;
  --lh-tight: 1.4;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* ============================================
   Global Styles
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text-color);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

.accessibility {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.wrapper {
  width: 100%;
  position: relative;
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
.page-holder {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.block {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

main {
  padding-top: 70px;
}

/* ============================================
   Heading Tags
   ============================================ */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
}

h1,
.h1 {
  font-size: var(--fs-h1);
}

h2,
.h2 {
  font-size: var(--fs-h2);
}

h3,
.h3 {
  font-size: var(--fs-h3);
}

h4,
.h4 {
  font-size: var(--fs-h4);
}

h5,
.h5 {
  font-size: var(--fs-h5);
}

h6,
.h6 {
  font-size: var(--fs-h6);
}

p:last-child {
  margin-bottom: 0;
}

.fs-xs {
  font-size: var(--fs-xs);
}

/* ============================================
   Links & Text
   ============================================ */

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--secondary-color);
}

/* ============================================
   Colors
   ============================================ */

.bg-gradient {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d5f1ff+0,ffffff+100 */
  background: linear-gradient(
    to bottom,
    rgba(213, 241, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  ) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/* ============================================
   Fonts
   ============================================ */

.primary-font {
  font-family: var(--font-heading);
}

.secondary-font {
  font-family: var(--font-body);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  font-family: var(--font-heading);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background-color: #1e7aad;
  border-color: #1e7aad;
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background-color: #054a2a;
  border-color: #054a2a;
  color: var(--bg-white);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.specialist-contact {
  padding: 16px;
  background-color: #f0faff;
}

.whatsapp-btn {
  color: var(--bg-white);
  background-color: #25d366;
}

.whatsapp-btn:hover {
  color: var(--bg-white);
  background-color: #18b753;
}

/* ============================================
   Breadcrumb
   ============================================ */

.breadcrumb-item {
  color: var(--primary-color);
}

.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-white);
}

/* ============================================
   Header & Navigation
   ============================================ */

.navbar-brand {
  width: 120px;
}

.navbar-wrapper {
  position: fixed;
  top: 42px;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
}

.navbar-wrapper.fixed-header {
  top: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h5);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text {
  color: var(--primary-color);
}

.brand-subtext {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--secondary-color);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color var(--transition-base);
  font-size: var(--fs-sm);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.btn-contact {
  background-color: var(--primary-color);
  color: var(--bg-white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-md);
}

@media (min-width: 992px) {
  .btn-contact {
    margin-top: 0;
  }
}

.top-bar {
  font-size: 14px;
  background-color: var(--secondary-color);
  padding: 10px 0;
}

.top-bar,
.top-bar a {
  color: var(--text-white);
}

.top-bar span {
}

.top-bar i {
  margin-right: 0.5rem;
}

/* ============================================
   Header
   ============================================ */
/* ===== Mobile Offcanvas Menu (slides from TOP) ===== */

.navbar-toggler:focus {
  box-shadow: none;
}

.nst-offcanvas {
  height: auto; /* top offcanvas uses height, not width */
  max-height: 90vh;
  background: #fff;
}

/* Smooth slide easing for the panel itself */
.nst-offcanvas.offcanvas-top {
  height: auto;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nst-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--color-border, #e6eaee);
  padding: 1.25rem 1.5rem;
}

.nst-offcanvas .offcanvas-body {
  padding: 1.5rem;
}

.contact-drawer {
  padding: 15px;
  background-color: #e9f8ff;
}

/* Nav items start hidden + shifted UP, animate down into place */
.nst-offcanvas .navbar-nav .nav-item {
  opacity: 0;
  transform: translateY(-20px);
}

.slicknav_menu {
  background-color: transparent;
  margin-bottom: 15px;
}

/* The Customize Trip button, animated in last */
.nst-offcanvas .offcanvas-body > .btn {
  opacity: 0;
  transform: translateY(-20px);
}
.nst-offcanvas.show .offcanvas-body > .btn {
  animation: nstFadeSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.48s;
}

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

.nst-offcanvas .nav-link,
.slicknav_parent{
  font-family: var(--font-heading, sans-serif);
  font-weight: 500;
  color: var(--color-heading, #14181d);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border, #e6eaee);
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.slicknav_parent {
		margin-left:8px;
}

.slicknav_parent .slicknav_row{
	padding:0;
	  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.nst-offcanvas .nav-item:last-child .nav-link,
.slicknav_parent .slicknav_row .nav-link{
  border-bottom: 0;
}

.nst-offcanvas .nav-link:hover,
.slicknav_parent:hover > .slicknav_row > a{
  color: var(--color-primary, #2e9acd);
  padding-left: 0.5rem;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover{
  border-radius: 0;
  background-color: transparent;
}


  .slicknav_arrow {
    float: right;
    display: inline-block;
    position: relative;
    width: 14px;
    visibility: hidden; 
    color: var(--primary-color);
    transition: color 0.2s ease;
  }

  .slicknav_arrow::after {
    visibility: visible; 
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "FontAwesome";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 22px;
  }
  
  .slicknav_collapsed .slicknav_arrow::after {
    content: "\f078";
  }

  .slicknav_open .slicknav_arrow::after { 
    content: "\f078";
  }
	

/* Dim + blur the backdrop */
.offcanvas-backdrop.show {
  opacity: 0.55;
  backdrop-filter: blur(2px);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .nst-offcanvas .navbar-nav .nav-item,
  .nst-offcanvas .offcanvas-body > .btn {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================
   page Banner
   ============================================ */

.page-banner {
  position: relative;
  text-align: center;
  height: 250px;
  overflow: hidden;
}

.page-banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.breadcrumb {
  margin: 0;
  justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
height:calc(100vh - 160px);
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: pulse 10s ease-in-out infinite;
}

.hero-content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-title {
  color: var(--text-dark);
  font-weight: 900;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: var(--fs-base);
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: var(--lh-body);
}

.search-box {
  display: flex;
  gap: 0;
  padding: 5px;
  border-radius: 90px;
  overflow: hidden;
  background-color: #e9f8ff;
  box-shadow: var(--shadow-md);
  max-width: 100%;
}

.search-box input {
  border: none;
  padding: 0.875rem 1.25rem;
  font-size: var(--fs-base);
  flex: 1;
  background-color: transparent;
}

.search-box input:focus {
  box-shadow: none;
  background-color: transparent;
}

.search-box input::placeholder {
  color: var(--text-light);
}

.search-box .btn {
  padding: 0;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 52px;
  border-radius: 100px;
  margin: 0;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Section Styles
   ============================================ */

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

.section-header h2 {
  color: var(--text-dark);
}

.section-title span {
  color: var(--primary-color);
}

.section-text {
  color: var(--text-light);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
}

/* ============================================
   Featured Packages Section
   ============================================ */

.featured-packages {
  background-color: var(--bg-white);
}

.package-card {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid #d5d5d5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.package-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.package-badge {
  display: inline-block;
  background-color: #ff3700;
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: var(--fs-xs);
  margin-bottom: 10px;
}

.package-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.package-title a {
  font-weight: 600;
  font-size: var(--fs-h4);
  color: var(--text-dark);
  line-height: var(--lh-tight);
}

.package-title a:hover {
  color: var(--primary-color);
}

.package-location,
.package-duration {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.package-price {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: auto;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: var(--fs-xs);
}

.price-current {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
}

.package-slider .swiper-wrapper {
  padding-bottom: 40px;
}

.package-slider .swiper-pagination {
  bottom: -5px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 4px;
  border-radius: 30px;
}

.swiper-pagination-bullet-active {
  width: 30px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 2px;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
  position: relative;
}

.about-section .about-bg-img img {
  min-height: 100vh;
  object-fit: cover;
}

.about-section .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.about-features {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.about-features .feature-item {
  text-align: center;
  color: var(--text-black);
}

.about-features .feature-item .icon {
  margin-bottom: 10px;
}

.about-features .feature-item .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* ============================================
   Video Section
   ============================================ */

.video-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  min-height: 480px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}

/* Background image + video both fill the section */
.agency-video__bg,
.agency-video__player {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.agency-video__bg img,
.agency-video__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay on the image */
.agency-video__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 22, 0.55);
}

/* Video layer hidden until activated */
.agency-video__player {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.video-section.is-playing .agency-video__player {
  opacity: 1;
  visibility: visible;
}

/* Fade out the image + content once playing */
.video-section.is-playing .agency-video__bg,
.video-section.is-playing .agency-video__content {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.agency-video__content {
  position: relative;
  z-index: 2;
  transition: opacity 0.5s ease;
}

.agency-video__content p {
  color: #b5b5b5;
}

.agency-video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 1.4rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: agencyPulse 2.4s infinite;
}

.agency-video__play:hover {
  background: var(--color-primary, #2e9acd);
  border-color: var(--color-primary, #2e9acd);
  transform: scale(1.08);
  animation: none;
}

@keyframes agencyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .agency-video__play {
    animation: none;
  }
}

/* ============================================
   Why Trek Section
   ============================================ */

.feature-text-card,
.feature-img-card img,
.feature-card {
  transition: all var(--transition-base);
  height: 100%;
  border-radius: 20px;
}

.feature-text-card {
  color: var(--text-white);
  padding: 30px;
  background-color: var(--primary-color);
}

.feature-img-card {
  order: 4;
}

.feature-img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.feature-card {
  background-color: var(--primary-light-color);
  padding: 30px 20px;
}

.feature-card:hover,
.feature-img-card:hover img,
.feature-text-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.feature-icon {
  width: 60px;
  margin-bottom: 30px;
}

.feature-title {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-text {
  font-size: var(--fs-xs);
}

.feature-card-wrap:last-child {
  order: 7;
}

/* ============================================
   Testimonials Section
   ============================================ */

.floating-img {
  position: absolute;
}

.testimonials-section {
  position: relative;
}

.testimonials-slider {
  padding: 0 70px;
}

.testimonials-section .floating-img {
  top: 0;
  right: 0;
  max-width: 600px;
}

.testimonial-card .testimonials-img img {
  border-radius: 20px;
}

.testimonial-rating {
  color: var(--warning-color);
  font-size: var(--fs-base);
  letter-spacing: 0.25rem;
}

.testimonial-text {
  font-size: var(--fs-base);
  color: var(--text-dark);
  line-height: var(--lh-body);
  margin-bottom: 30px;
}

.testimonial-author h4 {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.testimonial-author p {
  color: var(--text-light);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ff8042;
  font-size: 18px;
}
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: var(--primary-color);
  opacity: 0.3;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--text-white);
  font-size: 16px;
}

/* ============================================
   Latest Blogs Section
   ============================================ */

.latest-blogs {
  background-color: #d5f1ff;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.blog-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 30px 20px;
}

.blog-date {
  font-size: var(--fs-xs);
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-h5);
}

.blog-title a {
  color: var(--text-dark);
}
.blog-title a:hover {
  color: var(--primary-color);
}

.btn-read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-base);
  margin-top: auto;
}

.btn-read-more:hover {
  color: var(--secondary-color);
}

.btn-read-more i {
  transition: var(--transition-base);
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

/* ============================================
   FAQ Section
   ============================================ */

.accordion {
  border: none;
}

.accordion-item {
  padding-bottom: 10px;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #eaecf0;
  border-radius: 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  font-size: var(--fs-h5);
  font-weight: 500;
  padding: 25px 0 15px 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: none;
  font-family: 'FontAwesome';
}

.accordion-button::after {
  content: '\f055';
}

.accordion-button:not(.collapsed)::after {
  content: '\f056';
  transform: none;
}

.accordion-body {
  color: var(--text-light);
  font-size: var(--fs-base);
  padding: 0 0 25px 0;
}

.team-contact-section {
  position: relative;
}

.team-contact {
  position: relative;
  text-align: center;
  padding: 50px 20px;
  background-color: #e9f8ff;
  border-radius: 20px;
}

.team-contact-section .floating-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  border: 2px solid var(--bg-white);
  overflow: hidden;
}

.avatar-wrap .avatar.left {
  margin-right: -10px;
}

.avatar-wrap .avatar.right {
  margin-left: -10px;
}

.avatar-wrap .avatar.mid {
  transform: scale(1.2);
}

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

/* ============================================
   Package Detail
   ============================================ */

.content-block {
  margin-bottom: 50px;
}

.inner-content-block {
  margin-bottom: 30px;
}

.content-block:last-child,
.inner-content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  margin-bottom: 20px;
}

.trip-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.trip-feature-item .content h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.trip-feature-item .content p {
  font-size: 18px;
  color: var(--primary-color);
}

.hightlight ul {
}
.single-banner-img img {
  border-radius: 20px;
}

.addons-option {
  padding: 20px;
  background-color: #e9f8ff;
  border-left: 2px solid var(--primary-color);
}

.cost-include ul li,
.cost-exclude ul li,
.addons-option ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

.cost-include ul li:last-child,
.cost-exclude ul li:last-child {
  margin-bottom: 0;
}

.cost-include ul li:before,
.cost-exclude ul li:before,
.addons-option ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px dashed #828282;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  font-family: 'Fontawesome';
}

.cost-exclude ul li:before {
  content: '\f00d';
  color: #bf0411;
}

.cost-include ul li:before,
.addons-option ul li:before {
  content: '\f00c';
  color: #009045;
}

.trek-essentials-tabs .nav {
  padding: 15px 30px;
  background-color: var(--primary-light-color);
  border-radius: 16px;
}

.trek-essentials-tabs .nav-pills .nav-item {
  padding-right: 15px;
}

.trek-essentials-tabs .nav-pills .nav-link {
  color: var(--text-color);
  font-weight: 600;
  padding: 0;
}

.trek-essentials-tabs .nav-pills .nav-link.active {
  color: var(--primary-color);
}

.trek-essentials-tabs .nav-pills .nav-link.active,
.trek-essentials-tabs .nav-pills .show > .nav-link {
  background-color: transparent;
}

/* ============================================
   About Page
   ============================================ */

.counter-section {
  padding: 40px 0;
  background-color: var(--primary-light-color);
}

.counter-item {
  color: var(--primary-color);
}

.counter-item span {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.mv-img-wrap {
  position: relative;
}

.mv-img-wrap .primary-img img,
.mv-img-wrap .secondary-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
}

.mv-img-wrap .primary-img img {
  width: 70%;
}

.mv-img-wrap .secondary-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
}

.mv-img-wrap .secondary-img img {
  border: 10px solid var(--bg-white);
}

.mv-img-wrap.right .secondary-img {
  right: unset;
  left: 0;
}

.mv-section .description ul li,
.trek-essentials-tabs .tab-content ul li,
.about-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.mv-section .description ul li:last-child,
.trek-essentials-tabs .tab-content ul li:last-child {
  margin-bottom: 0;
}

.mv-section .description ul li:before,
.trek-essentials-tabs .tab-content ul li:before,
.about-section ul li:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url('../img/star.svg');
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.member {
  padding: 30px;
  margin-bottom: 20px;
  background-color: rgba(46, 154, 205, 0.1);
  border-radius: 20px;
}

.member:last-child {
  margin-bottom: 0;
}

.member-detail figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/3.05;
  object-fit: cover;
  border-radius: 16px;
}

.member-detail h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.member-detail p {
  font-size: 14px;
  color: var(--primary-color);
}

/* ============================================
   Legal Document
   ============================================ */

.document-item {
  position: relative;
}

.document-item figure {
  position: relative;
}

.document-item figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,000000+100&0+37,1+100 */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(161, 161, 161, 0) 37%,
    rgba(0, 0, 0, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.document-item figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.document-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  color: var(--bg-white);
}

.itinerary-accordion-wrap {
  padding-left: 65px;
}

.itinerary-accordion-wrap .ver-line {
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.toggle-all-btn,
.toggle-all-btn:hover {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}

.itinerary-accordions .accordion-item {
  padding: 20px;
  background-color: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 10px;
}

.itinerary-accordions .accordion-item .num {
  position: absolute;
  top: 3px;
  left: -65px;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  color: var(--text-white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: var(--primary-color);
}

.itinerary-accordions .accordion-item .num span {
  display: block;
}

.itinerary-feature-item figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3.5;
  object-fit: cover;
  border-radius: 16px;
}

.itinerary-feature-item .icon {
  font-size: 22px;
  color: var(--primary-color);
}

.gallery-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-page {
  position: relative;
  isolation: isolate;
}

.contact-page:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/Illu.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.contact-item .icon {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #e9f8ff;
  color: var(--primary-color);
  border-radius: 100px;
  text-align: center;
  margin-bottom: 20px;
}

/* ============================================
   Footer Section
   ============================================ */

.footer-section {
  background-color: #041414;
  color: var(--bg-white);
}

.associate {
  background-color: #041414;
  padding-bottom: 40px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg-white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-base);
  text-decoration: none;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: var(--bg-white);
}

.footer-section .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.payment-icons {
  color: var(--primary-color);
  margin-left: 8px;
}

.payment-icons i {
  margin-right: 8px;
}

/* ============================================
   Bootstrap Overrides
   ============================================ */

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-muted {
  color: #797979 !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.rounded {
  border-radius: 16px !important;
}

/* ============================================
   Forms
   ============================================ */

.form-control,
.form-select {
  padding: 0.875rem 1.25rem;
  font-size: var(--fs-base);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-dark);
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 154, 205, 0.25);
}

textarea {
  height: 100px;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
  margin-bottom: 20px;
}

.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}

[type='checkbox'] {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.form-outer {
  padding: 20px;
  background-color: #f0faff;
  border-radius: 20px;
}

.form-wrap {
  padding: 40px;
  background-color: var(--bg-white);
  border-radius: 16px;
}

/* ============================================
   Sidebar
   ============================================ */

.sidebar {
  padding: 25px;
  border-radius: 20px;
}

.sidebar.booking-sidebar {
  padding-top: 100px;
  background-color: #00131c;
}

.sidebar.booking-sidebar .input-group {
  border: 1px solid var(--bg-white);
  background-color: rgba(46, 154, 205, 0.2);
  border-radius: 10px;
}

.sidebar.booking-sidebar .input-group .form-control::placeholder {
  color: var(--bg-white);
}

.sidebar.booking-sidebar .pricing-table {
  background-color: rgba(46, 154, 205, 0.2);
  border: 1px solid var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
}

.sidebar.booking-sidebar .pricing-table .item,
.sidebar.booking-sidebar .pricing-table .total {
  padding: 8px 15px;
}

.sidebar.booking-sidebar .pricing-table .item {
  border-bottom: 1px dashed var(--bg-white);
}

.sidebar.booking-sidebar .pricing-table .total {
  border-top: 1px solid var(--bg-white);
}
.note {
  color: rgba(255, 255, 255, 0.5);
  padding: 7px 10px;
  border: 1px solid #2e9acd;
  border-radius: 10px;
}

.partner-sidebar p {
  color: #dadada;
}

.partner_features li {
  margin-bottom: 25px;
}

.partner_features li:last-child {
  margin-bottom: 0;
}

.partner_features li .icon {
  flex-shrink: 0;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.5px solid var(--bg-white);
  border-radius: 100px;
}

.sidebar.package-sidebar {
  padding: 0;
  border: 1px solid var(--border-color);
}

.sidebar.package-sidebar .sidebar-header {
  padding: 30px 20px 20px 20px;
}

.person-price-detail {
  padding: 20px;
}

.person-counter {
  padding: 10px 20px 20px 20px;
}

.counter-group {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.counter-group .btn-step {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}
.counter-group .btn-step:hover {
  background: #2484b4;
}
.counter-group .btn-step:active {
  transform: scale(0.95);
}

.counter-group .counter-value {
  width: 70px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  -moz-appearance: textfield;
}
.counter-group .counter-value::-webkit-outer-spin-button,
.counter-group .counter-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter-group .counter-value:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 154, 205, 0.2);
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
  body {
    background-color: var(--bg-white);
  }

  .navbar-wrapper,
  .footer-section {
    display: none;
  }

  section {
    page-break-inside: avoid;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.cf7-traveler-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 14px 20px;
  gap: 16px;
}

.cf7-traveler-counter .counter-label {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.cf7-traveler-counter .counter-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* The +/- buttons — light blue rounded squares */
.cf7-traveler-counter .counter-btn {
  width: 30px;
  height: 25px;
  border: none;
  border-radius: 6px;
  background: #eef7fd;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cf7-traveler-counter .counter-btn:hover {
  background: #d9eefb;
}

/* The number input in the middle — borderless, centered */
.cf7-traveler-counter input[type='number'] {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  -moz-appearance: textfield; /* hide Firefox spinners */
  padding: 0;
}

/* Hide default browser number spinners (Chrome/Safari) */
.cf7-traveler-counter input[type='number']::-webkit-outer-spin-button,
.cf7-traveler-counter input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.error404 .top-bar,
.error404 header,
.error404 .footer-section {
  display: none;
}

/* Mega Menu Panel */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px; /* Adjust based on your container width */
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  padding: 24px;
  z-index: 999;
  display: flex;
}

/* Left Sidebar Tabs (Nepal, Tibet, Bhutan) */
.mega-menu-tabs {
  width: 20%;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-tabs li a {
  font-family: 'Inter', sans-serif; /* Use your theme font */
  font-weight: 700;
  font-size: 15px;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Active Tab Blue Color (Like 'Nepal' in the image) */
.mega-menu-tabs li.current-menu-item a,
.mega-menu-tabs li a:hover {
  color: #0091ff; /* Adjust to match your exact blue */
}

/* Right Side Links Grid */
.mega-menu-links-grid {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(
    2,
    1fr
  ); /* 2 columns exactly like the screenshot */
  gap: 16px 24px;
  padding-left: 32px;
}

.mega-menu-links-grid li a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
}

.mega-menu-links-grid li a:hover {
  color: #000000;
}

/* -------------------------------------Fixed Bottom Nav----------------------------- */
.fixed-bottom-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: var(--primary-color);
  z-index: 9999999;
}

.fixed-bottom-nav a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: var(--bg-white);
  line-height: 0.9;
  font-size: 14px;
  padding: 10px 7px;
}

/* -----------------Search--------------------- */

.search-box {
  position: relative;
}
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: none;
  max-height: 320px;
  overflow-y: auto;
  z-index: 999;
  display: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.search-suggestions.show {
  display: block;
}
.search-suggestions li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}
.search-suggestions li a:hover {
  background: #f8f8f8;
}
.search-suggestions li a img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.search-suggestions .no-result {
  padding: 12px 14px;
  font-size: 14px;
  color: #888;
}
