/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  /* Fonts */
  --font-primary:   'Lato', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-secondary: 'Open Sans', ui-sans-serif, system-ui, sans-serif;
  /* --font-serif:     'Cardo', Georgia, 'Times New Roman', serif;  */

  /* Brand colours */
  --color-primary:        #bc0a19;
  --color-secondary:      #1F2937; /* FIX: renamed from bare --secondary */

  /* Text colours */
  --color-text-heading: #111214;
  --color-text-black:   #1f2326;
  --color-text-dark:    #3b4045;
  --color-text-medium:  #6f7780;
  --color-text-light:   #aab2bb;

  /* Background colours */
  --color-bg-white:     #ffffff;
  --color-bg-light-blue:#eef5fb;
  --color-bg-ice-blue:  #f6fbff;
  --color-bg-dark:      #0f1113;
  --color-bg-dark-nav:  #2f3338;

  /* Borders */
  --color-border:         #d7dbe0;
  --color-border-light:   #eceff2;
  --color-border-section: #e1e7ee;

  /* Motion */
  --transition-fast:   0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container,
.wrapper,
section {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
*:focus {
  outline: none;
  outline-offset: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-text-heading);
}

h1 { font-size: clamp(1.75rem, 3vw, 2rem);       line-height: 1.25; font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.5vw, 1.75rem);   line-height: 1.3;  font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem);     line-height: 1.35; font-weight: 600; }
h4 { font-size: clamp(1.125rem, 1.8vw, 1.25rem); line-height: 1.4;  font-weight: 600; }
h5 { font-size: clamp(1rem, 1.5vw, 1.125rem);    line-height: 1.4;  font-weight: 600; }
h6 { font-size: clamp(0.875rem, 1.2vw, 1rem);    line-height: 1.4;  font-weight: 600; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a,
li,
p {
  font-size: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
}

label {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-align-end  { text-align: end; }

.bg-light-blue { background: var(--color-bg-light-blue) !important; }
.bg-ice-blue   { background: var(--color-bg-ice-blue)   !important; }

.sticky {
  position: sticky;
  top: 0;
  z-index: 1;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-bg-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.site-btn:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background-color: var(--color-bg-white);
  text-decoration: none;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  background: #4d97e3;
  transition: 0.25s ease-in-out;
  transition-delay: 1s;
}

.page-loaded .preloader {
  transform: translateY(-100%);
}

.spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 30px;
  height: 30px;
}

.spinner .path {
  stroke: var(--color-border-light);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

/* ============================================================
   ODOMETER
   ============================================================ */
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-car .odometer-digit {
  padding: 0;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  left: 0;
}

/* ============================================================
   MOBILE MENU BUTTON
   ============================================================ */
.menu-btn {
  width: 44px;
  height: 44px;
  float: right;
  cursor: pointer;
  position: relative;
  display: none;
}

.menu-btn .menu-circle-wrap {
  position: absolute;
  width: 44px;
  height: 44px;
  left: 0;
  top: 0;
  transition: all 0.3s;
}

.menu-btn .menu-circle {
  position: absolute;
  width: 44px;
  height: 44px;
  left: 0;
  top: 0;
  transition: all 0.6s;
}

.menu-btn .menu-circle path {
  fill: none;
  stroke-width: 2px;
  stroke: #dad9e0;
  stroke-dashoffset: 157;
  stroke-dasharray: 157;
  transition: all 0.6s;
}

.menu-btn.active .menu-circle {
  transform: rotate(-135deg);
}

.menu-btn.active .menu-circle path {
  stroke-dashoffset: 0;
}

.menu-btn.active:hover .menu-circle-wrap {
  transform: scale(0.95);
}

.menu-btn .menu-circle-wrap .wave {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(1);
  box-shadow: 0 0 0 0 #5f6a72;
  opacity: 0;
}

.menu-btn .bars {
  position: absolute;
  width: 28px;
  height: 24px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.menu-btn .bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transition: background 0.2s;
}

.menu-btn .b1 { top: 2px; }
.menu-btn .b2 { top: 11px; }
.menu-btn .b3 { top: 20px; }

.menu-btn .b1,
.header .menu-btn .b3 {
  transition: all 0.2s;
}

.menu-btn.active .b1.rotated {
  transform: translateY(9px) rotate(-135deg);
  background: var(--color-primary);
}

.menu-btn.active .b2 {
  opacity: 0;
}

.menu-btn.active .b3.rotated {
  transform: translateY(-9px) rotate(-225deg);
  background: var(--color-primary);
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  flex-direction: column;
}

.accordion .card {
  flex-basis: 100%;
  display: inline-flex;
  background: none;
  border-radius: 0;
  margin-bottom: 10px;
  border: none;
}

.accordion .card .card-header {
  padding: 0;
  border-bottom: none;
  background: var(--color-bg-white);
}

.accordion .card .card-header a {
  width: 100%;
  float: left;
  line-height: 38px;
  padding: 10px 0;
  position: relative;
  color: var(--color-text-dark);
  font-size: clamp(15px, 1.5vw, 18px) !important;
}

.accordion .card .card-header a:before {
  content: "-";
  width: 38px;
  height: 38px;
  line-height: 33px;
  float: left;
  margin-right: 15px;
  color: var(--color-bg-dark);
  border: 1px solid #ddd;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
}

.accordion .card .card-header a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.accordion .card [aria-expanded="true"] {
  color: var(--color-text-dark);
}

.accordion .card [aria-expanded="true"]:before {
  content: "+" !important;
}

.accordion .card .card-body {
  width: 100%;
  line-height: 20px;
  padding: 15px;
  font-size: clamp(14px, 1.2vw, 16px);
  background: var(--color-bg-white);
  text-align: justify;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 30px;
}

.section-title h2 {
  width: 100%;
  float: left;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-family: var(--font-primary); /* FIX: was --font-family-sans-serif */
  font-weight: 500;
}

.section-title img {
  height: 11px;
  display: inline-block;
}

.section-title p {
  font-weight: 400;
  font-size: clamp(14px, 0.8vw + 0.4rem, 15px);
  line-height: 18px;
  margin-top: 30px;
  text-align: justify;
  margin-bottom: 0;
}

.section-title .lp {
  margin-top: 15px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-primary);
  letter-spacing: 0.25px;
  color: var(--color-text-dark);
  text-align: justify;
}

.page-title h2 {
  font-size: 70px !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  width: 100%;
  float: left;
  display: flex;
  padding: 10px 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

.navbar.dark .navbar-nav .nav-item {
  position: relative;
}

.navbar.dark .navbar-nav .nav-item .dropdown-menu {
  background: var(--color-bg-white);
}

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

.navbar .navbar-brand {
  float: left;
  margin: 0;
  padding: 0;
}

.navbar .navbar-brand img {
height: clamp(52px, 6vw, 67px);
}

.navbar .search-btn {
  float: right;
  padding: 10px;
  margin-left: 40px;
  color: var(--color-primary);
  cursor: pointer;
}

.navbar .navbar-nav {
  float: right;
  display: block;
}

.navbar .navbar-nav .nav-item {
  float: left;
  margin-left: 20px;
  position: relative;
}

.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
  float: left;
  font-size: 16px;
  color: var(--color-bg-white);
  padding: 10px;
  font-weight: 500;
  cursor: pointer;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
  display: block;
  min-width: 236px;
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  border: 1px solid var(--color-border);
  box-shadow: 0;
  border-radius: 0;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: 0.25s ease-in-out;
  box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .nav-item .dropdown-menu:before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 25px;
  background: url("../images/caret.png") no-repeat;
  width: 20px;
  height: 10px;
}

.navbar .navbar-nav .nav-item .dropdown-menu li {
  width: 100%;
  float: left;
  transition: 0.25s ease-in-out;
  margin: 0;
}

.navbar .navbar-nav .nav-item .dropdown-menu li:hover {
  background-color: var(--color-bg-ice-blue);
}

.navbar .navbar-nav .nav-item .dropdown-menu li:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .navbar-nav .nav-item .dropdown-menu li a {
  cursor: pointer;
  float: left;
  line-height: 48px;
  width: 100%;
  height: 48px;
  padding-left: 30px;
  color: var(--color-text-black);
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s ease-in-out;
}

.navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .sub-dropdown-menu {
  width: 236px;
  background: var(--color-bg-ice-blue);
  margin: 0;
  padding: 14px 0;
  position: absolute;
  left: 100%;
  top: -1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .sub-dropdown-menu li {
  width: 100%;
  height: 48px;
  margin: 0;
  float: left;
  padding: 0;
  list-style: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .sub-dropdown-menu li:hover {
  background-color: var(--color-bg-white);
}

.navbar .navbar-nav .nav-item .dropdown-menu li .sub-dropdown-menu li a {
  float: left;
  color: var(--color-text-black);
  padding-left: 30px;
}

.navbar .navbar-nav .nav-item .dropdown-menu li .sub-dropdown-menu li a:hover {
  color: var(--color-primary);
}

/* ============================================================
   HEADER INTERIOR (sticky)
   ============================================================ */
.header-int {
  width: 100%;
  display: flex;
  position: sticky;
  top: 0;
  z-index: 9;
  background: var(--color-bg-white);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  will-change: box-shadow;
  box-shadow: none;
  border-bottom: 1px solid #cccccc80;
}

.header-int.scrolled {
  box-shadow: 0 2px 10px -2px rgb(0 0 0 / 0.41);
  background: var(--color-bg-white);
}

/* ============================================================
   HEADER — DENMARK VARIANT
   ============================================================ */
.header-denmark {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.header-denmark .swiper-slide {
  overflow: hidden;
}

.header-denmark .swiper-slide h2 {
  font-size: 80px;
  color: var(--color-bg-white);
  font-family: var(--font-secondary);
  padding-right: 40%;
  margin-top: 0;
  margin-bottom: 70px;
}

.header-denmark .swiper-slide .link {
  float: left;
  color: var(--color-bg-white);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.header-denmark .swiper-slide .link img {
  height: 46px;
  margin-right: 15px;
}

.header-denmark .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.header-denmark .swiper-custom-pagination {
  width: 1110px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -623px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}

.header-denmark .swiper-pagination-bullet {
  width: auto;
  height: auto;
  flex: 1;
  background: transparent;
  font-size: clamp(12px, 1.5vw, 14px);
  opacity: 0.8;
  border-radius: 0;
  margin: 0 !important;
  padding: clamp(8px, 1vw, 10px) clamp(16px, 2vw, 20px);
  color: var(--color-bg-white);
  border-left: 1px solid var(--color-bg-white);
}

.header-denmark .swiper-pagination-bullet span {
  font-weight: 500;
  font-size: clamp(12px, 2vw, 20px);
  width: 100%;
  float: left;
}

.header-denmark .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ============================================================
   SLIDE INNER  (single definition — FIX: was duplicated)
   ============================================================ */
.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-inner::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.08) 75%,
    rgba(0, 0, 0, 0.55) 100%
  );
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ============================================================
   HEADER — NORWAY VARIANT
   ============================================================ */
.header-norway {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-size: cover;
}

.header-norway .inner {
  width: 100%;
  display: flex;
}

.header-norway .inner .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}

.header-norway .inner .content span {
  font-size: 35px;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
  color: var(--color-bg-white);
}

.header-norway .inner .content h1 {
  font-size: 50px;
  font-family: var(--font-secondary);
  color: var(--color-bg-white);
}

.header-norway .inner .content p {
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-bg-white);
  margin: 25px 0;
}

.header-norway .inner .content .link {
  float: left;
  color: var(--color-bg-white);
  font-size: 18px;
  font-weight: 500;
}

.header-norway .inner .content .link img {
  height: 46px;
  margin-right: 15px;
}

.header-norway .inner .content .hero-search {
  width: 1110px;
  margin: 0 auto;
  margin-top: 10vh;
}

.header-norway .inner .content .hero-search form {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.header-norway .inner .content .hero-search form .form-group {
  flex: 1;
  margin-right: 10px;
  position: relative;
}

.header-norway .inner .content .hero-search form .form-group i {
  position: absolute;
  left: 20px;
  top: 25px;
  color: var(--color-primary);
}

.header-norway .inner .content .hero-search form .form-group input[type="text"] {
  width: 100%;
  height: 66px;
  padding: 0 20px;
  padding-left: 50px;
  border: none;
  border-radius: 6px;
  color: var(--color-bg-white);
  background: rgba(0, 0, 0, 0.7);
}

.header-norway .inner .content .hero-search form input[type="text"]::placeholder {
  color: var(--color-bg-white);
}

.header-norway .inner .content .hero-search form button[type="submit"] {
  height: 66px;
  padding: 0 50px;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-bg-white);
  border-radius: 6px;
  border: none;
  font-weight: 700;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.25s ease-in-out;
}

.header-norway .inner .content .hero-search form button[type="submit"]:hover {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
}

.header-norway .inner .content .hero-search dl {
  width: 100%;
  float: left;
  font-size: 14px;
}

.header-norway .inner .content .hero-search dl dt {
  float: left;
  margin-bottom: 0;
  margin-right: 15px;
  color: var(--color-bg-white);
}

.header-norway .inner .content .hero-search dl dt i {
  margin-left: 10px;
  color: var(--color-primary);
}

.header-norway .inner .content .hero-search dl dd {
  float: left;
  margin-right: 15px;
}

.header-norway .inner .content .hero-search dl dd a {
  float: left;
  color: var(--color-bg-white);
}

/* ============================================================
   TOURS LIST
   ============================================================ */
.tours-list-section .view-type {
  display: inline-block;
  float: none;
  margin-top: 50px;
}

/* ============================================================
   FIND ADVENTURE
   ============================================================ */
.find-adventure {
  width: 100%;
  display: flex;
  padding: 150px 0;
}

.find-adventure h3 {
  width: 100%;
  float: left;
  font-family: var(--font-secondary);
  font-size: 40px;
  color: #000;
  margin-bottom: 30px;
}

.find-adventure form {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}

.find-adventure form .form-group {
  flex: 1;
  margin-right: 10px;
  position: relative;
}

.find-adventure form .form-group i {
  position: absolute;
  left: 20px;
  top: 25px;
  color: var(--color-primary);
}

.find-adventure form .form-group input[type="text"] {
  font-weight: 300;
  font-size: 20px;
  width: 100%;
  height: 66px;
  padding: 0 20px;
  padding-left: 50px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: #80868e;
}

.find-adventure form button[type="submit"] {
  height: 66px;
  padding: 0 91px;
  background: var(--color-primary);
  color: var(--color-bg-white);
  border-radius: 6px;
  border: none;
  font-weight: 700;
  box-shadow: 4px 4px 10px #eee;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.find-adventure form button[type="submit"]:hover {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
}

.find-adventure dl {
  width: 100%;
  float: left;
  font-size: 14px;
}

.find-adventure dl dt {
  float: left;
  margin-bottom: 0;
  margin-right: 15px;
  color: var(--color-text-dark);
}

.find-adventure dl dt i {
  margin-left: 10px;
  color: var(--color-primary);
}

.find-adventure dl dd {
  float: left;
  margin-right: 15px;
}

.find-adventure dl dd a {
  float: left;
  color: var(--color-text-medium);
}

/* ============================================================
   READ MORE LINK
   ============================================================ */
.read-more {
  display: inline-block;
  font-size: clamp(12px, 1vw, 14px) !important;
  color: var(--color-text-dark);
  font-weight: 500;
  text-decoration: none;
  margin-left: 10px;
}

.read-more:hover {
  text-decoration: none;
  color: var(--color-primary);
}

.read-more:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 9px;
  left: -10px;
  width: 30px;
  height: 30px;
  background-image: url("../images/icon/arrow-link.png");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.25s ease-in-out;
}

.read-more:hover:before {
  background-image: url("../images/icon/arrow-link-hover.png");
}

/* ============================================================
   BLOG HEADER
   ============================================================ */
.blog-header {
  width: 100%;
  display: flex;
}

.blog-header small {
  text-transform: uppercase;
  font-size: 14px;
  color: #3b4045;
  font-weight: 500;
  display: inline-block;
  background: #ffeadc;
  padding: 5px 10px;
}

.blog-header small span:first-child {
  color: var(--color-secondary); /* FIX: was var(--secondary) */
}

.blog-header small span:last-child {
  margin: 0 14px;
}

.blog-header h1 {
  width: 100%;
  float: left;
  text-align: start;
  margin-top: 10px;
  font-weight: 500;
  margin: 20px 0;
  font-size: clamp(20px, 4vw, 37px);
  font-family: var(--font-secondary);
}

.blog-header .filter {
  float: left;
  margin-right: 40px;
}

.blog-header .filter a {
  line-height: 38px;
  color: var(--color-text-dark);
  font-size: 20px;
  transition: 0.25s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.blog-header .filter a:hover i {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary); /* FIX: was missing space */
  color: var(--color-bg-white);
}

.blog-header .filter a i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  float: right;
  margin-left: 10px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  text-align: center;
  color: var(--color-primary);
  transition: 0.25s ease-in-out;
}

.blog-header .filter .dropdown-menu {
  margin-top: 15px;
  padding: 15px;
  border-radius: 0;
  border: 1px solid var(--color-border);
}

.blog-header .view-type {
  float: right;
  margin: 0;
  padding: 0;
}

.blog-header .view-type li {
  float: left;
  margin-left: 10px;
  list-style: none;
  position: relative;
}

.blog-header .view-type li:first-child:before {
  content: "";
  font-family: FontAwesome;
  font-size: 16px;
  color: var(--color-primary);
  display: block;
  position: absolute;
  top: 11px;
  left: 18px;
}

.blog-header .view-type li input {
  width: 249px;
  height: 47px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  padding-left: 40px;
  font-size: 16px;
  color: var(--color-text-dark);
  font-weight: 300;
}

.blog-header .view-type li input::placeholder {
  font-size: 16px;
  color: var(--color-text-dark);
  font-weight: 300;
}

.blog-header .view-type li a {
  float: left;
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: #bdc1c5;
  font-size: 20px;
}

/* ============================================================
   BLOG DATEPICKER
   ============================================================ */
.blog-picker .drp-calendar.right {
  display: none !important;
}

/* ============================================================
   BLOG HERO / CONTENT
   ============================================================ */
.blog-hero-image {
  width: 100%;
  height: 90vh;
  display: flex;
  background-size: cover;
}

.blog-content {
  width: 100%;
  display: flex;
  padding: 44px 0 95px;
}

.blog-content .inner {
  width: 100%;
  float: left;
  position: relative;
}

.blog-content .inner .about-author {
  display: block;
  margin-top: 100px;
  padding-top: 100px;
  border-top: 1px solid #e3e8ef;
  text-align: center;
}

.blog-content .inner .about-author figure {
  width: 80px;
  height: 80px;
  display: inline-block;
  margin-bottom: 18px;
}

.blog-content .inner .about-author figure img {
  width: 100%;
  float: left;
  border-radius: 50%;
}

.blog-content .inner .about-author small {
  display: block;
  color: var(--color-text-medium);
  font-size: 16px;
  font-weight: 500;
}

.blog-content .inner .about-author h5 {
  font-family: var(--font-secondary);
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 11px;
}

.blog-content .inner .about-author .title-seperator {
  display: inline-block;
  height: 11px;
  margin-bottom: 40px;
}

.blog-content .inner .about-author p {
  display: block;
}

.blog-content .inner h3 {
  font-family: var(--font-secondary);
  font-size: 30px;
  margin: 20px 0;
}

.blog-content .inner p {
  display: block;
  font-size: clamp(0.875rem, 0.9vw + 0.4rem, 1rem);
  line-height: 1.4;
  color: #383434;
  font-weight: 400;
  text-align: justify;
}

.blog-content .inner p:last-child {
  margin-bottom: 0;
}

.blog-content .inner p a {
  text-decoration: underline solid #ffe0bf;
  color: var(--color-primary);
}

/* ============================================================
   SWIPER — BLOG CAROUSEL
   ============================================================ */
.swiper-blog-carousel {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.swiper-blog-carousel .swiper-slide          { opacity: 0.5; }
.swiper-blog-carousel .swiper-slide-active   { opacity: 1; }
.swiper-blog-carousel img                    { width: 100%; }

.swiper-blog-carousel .swiper-button-prev,
.swiper-blog-carousel .swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--color-bg-white);
  border-radius: 50%;
  padding: 4px;
  transition: 0.25s ease-in-out;
}

.swiper-blog-carousel .swiper-button-prev { left: 19%; }
.swiper-blog-carousel .swiper-button-next { right: 19%; }

.swiper-blog-carousel .swiper-button-prev:hover .arrow-left:before {
  background: url("../images/icon/arrow-left-hover.png") no-repeat;
}

.swiper-blog-carousel .swiper-button-prev .arrow-left:before,
.swiper-blog-carousel .swiper-button-next .arrow-right:before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  transition: 0.25s ease-in-out;
}

.swiper-blog-carousel .swiper-button-prev .arrow-left:before {
  background: url("../images/icon/arrow-left.png") no-repeat;
}

.swiper-blog-carousel .swiper-button-next:hover .arrow-right:before {
  background: url("../images/icon/arrow-right-hover.png") no-repeat;
}

.swiper-blog-carousel .swiper-button-next .arrow-right:before {
  background: url("../images/icon/arrow-right.png") no-repeat;
}

.swiper-blog-carousel .swiper-button-prev.swiper-button-disabled,
.swiper-blog-carousel .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

/* ============================================================
   BLOG POSTS
   ============================================================ */
.blog-posts {
  width: 100%;
  display: flex;
  background: var(--color-bg-ice-blue);
}

.blog-posts .blog-post-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 30px;
  transition: 0.25s ease-in-out;
}

.blog-posts .blog-post-grid p { display: none; }

.blog-posts .blog-post-grid .post-image {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.blog-posts .blog-post-grid .post-image img {
  width: 100%;
  float: left;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
}

.blog-posts .blog-post-grid .post-content {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}

.blog-posts .blog-post-grid .post-content small {
  font-size: clamp(12px, 1vw, 14px);
  display: block;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.blog-posts .blog-post-grid .post-content small span {
  font-weight: 700;
  margin: 0 14px;
}

.blog-posts .blog-post-grid .post-content h3 {
  font-family: var(--font-secondary);
  font-size: clamp(16px, 1.8vw, 23px);
  line-height: 30px;
}

.blog-posts .blog-post-grid .post-content a {
  display: inline-block;
  font-size: 14px;
  color: var(--color-text-dark);
  font-weight: 600;
}

.blog-posts .blog-post-grid .post-content a:hover {
  color: #085da7;
  text-decoration: none;
}

.blog-posts .blog-post-grid .post-content a img {
  width: 30px;
  margin-right: 8px;
}

/* Blog post list */
.blog-posts .blog-post-list {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}

.blog-posts .blog-post-list .post-image {
  flex-basis: 370px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.blog-posts .blog-post-list .post-image img {
  width: 100%;
  float: left;
  border-radius: 1rem;
  object-fit: cover;
  transition: 0.25s ease-in-out;
}

.blog-posts .blog-post-list .post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}

.blog-posts .blog-post-list .post-content small {
  font-size: 15px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}

.blog-posts p {
  text-align: justify;
}

.post-content .post-meta span { font-weight: 700; }

.blog-posts .blog-post-list .post-content small span {
  margin: 0 14px;
}

.blog-posts .blog-post-list .post-content h3 {
  font-family: var(--font-secondary);
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--color-bg-dark);
}

.blog-posts .blog-post-list .post-content p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 25px;
  color: var(--color-text-dark);
  font-weight: 400;
}

.blog-posts .blog-post-list .post-content a {
  text-decoration: none;
}

.blog-posts .blog-post-list .post-content a h3 {
  transition: 0.25s ease-in-out;
}

.blog-posts .blog-post-list .post-content a:hover h3 {
  color: var(--color-primary);
}

.blog-posts .blog-post-list .post-content a.read-more {
  display: inline-block;
  font-size: 14px;
  color: var(--color-text-dark);
  font-weight: 600;
  margin-left: 10px;
}

.blog-posts .blog-post-list .post-content a.read-more:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.blog-posts .blog-post-list .post-content a.read-more img {
  width: 30px;
  margin-right: 8px;
}

/* ============================================================
   POPULAR TOURS
   ============================================================ */
.popular-tours {
  width: 100%;
  display: flex;
  padding: 150px 0;
  background: #f2f4ff;
}

.popular-tours .section-desc {
  color: var(--color-text-dark);
  padding-left: 10%;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
}

/* ============================================================
   TOUR BOX
   ============================================================ */
.tour-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 15px 0;
  transition: 0.25s ease-in-out;
}

.tour-box:hover figure img {
  transform: scale(1.05);
}

.tour-box figure {
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.tour-box figure img {
  width: 100%;
  float: left;
  transition: 0.25s ease-in-out;
}

.tour-box figure .tag {
  height: 38px;
  line-height: 38px;
  padding: 0 30px;
  position: absolute;
  right: 0;
  top: 40px;
  background: var(--color-primary);
  color: var(--color-bg-white);
  font-size: 12px;
  font-weight: 500;
}

.tour-box figure .tag:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 19px 19px;
  border-color: transparent var(--color-primary) transparent transparent;
  position: absolute;
  left: -19px;
  bottom: 0;
}

.tour-box figure .tag:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 19px 19px 0;
  border-color: transparent var(--color-primary) transparent transparent;
  position: absolute;
  left: -19px;
  top: 0;
}

.tour-box .tour-content {
  width: 100%;
  background: var(--color-bg-white);
  padding: 20px;
}

.tour-box .tour-content .tag { display: none; }
.tour-box .tour-content p   { display: none; }

.tour-box .tour-content small {
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-medium);
  display: block;
}

.tour-box .tour-content h3 {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font-secondary);
  margin: 9px 0 0;
}

.tour-box .tour-content ul {
  width: 100%;
  padding: 27px 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.tour-box .tour-content ul li {
  width: 31%;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
}

.tour-box .tour-content ul li:nth-child(2) {
  width: 38%;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.tour-box .tour-content ul li:last-child { border-right: 0; }

.tour-box .tour-content ul li img {
  height: 25px;
  margin-bottom: 10px;
}

.tour-box .tour-content ul li span {
  font-weight: 600;
  display: block;
  color: var(--color-text-dark);
}

.tour-box .tour-content ul li small {
  font-size: 10px;
  color: var(--color-text-medium);
}

.tour-box a {
  width: 100%;
  height: 46px;
  line-height: 44px;
  float: left;
  border: 1px solid var(--color-secondary); /* FIX: was var(--secondary) */
  border-radius: 6px;
  text-align: center;
  color: var(--color-secondary);            /* FIX: was var(--secondary) */
  font-weight: 500;
}

.tour-box a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg-white);
  text-decoration: none;
}

/* ============================================================
   TOUR BOX LIST
   ============================================================ */
.tour-box-list {
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}

.tour-box-list figure {
  flex-basis: 370px;
  margin: 0;
}

.tour-box-list figure .tag { display: none; }

.tour-box-list figure img {
  width: 100%;
  float: left;
}

.tour-box-list .tour-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 43px;
  background: var(--color-bg-white);
  position: relative;
}

.tour-box-list .tour-content .tag {
  height: 38px;
  line-height: 38px;
  padding: 0 30px;
  position: absolute;
  right: 0;
  top: 40px;
  background: var(--color-primary);
  color: var(--color-bg-white);
}

/* FIX: was `border-color: transparent transparentvar(--color-primary) transparent` */
.tour-box-list .tour-content .tag:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 19px 19px;
  border-color: transparent transparent var(--color-primary) transparent;
  position: absolute;
  left: -19px;
  bottom: 0;
}

/* FIX: was `border-color: transparentvar(--color-primary) transparent transparent` */
.tour-box-list .tour-content .tag:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 19px 19px 0;
  border-color: transparent var(--color-primary) transparent transparent;
  position: absolute;
  left: -19px;
  top: 0;
}

.tour-box-list .tour-content small {
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-medium);
  display: block;
}

.tour-box-list .tour-content h3 {
  display: block;
  font-size: 26px;
  font-family: var(--font-secondary);
  margin: 10px 0 0;
}

.tour-box-list .tour-content p {
  font-weight: 300;
  font-size: 17px;
  line-height: 30px;
  padding: 17px 0 20px;
}

.tour-box-list .tour-content .inner {
  width: 100%;
  display: block;
}

.tour-box-list .tour-content ul {
  float: left;
  margin: 0;
  padding: 0;
}

.tour-box-list .tour-content ul li {
  float: left;
  border-right: 1px solid var(--color-border);
  margin: 0;
  padding: 0 10px 0 0;
  list-style: none;
}

.tour-box-list .tour-content ul li:last-child { border-right: 0; }

.tour-box-list .tour-content ul li:nth-child(n + 2) {
  padding-left: 20px;
}

.tour-box-list .tour-content ul li img {
  height: 40px;
  float: left;
  margin-right: 10px;
}

.tour-box-list .tour-content ul li small {
  display: block;
  font-weight: 300;
}

.tour-box-list .tour-content ul li span {
  width: 125px;
  display: block;
  color: var(--color-text-dark);
  font-weight: 500;
}

.tour-box-list .tour-content a {
  height: 46px;
  line-height: 44px;
  float: right;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-align: center;
  color: var(--color-text-medium);
  font-weight: 700;
  padding: 0 46px;
}

.tour-box-list .tour-content a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg-white);
  text-decoration: none;
}

/* ============================================================
   ADVENTURE ACTIVITIES
   ============================================================ */
.adventure-activities {
  width: 100%;
  display: flex;
  padding: 150px 0;
  overflow: hidden;
}

.adventure-activities .container { overflow: visible !important; }

.adventure-activities .section-desc {
  color: var(--color-text-dark);
  padding-left: 10%;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 40px;
}

.adventure-activities .activities-carousel {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 15px;
}

.adventure-activities .activities-carousel .activity-box {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
}

.adventure-activities .activities-carousel .activity-box:hover figcaption:after {
  width: calc(100% - 60px);
}

.adventure-activities .activities-carousel .activity-box:after {
  content: "";
  width: 100%;
  border-radius: 0.8rem;
  height: 75%;
  opacity: 0.8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgb(0 0 0), rgb(124 90 90 / 0.28), transparent);
}

.adventure-activities .activities-carousel .activity-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.8rem;
  float: left;
  transition: 0.25s ease-in-out;
}

.adventure-activities .activities-carousel .activity-box figcaption {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  font-family: var(--font-secondary);
  font-size: 24px;
  color: var(--color-bg-white);
  padding: 15px;
}

.adventure-activities .activities-carousel .activity-box figcaption:after {
  content: "";
  width: 46px;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  left: 17px;
  bottom: 13px;
  transition: 0.25s ease-in-out;
}

.adventure-activities .activities-carousel .activity-box h2 {
  padding-bottom: 10px;
  color: var(--color-bg-white);
}

.adventure-activities .swiper-button-prev,
.adventure-activities .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--color-bg-white);
  border-radius: 50%;
  padding: 4px;
  z-index: 1;
}

.adventure-activities .swiper-button-prev:hover .arrow-left:before {
  background: url("../images/icon/arrow-left-hover.png") no-repeat;
}

.adventure-activities .swiper-button-prev .arrow-left:before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../images/icon/arrow-left.png") no-repeat;
  transition: 0.25s ease-in-out;
}

.adventure-activities .swiper-button-next:hover .arrow-right:before {
  background: url("../images/icon/arrow-right-hover.png") no-repeat;
}

.adventure-activities .swiper-button-next .arrow-right:before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../images/icon/arrow-right.png") no-repeat;
  transition: 0.25s ease-in-out;
}

.adventure-activities .swiper-button-prev img,
.adventure-activities .swiper-button-next img { width: 42px; }

.adventure-activities .swiper-button-prev.swiper-button-disabled,
.adventure-activities .swiper-button-next.swiper-button-disabled { opacity: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  width: 100%;
  display: flex;
}

.reviews .container { padding: 0; }

.reviews .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ff8300;
}

.reviews .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  border-radius: 100px;
  width: 26px;
}

.reviews .swiper-reviews {
  width: 100%;
  float: left;
  overflow: hidden;
  padding-bottom: 50px;
}

.reviews .review {
  width: 100%;
  float: left;
  background: var(--color-bg-white);
  padding: 15px;
  text-align: center;
  border: 2px dashed var(--color-primary);
  border-radius: 1rem;
}

.reviews .review i {
  color: var(--color-primary);
  display: inline-block;
  font-size: 14px;
  position: relative;
  z-index: 100;
}

.reviews .review h4 {
  font-size: 24px;
  display: block;
  margin: 20px 0;
  position: relative;
  color: var(--color-text-dark);
  z-index: 100;
}

.reviews .review p {
  font-weight: 400;
  line-height: 27px;
  color: var(--color-text-dark);
  font-size: clamp(12px, 2vw, 15px);
  margin-bottom: 30px;
}

.reviews .review figure {
  display: block;
}

.reviews .review figure img {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
}

.reviews .review small {
  font-weight: 500;
  display: block;
  color: var(--color-text-dark);
  font-size: 14px;
}

.swiper-reviews .review h5 {
  font-size: clamp(0.875rem, 0.9vw + 0.4rem, 1rem);
}

/* ============================================================
   RELATED BLOG
   ============================================================ */
.related-blog {
  width: 100%;
  display: flex;
  padding: 150px 0;
  background: var(--color-bg-light-blue);
}

.related-blog .section-title { margin-bottom: 50px; }

.related-blog .blog-post {
  display: flex;
  margin-bottom: 30px;
  transition: 0.25s ease-in-out;
}

.related-blog .blog-post:hover {
  box-shadow: 5px 20px 50px 5px rgba(153, 153, 153, 0.2);
}

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

.related-blog .blog-post .post-image {
  flex-basis: 200px;
  height: 223px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.related-blog .blog-post .post-image img {
  width: 100%;
  height: 100%;
  float: left;
  transition: 0.25s ease-in-out;
}

.related-blog .blog-post .post-content {
  padding: 0 30px;
  background: var(--color-bg-white);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.related-blog .blog-post .post-content small {
  font-size: 12px;
  display: block;
  color: var(--color-text-medium);
  margin-bottom: 10px;
}

.related-blog .blog-post .post-content small span {
  margin: 0 14px;
}

.related-blog .blog-post .post-content h3 {
  font-family: var(--font-secondary);
  font-size: 24px;
  margin-bottom: 15px;
  color: black;
  transition: 0.25s ease-in-out;
}

.related-blog .blog-post .post-content a { text-decoration: none; }

.related-blog .blog-post .post-content a:hover h3 {
  color: var(--color-primary);
}

.related-blog .blog-post .post-content a.read-more {
  display: inline-block;
  font-size: 13px;
  color: var(--color-text-dark);
  font-weight: 700;
  margin-left: 10px;
}

.related-blog .blog-post .post-content a.read-more:before {
  border-radius: 50%;
}

.related-blog .blog-post .post-content a.read-more:hover:before {
  color: var(--color-bg-white);
  background-color: var(--color-primary);
}

.related-blog .blog-post .post-content a.read-more:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.related-blog .blog-post .post-content a.read-more img {
  width: 30px;
  margin-right: 8px;
}

/* ============================================================
   FORM — SELECT GROUP
   ============================================================ */
.select-group { cursor: pointer; }

.form-group.select-group:before {
  content: "";
  font-family: FontAwesome;
  font-size: 20px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  color: var(--color-primary);
  width: 50px;
  height: 46px;
  line-height: 46px;
  display: block;
  position: absolute;
  right: 0;
  text-align: center;
  border-left: 1px solid var(--color-border);
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.form-group.select-group:hover:before {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}

.form-group select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--color-border) !important;
  position: relative;
  float: left;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0 15px;
  cursor: pointer;
}

.form-group select option {
  font-size: 14px;
  color: var(--color-text-medium);
}

/* ============================================================
   VIEW TYPE
   ============================================================ */
.view-type {
  float: right;
  margin: 0;
  padding: 0;
}

.view-type li {
  float: left;
  margin-left: 10px;
  list-style: none;
}

.view-type li a {
  float: left;
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: #bdc1c5;
  font-size: 20px;
}

/* ============================================================
   FILTER DROPDOWN
   ============================================================ */
.filter.dropdown { position: relative !important; }

.filter .dropdown-menu {
  will-change: unset !important;
  transform: translate3d(0, 10px, 0) !important;
  padding: 29px !important;
  min-width: 310px !important;
  max-width: 500px;
  position: absolute;
  top: 100% !important;
  left: calc(100% - 80px) !important;
  box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.1);
  animation-name: dropdown-fade;
  animation-duration: 0.25s;
}

.filter .dropdown-check li:not(:last-child) span {
  font-size: 16px;
  color: var(--color-text-black);
  margin: 0 0 0 9px;
  float: left;
}

.filter .dropdown-check li:not(:last-child) {
  margin: 12px 0;
}

.filter .dropdown-check li:not(:last-child):after {
  content: "";
  display: table;
  clear: both;
}

.filter .dropdown-check li:not(:last-child):first-child { margin: 0; }

.filter .dropdown-check input[type="checkbox"] {
  margin: 0;
  float: left;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #e0e2e4;
  position: relative;
  cursor: pointer;
}

.filter .dropdown-check input[type="checkbox"]:checked:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.filter .dropdown-check:before {
  content: "";
  display: block;
  /* background: url("../images/caret.png") no-repeat; */
  width: 20px;
  height: 10px;
  position: absolute;
  top: -10px;
  left: 50px;
}

.filter .dropdown-check li > div:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-bg-light-blue);
  margin: 20px 0;
}

.filter .dropdown-check li > div span {
  font-size: 14px;
  color: var(--color-text-medium);
  cursor: pointer;
  font-weight: 500;
}

.filter .dropdown-check li > div span i { margin-right: 10px; }

.filter .dropdown-check li > div span:last-child {
  float: right;
  color: var(--color-primary);
}

/* ============================================================
   RELATED TOURS
   ============================================================ */
.related-tours {
  width: 100%;
  display: flex;
  padding: 150px 0;
  background: var(--color-bg-ice-blue);
}

.related-tours .section-title { margin-bottom: 32px; }

/* ============================================================
   TOURS GRID / LIST
   ============================================================ */
.tours-grid {
  width: 100%;
  display: flex;
  padding: 150px 0;
  background: var(--color-bg-ice-blue);
}

.tours-list {
  width: 100%;
  display: flex;
  padding: 150px 0;
  background: var(--color-bg-ice-blue);
}

/* ============================================================
   TOUR SINGLE HEADER
   ============================================================ */
.tour-single-header h6 {
  color: #53a0ef;
  font-size: 16px;
}

.tour-single-header h1 {
  font-family: var(--font-secondary);
  font-size: 40px;
  margin-bottom: 20px;
  padding: 15px 0;
  font-weight: 700;
  text-align: center;
}

.tour-single-header p {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--color-text-dark);
  font-family: var(--font-secondary);
  text-align: justify;
}

.tour-single-header p strong { font-weight: 500; }

.tour-single-header .price {
  float: left;
  line-height: 38px;
  font-size: 20px;
}

.tour-single-header .filter {
  float: left;
  margin-right: 40px;
}

.tour-single-header .filter a {
  line-height: 38px;
  color: var(--color-text-dark);
  font-size: 20px;
  transition: 0.25s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.tour-single-header .filter a:hover i {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary); /* FIX: was missing space */
  color: var(--color-bg-white);
}

.tour-single-header .filter a i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  float: right;
  margin-left: 10px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  text-align: center;
  color: var(--color-primary);
  transition: 0.25s ease-in-out;
}

.tour-single-header .filter .dropdown-menu {
  margin-top: 15px;
  padding: 15px;
  border-radius: 0;
  border: 1px solid var(--color-border);
}

.tour-single-header .filter .available-dropdown { min-width: 330px !important; }

.tour-single-header .filter .dropdown-check li span:nth-of-type(1) { font-weight: 600; }

.tour-single-header .filter .dropdown-check li input[disabled="disabled"] {
  background-color: var(--color-bg-ice-blue);
}

.tour-single-header .filter .dropdown-check li span.not-available {
  text-decoration: line-through;
  color: var(--color-text-medium);
}

.tour-single-header .filter .dropdown-check li .available {
  text-align: right;
  float: right;
  margin: 0;
  margin-left: 70px;
  color: var(--color-text-medium);
}

.tour-single-header .passenger-dropdown { min-width: 360px !important; }

.tour-single-header .passenger-dropdown li:not(:last-child) div {
  width: 50%;
  display: inline-block;
  float: left;
  margin-top: 26px;
}

.tour-single-header .passenger-dropdown li:not(:last-child) div:before { display: none; }

.tour-single-header .passenger-dropdown li:not(:last-child) div h6 {
  margin: 0;
  color: var(--color-text-black);
  font-size: 16px;
  font-weight: 900;
}

.tour-single-header .passenger-dropdown li:not(:last-child) div h6 span {
  font-weight: 300;
}

.tour-single-header .passenger-dropdown li:not(:last-child) div span {
  float: none;
  margin: 0;
}

.tour-single-header .passenger-dropdown li:not(:last-child) div > span {
  font-size: 14px;
  color: var(--color-text-black);
}

.tour-single-header .passenger-dropdown li:not(:last-child) div li {
  list-style: none;
  display: inline-block;
}

.tour-single-header .passenger-dropdown li:not(:last-child) div li:first-child,
.tour-single-header .passenger-dropdown li:not(:last-child) div li:last-child {
  width: 37px;
  height: 37px;
  border: 1px solid #bdc1c5;
  color: #bdc1c5;
  text-align: center;
  line-height: 37px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s ease-in-out;
}

.tour-single-header .passenger-dropdown li:not(:last-child) div li:first-child:hover,
.tour-single-header .passenger-dropdown li:not(:last-child) div li:last-child:hover {
  color: var(--color-primary);
}

.tour-single-header .passenger-dropdown li:not(:last-child) div li:nth-child(2) {
  font-size: 20px;
  color: var(--color-text-dark);
  margin: 0 8px;
}

.tour-single-header .passenger-dropdown li:first-child div { margin-top: 0; }

/* ============================================================
   TOUR HERO / DESC
   ============================================================ */
.tour-hero-image {
  width: 100%;
  height: 90vh;
  display: flex;
  background-size: cover;
}

.tour-desc {
  width: 100%;
  display: flex;
  font-weight: 300;
}

.tour-desc .section-title { text-align: start; }

.tour-desc p {
  font-size: 20px;
  line-height: 34px;
  font-weight: 300;
}

.tour-desc p a {
  text-decoration: underline;
  color: #53a0ef;
}

/* ============================================================
   TOUR ATTRACTION
   ============================================================ */
.tour-attraction {
  width: 100%;
  display: flex;
  padding: 150px 0;
}

.tour-attraction .attraction-carousel {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}

.tour-attraction .attraction-carousel .attraction-box {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.tour-attraction .attraction-carousel .attraction-box:hover figcaption:after {
  width: calc(100% - 60px);
}

.tour-attraction .attraction-carousel .attraction-box:hover img {
  transform: scale(1.05);
  filter: blur(4px);
}

.tour-attraction .attraction-carousel .attraction-box:hover:after { opacity: 0.9; }

.tour-attraction .attraction-carousel .attraction-box:after {
  content: "";
  width: 100%;
  height: 150px;
  opacity: 0.8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #131314 100%);
}

.tour-attraction .attraction-carousel .attraction-box img {
  width: 100%;
  float: left;
  transition: 0.25s ease-in-out;
}

.tour-attraction .attraction-carousel .attraction-box figcaption {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  font-family: var(--font-secondary);
  font-size: 24px;
  color: var(--color-bg-white);
  padding: 30px;
}

.tour-attraction .attraction-carousel .attraction-box figcaption:after {
  content: "";
  width: 55px;
  height: 1px;
  background: var(--color-primary);
  position: absolute;
  left: 30px;
  bottom: 25px;
  transition: 0.25s ease-in-out;
}

.tour-attraction .attraction-carousel .swiper-button-prev,
.tour-attraction .attraction-carousel .swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--color-bg-white);
  border-radius: 50%;
  padding: 4px;
}

.tour-attraction .attraction-carousel .swiper-button-prev { left: 19%; }
.tour-attraction .attraction-carousel .swiper-button-next { right: 19%; }

.tour-attraction .attraction-carousel .swiper-button-prev:hover .arrow-left:before {
  background: url("../images/icon/arrow-left-hover.png") no-repeat;
}

.tour-attraction .attraction-carousel .swiper-button-prev .arrow-left:before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../images/icon/arrow-left.png") no-repeat;
  transition: 0.25s ease-in-out;
}

.tour-attraction .attraction-carousel .swiper-button-next:hover .arrow-right:before {
  background: url("../images/icon/arrow-right-hover.png") no-repeat;
}

.tour-attraction .attraction-carousel .swiper-button-next .arrow-right:before {
  content: "";
  width: 22px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../images/icon/arrow-right.png") no-repeat;
  transition: 0.25s ease-in-out;
}

.tour-attraction .attraction-carousel .swiper-button-prev img,
.tour-attraction .attraction-carousel .swiper-button-next img { width: 42px; }

.tour-attraction .attraction-carousel .swiper-button-prev.swiper-button-disabled,
.tour-attraction .attraction-carousel .swiper-button-next.swiper-button-disabled { opacity: 0; }

/* ============================================================
   TOUR LOCATION
   ============================================================ */
.tour-location {
  width: 100%;
  display: flex;
  padding: 150px 0;
  background: var(--color-bg-ice-blue);
}

.tour-location .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.tour-location .content {
  flex: 1;
  padding: 40px;
}

.tour-location .map-style {
  flex: 1;
  background: var(--color-bg-ice-blue);
}

.tour-location h6 {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-medium);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.tour-location h3 {
  font-family: var(--font-secondary);
  font-size: 40px;
  margin: 10px 0 20px;
}

.tour-location p {
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
}

.tour-location .title-seperator {
  display: block;
  margin-bottom: 40px;
}

/* ============================================================
   TOUR INFORMATION
   ============================================================ */
.tour-information div[class="col-lg-5"]:before {
  content: "";
  display: block;
  position: absolute;
  left: -10%;
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
}

.tour-information h3 {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  font-size: 30px;
}

.tour-information p {
  font-size: 0.975rem;
  line-height: 32px;
  font-weight: 300;
  color: var(--color-text-dark);
}

.tour-information .accordion { padding-right: 10%; }
.tour-information .accordion .card { text-align: left; }

.tour-information .accordion .card .card-header {
  border-top: 1px solid #eee;
}

.tour-information .accordion .card .card-header a {
  font-size: clamp(0.875rem, 0.9vw + 0.4rem, 1rem);
  color: var(--color-text-dark);
}

.tour-information .accordion .card .card-header.no-border { border: none; }

.tour-information ul {
  width: 90%;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.tour-information ul li {
  width: 100%;
  float: left;
  line-height: 50px;
  font-size: 18px;
  padding: 20px 0;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  list-style: none;
}

.tour-information ul li figure {
  height: 50px;
  float: left;
  margin-right: 20px;
  margin-bottom: 0;
}

.tour-information ul li figure img { height: 50px; }
.tour-information ul li:last-child  { border-bottom: none; }

/* ============================================================
   TABS
   ============================================================ */
.tabs {
  width: 100%;
  float: left;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.tabs .in { opacity: 1; }

.tabs .nav-tabs {
  float: left;
  display: flex;
  margin: 0;
  padding: 0;
  border-bottom: none;
  position: relative;
}

.tabs .nav-tabs li {
  float: left;
  margin-right: 6px;
}

.tabs .nav-tabs li a {
  float: left;
  border-radius: 0;
  padding: 20px 30px;
  font-weight: 600;
  border: none;
  background: var(--color-bg-light-blue);
  color: var(--color-text-medium);
}

.tabs .nav-tabs li a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

.tabs .nav-tabs li .active,
.tabs .nav-tabs li .active:focus,
.tabs .nav-tabs li .active:hover {
  border: none;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
}

.tabs .tab-content {
  width: 100%;
  float: left;
  border: none;
  background: var(--color-bg-white);
  padding: 30px;
}

.tabs .tab-content p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  width: 100%;
  display: block;
  padding: 40px 0 20px;
  border-top: 7px solid transparent;
  background: #e3e3e3;
}

/* Logo strip — single definition (FIX: was duplicated) */
.footer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-strip::before,
.footer-strip::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #1f1a1a61;
}

.footer-strip img {
  height: 66px;
  margin-bottom: 30px;
  object-fit: cover;
}

.footer h5 {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--color-bg-dark);
}

.footer h5::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--color-secondary); /* FIX: was var(--secondary) */
  border-radius: 30px;
}

.footer-menu {
  padding: 0;
  margin: 0;
}

.footer-menu li {
  list-style: none;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.footer-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.footer-menu li a {
  color: #4E5561;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: var(--color-primary);
  padding-left: 3px;
}

.footer-address {
  padding: 0;
  margin: 0;
}

.footer-address li {
  list-style: none;
  line-height: 24px;
  margin-bottom: 10px;
  color: #333;
}

.footer-address i {
  margin-right: 8px;
  color: var(--color-primary);
}

.footer-address a {
  color: #333;
  text-decoration: none;
}

.footer-address a:hover { color: var(--color-primary); }

/* link-sec — single definition (FIX: was duplicated) */
.link-sec {
  display: flex;
  align-items: center;
  padding: 20px 0 0;
  border-top: 1px dashed #ccc;
  margin-top: 20px;
}

/* payment-methods — single definition (FIX: was duplicated) */
.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-methods i {
  font-size: 20px;
  color: #666;
  margin-left: 5px;
}

.social-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-media {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.social-media li { list-style: none; }

.social-media li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9ecef;
  color: #555;
  font-size: 16px;
  transition: 0.3s;
}

.social-media li a:hover {
  color: var(--color-bg-dark);
  text-decoration: none;
}

.footer-bar {
  background: var(--color-bg-dark-nav);
  padding: 15px;
}

.copyright {
  width: 100%;
  float: left;
  color: var(--color-bg-white); /* FIX: was var(--white) */
  font-size: clamp(14px, 0.7vw + 0.4rem, 15px);
}

.footer-terms {
  color: var(--color-bg-white); /* FIX: was var(--white) */
  text-align: right;
}

.footer-terms a {
  color: var(--color-bg-white); /* FIX: was var(--white) */
  margin: 0 7px;
}

/* ============================================================
   DATEPICKER
   ============================================================ */
.datepicker { position: relative; }

.datepicker__input:focus ~ .date {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0s 0s;
}

.date {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  transition: visibility 0s 0.4s, opacity 0.1s 0.2s;
  z-index: 10;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}

.date__container {
  display: none;
  width: 280px;
  max-width: 100%;
  background: var(--color-bg-white);
}

@media (min-width: 768px) {
  .date__container { display: block; }
}

.date__header {
  position: relative;
  font-size: 18px;
  color: var(--color-bg-white);
  text-align: center;
  background: var(--color-primary);
  padding: 12px 5px;
}

.date__day-container {
  padding: 0;
  margin: 0;
  border: 1px solid var(--color-border);
  border-top: none;
}

.date__day-name { border-bottom: 1px solid var(--color-border); }
.date__day      { cursor: pointer; }

.date__right-arrow,
.date__left-arrow {
  position: absolute;
  display: inline-block;
  top: 0;
  width: 40px;
  height: 100%;
  cursor: pointer;
}

.date__right-arrow::before,
.date__right-arrow::after,
.date__left-arrow::before,
.date__left-arrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  background: var(--color-bg-white);
}

.date__right-arrow { right: 0; }

.date__right-arrow::before,
.date__right-arrow::after { transform-origin: right; }

.date__right-arrow::before { transform: translate(-50%, -70%) rotate(-45deg); }
.date__right-arrow::after  { transform: translate(-50%, -30%) rotate(45deg); }

.date__left-arrow { left: 0; }

.date__left-arrow::before,
.date__left-arrow::after { transform-origin: left; }

.date__left-arrow::before { transform: translate(-50%, -30%) rotate(-45deg); }
.date__left-arrow::after  { transform: translate(-50%, -70%) rotate(45deg); }

.date--col {
  display: inline-block;
  text-align: center;
  width: calc(100% / 7);
  font-size: 14px;
  padding: 8px 0;
  list-style-type: none;
  color: #333;
}

.date--active {
  color: var(--color-bg-white);
  background: var(--color-primary);
}

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
main {
  padding-top: clamp(20px, 5vw, 50px);
}

/* ============================================================
   LADAKH DMC SLIDER
   ============================================================ */
.ladakhdmc-main .swiper-slide p {
  color: var(--color-bg-ice-blue);
  margin-bottom: 30px;
  font-size: clamp(0.875rem, 0.9vw + 0.5rem, 0.975rem);
}

.ladakhdmc-main .slide-inner h1,
.ladakhdmc-main .slide-inner h2 {
  font-size: 50px;
  padding-right: 25%;
  font-family: var(--font-secondary);
  color: var(--color-bg-white);
  margin-top: 80px;
  margin-bottom: 30px;
  font-weight: 500;
}

.swiper-slide .link { padding-right: 15px; }

/* ============================================================
   COUNTER ITEMS
   ============================================================ */
.counter-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.counter-item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0.8rem;
  transition: transform 0.6s ease;
}

.counter-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.8rem;
  background: linear-gradient(to top, rgb(0 0 0 / 0.14) 20%, rgb(0 0 0 / 0.34) 60%);
  z-index: 2;
}

.counter-item > *:not(img) {
  position: relative;
  z-index: 3;
  text-align: justify;
}

.counter-item-icon img {
  filter: invert(99%) sepia(67%) saturate(239%) hue-rotate(225deg) brightness(116%) contrast(100%);
  object-fit: contain;
  display: block;
  height: 50px;
}

.counter-counting {
  display: flex;
  align-items: center;
}

.counter-counting span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
}

.counter-item h5 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}

.counter-item:hover > img { transform: scale(1.08); }

/* ============================================================
   EXPLORE LEH
   ============================================================ */
.expl-leh .h5 {
    font-weight: 400;
    color: var(--color-primary);
    font-size: clamp(18px, 2vw, 20px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  display: block;
  text-decoration: none;
  border: 1px solid var(--color-primary);
  color: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
}

.cta-strip h4,
.cta-strip h5 {
  color: var(--color-text-black);
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
}

.cta-strip,
.cta-strip:hover,
.cta-strip:visited,
.cta-strip:active,
.cta-strip:focus { text-decoration: none; }

.arrow-line {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  color: var(--color-bg-white);
}

/* ============================================================
   LEH PACKAGE SLIDE
   ============================================================ */
.leh-pck-slide a { text-decoration: none; }

.leh-pck-slide figure img {
  border-radius: 0.8rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.leh-pck-slide .post-content h3 {
  font-size: clamp(0.875rem, 1.2vw, 1.25rem);
  margin-bottom: 10px;
  color: var(--color-bg-dark);
  font-weight: 500;
}

.pcost {
  font-size: clamp(16px, 0.5rem + 1vw, 1.25rem);
  color: #bd0005;
  font-weight: 500;
  margin-left: 5px;
}

.pcost span {
  font-size: 0.9rem;
  color: var(--color-bg-dark);
  font-weight: 400;
}

.rack-rate {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-bg-dark);
  font-weight: 500;
}

.strip-location {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 5px 0;
  flex-wrap: wrap;
  justify-content: start;
}

.strip-location i {
  margin: 0 4px 0 7px;
  font-size: 9px;
  color: #898989;
}

.d-flex .fa-compass {
  font-size: clamp(12px, 2vw, 14px);
}

.strip-location span {
  position: relative;
  font-size: clamp(12px, 1.3vw, 15px);
  color: var(--color-bg-dark);
}

.tour-d span {
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--color-bg-dark);
}

.tour-d span i { margin-right: 5px; }

.leh-pck-slide p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.border-line {
  border: 1px dashed var(--color-secondary); /* FIX: was var(--secondary) */
  border-radius: 0.5rem;
  padding: 0 10px;
}

.tour-d { margin-top: 5px; }

ul.core-service {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

ul.core-service li {
  position: relative;
  font-size: clamp(14px, 0.7vw + 0.4rem, 15px);
  color: #333;
  padding-left: 17px;
  border-bottom: 1px dashed #dbdbdb;
  padding-bottom: 4px;
}
ul.core-service li strong{
  font-weight: 500;
}

ul.core-service li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

ul.core-service li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 30%;
  transform: translateY(-50%);
}

.pck-hg img {
  object-fit: cover;
}

.location-badge { font-size: clamp(0.875rem, 0.9vw + 0.4rem, 1rem); }

.news-item {
  background: var(--color-bg-white);
  overflow: hidden;
}

.featured-blog { height: 100%; }

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  aspect-ratio: 4 / 2;
  object-fit: cover;
}

.blog-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-primary);
  color: var(--color-bg-white);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.news-meta ul {
  display: flex;
  gap: 12px;
  padding: 10px 15px;
  list-style: none;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.news-meta ul li i {
  color: var(--color-secondary); /* FIX: was var(--secondary) */
  margin-right: 4px;
}

.news-item h4 { margin-bottom: 5px; }

.news-item h4 a {
  color: var(--color-text-heading);
  text-decoration: none;
  font-weight: 500;
}

.news-content h3,
.news-content h4 { font-weight: 500; }

.news-content a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

/* ============================================================
   FILTER SIDEBAR
   ============================================================ */
.filter-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: #333;
}

.filter-section { margin-bottom: 25px; }

.filter-section h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #444;
}

.price-range { width: 100%; }

.range-slider {
  position: relative;
  width: 100%;
  height: 30px;
  margin-bottom: 15px;
}

.range-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 1;
}

.range-fill {
  position: absolute;
  top: 50%;
  height: 6px;
  background: var(--color-primary);
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 1;
  left: 0%;
  width: 100%;
}

.range-slider input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: none;
  pointer-events: none;
  z-index: 2;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #007bff;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track,
.range-slider input[type="range"]::-moz-range-track { background: transparent; }

.price-inputs {
  display: flex;
  gap: 10px;
}

.price-inputs input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.filter-checkbox input[type="checkbox"] {
  accent-color: #007bff;
  margin-right: 8px;
  cursor: pointer;
}

.filter-checkbox label {
  color: #555;
  cursor: pointer;
  margin-bottom: 0;
}

.filter-checkbox:last-child { margin-bottom: 0; }

.l-h2 {
  font-size: 27px;
}

.blog-li {
  list-style: none;
  background: #f3f3f3;
  padding: 15px;
  margin-bottom: 0;
}

.blog-li li {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
  padding-bottom: 7px;
}

.blog-li li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.post-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  gap: 15px;
}

.post-navigation a {
  text-decoration: none;
  padding: 10px 18px;
  background-color: #333;
  color: #fff;
  border-radius: 6px;
  transition: background 0.3s;
}

.post-navigation a:hover { background-color: #555; }

.main-bt { text-align: end; }

.tips { padding-left: 0; }

.tips li {
  list-style: none;
  margin-bottom: 10px;
  text-align: justify;
}
.ladakh-life-dest { position: relative; }

.ladakh-life-dest .about-text-block {
  position: relative;
  margin-bottom: 30px;
}

.ladakh-life-dest .about-text-block .top-content {
  position: relative;
  margin-bottom: 20px;
}

.ladakh-life-dest .about-text-block .top-content .inner-box {
  display: flex;
  align-items: center;
}

.ladakh-life-dest .about-text-block .top-content img { margin-right: 30px; }

.ladakh-life-dest .about-text-block .top-content span {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}

.ladakh-life-dest .about-text-block .top-content h2 {
  font-size: clamp(1rem, 4vw, 1.875rem);
  font-weight: 600;
}

.ladakh-life-dest .about-text-block .lower-content { padding-left: 100px; }

.ladakh-life-dest .about-text-block .lower-content h4 {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.ladakh-life-dest .about-text-block .lower-content h4:before {
  content: "";
  position: absolute;
  border: 2px solid #e9e6e6;
  top: 15px;
  left: -100px;
  width: 70px;
  height: 2px;
}

.ladakh-life-dest .about-text-block .lower-content .text { margin-bottom: 20px; }

.ladakh-life-dest .about-text-block .author-info {
  padding-bottom: 25px;
  border-bottom: 1px solid #e9e6e6;
  margin-bottom: 25px;
}

.ladakh-life-dest .about-text-block .author-info .inner-box {
  display: flex;
  align-items: flex-end;
}

/* FIX: un-nested img from .image rule */
.ladakh-life-dest .about-text-block .author-info .image {
  margin-right: 15px;
}

.ladakh-life-dest .about-text-block .author-info .image img {
  height: clamp(52px, 6vw, 65px);
}

.ladakh-life-dest .about-text-block .author-info .name {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--color-primary);
}

.ladakh-life-dest .about-text-block .author-info .designation {
  font-size: clamp(14px, 1vw, 16px);
}

.ladakh-life-dest .about-text-block .link-btn .theme-btn {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  color: #222;
  padding-left: clamp(35px, 2.5vw, 35px);
  position: relative;
}

.ladakh-life-dest .about-text-block .link-btn .theme-btn:hover { color: var(--color-primary); }

.ladakh-life-dest .about-text-block .link-btn .theme-btn:before {
  content: "";
  position: absolute;
  border: 1px solid var(--color-primary);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  left: 0;
  top: 0;
}

.ladakh-life-dest .about-text-block .link-btn .theme-btn:after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 9.5px;
  top: 9.5px;
}

.ladakh-life-dest .about-text-block .year-of-service {
  position: absolute;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  color: #cdcdcd;
  left: -25px;
  top: 50%;
  transform: rotate(-90deg);
}
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  gap: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  line-height: 1;
}

.breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #6c757d;
  font-size: clamp(14px, 0.7vw + 0.4rem, 15px);
}

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

.breadcrumb-item.active {
  color: var(--color-primary);
  font-weight: 500;
  font-size: clamp(14px, 0.7vw + 0.4rem, 15px);
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #adb5bd;
  margin: 0 5px;
  display: flex;
  align-items: center;
}

.breadcrumb-item a i {
  font-size: clamp(14px, 0.7vw + 0.4rem, 15px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.iti-body {
  padding: 15px 0;
  margin-top: 16px;
}

.itinerary-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #0f172a;
}

.iti-box {
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.iti-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.iti-day {
  min-width: 70px;
  height: 40px;
  border-radius: 7px;
  background-color: var(--color-primary);
  color: var(--color-bg-ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  margin-right: 18px;
}

.iti-heading {
  flex: 1;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  line-height: 1.5;
}

.iti-icon {
  font-size: 18px;
  transition: 0.3s;
}

.iti-header[aria-expanded="true"] .iti-icon { transform: rotate(180deg); }

.iti-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iti-info li {
  padding: 5px 0;
  border-bottom: 1px dashed #cbd5e1;
}

.iti-info li:last-child { border-bottom: none; }

.iti-info strong {
  color: var(--color-primary);
  font-weight: 500;
}

.textH { font-size: clamp(14px, 1.2vw, 1.1rem); }

.pCost {
  font-size: clamp(16px, 4vw, 32px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--color-primary);
}

.textM { font-size: clamp(0.7rem, 1vw, 0.9rem); }

.d-flex h1 { font-size: clamp(1.5rem, 2vw, 1.875rem); }

.flex-center-between .rating {
  background: var(--color-primary);
  color: var(--color-bg-ice-blue);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
}

.stayat .ngh { font-weight: 500; }
.stayat .stay { gap: 5px; }

.stay {
  padding: 7px 0;
  border-top: 1px dashed #ccc;
}

.pck-start {
  border: 1px solid #21252940;
  padding: 10px;
  border-radius: 0.5rem;
  background: #efefef6b;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 25px;
}

.pck-line {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ccc;
  padding-left: 18px;
}

.inv { margin-left: 5px; }

.post-image {
  position: relative;
  overflow: hidden;
}

.air-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: clamp(0.75rem, 0.5rem + 0.5vw, 1rem);
  font-weight: 500;
}

#tourTabs {
  background-color: #efefef;
  border: 1px solid #fbf7f7;
}

#tourTabs .nav-link {
  padding: 10px;
  color: var(--color-text-heading);
}

#tourTabs .nav-link.active {
  background-color: var(--color-primary);
  border-radius: 0;
  color: var(--color-bg-white);
}

.leh-tour-card {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #cccc;
  border-top: none;
  position: relative;
}

.leh-tour-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, rgb(188 10 25), rgb(244 117 32), rgb(188 10 25));
  padding: 0 15px;
  z-index: 2;
}

.tour-content { padding: 15px; }

.tour-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  line-height: 31px;
  color: var(--color-bg-dark); /* FIX: was var(--dark) */
  margin-bottom: 0.75rem;
}

.leh-rack-rate {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  border-top: 1px dashed #ccc;
  padding: 10px 0;
  margin-top: 15px;
}

.leh-rack-rate span:first-child { font-size: 18px; }

.pck-cost {
  font-size: clamp(20px, 4vw, 29px);
  font-weight: 700;
  color: #131314c9;
  line-height: 1;
  letter-spacing: -0.5px;
}

.per-person {
  font-size: clamp(14px, 0.9rem, 16px) !important;
  font-weight: 500;
  color: var(--color-bg-dark); /* FIX: was var(--dark) */
  margin-left: 5px;
}

.choose-card {
  border: 1px solid #cccc;
  padding: 15px;
  border-radius: 1rem;
  margin-top: 15px;
}

.choose-card h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--color-text-dark);
  margin-bottom: 15px;
  font-weight: 500;
}

.choose-card p {
  color: var(--color-text-black);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.choose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.choose-list li {
  color: #222;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccccccbf;
  padding-bottom: 3px;
}

.choose-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.choose-list img { margin-right: 5px; }

.contact-box p {
  margin: 7px 5px;
  font-size: clamp(14px, 0.95rem, 15px);
  color: var(--color-bg-dark);
  font-weight: 500;
}

.contact-box i {
  color: #ff6600;
  margin-right: 8px;
}

.leh-itn h2 {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
  font-size: clamp(18px, 2vw, 24px);
}

.trip-info {
  position: relative;
  list-style: none;
  background: #efefefa6;
  border: 1px dashed #ccc;
  padding: 15px;
}

.trip-info li {
  padding-left: 15px;
  margin-bottom: 8px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
}

.trip-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.trip-info li::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 7px;
  background-color: var(--color-secondary); /* FIX: was var(--secondary) */
}
.custom-bullet {
  padding-left: 0;
  list-style: none;
}

.custom-bullet li {
  position: relative;
  padding-left: 47px;
}

.custom-bullet li::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 7px;
  height: 3px;
  border-radius: 1px;
  transform: translate(0, 11px);
}

.inc-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: clamp(14px, 1.5vw, 18px);
}

.red-bullet li::before   { background-color: #b02a37; }
.green-bullet li::before { background-color: #3f7d47; }

.inc-title .fa-square:before {
  font-size: clamp(0.875rem, 0.9vw + 0.4rem, 1rem);
  color: #3f7d47;
}

.sc .fa-square:before { color: #b02a37; }

.ladakh-title a {
  color: var(--color-bg-dark);
  text-decoration: none;
}

.ladakh-top-box {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ladakh-review-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ladakh-rating {
  background: #f57b1f;
  color: var(--color-bg-white);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 0.5rem;
}

.ladakh-review {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.description { margin-bottom: 0; }

.ladakh-desc {
  color: #555;
  padding: 10px 0;
  margin-bottom: 0;
  text-align: justify;
  border-top: 1px solid #ececec;
}

.ladakh-bottom-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.place-img { position: relative; }

.pck-duration {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: var(--color-bg-white);
  padding: 5px 10px;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 500;
  border-radius: 1rem;
  z-index: 10;
}
.leh-lc-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(14px, 2vw, 16px);
  color: #333;
  margin-bottom: 10px;
}

.leh-lc-strip span { padding-left: 10px; font-weight: 500; }
.leh-lc-strip span:first-child { padding-left: 0; }

.leh-lc-strip span:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: #999;
}

.ngh {
  font-size: clamp(14px, 1vw, 16px);
  color: #bd0005;
  font-weight: 600 !important;
}
.icon-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: clamp(10px, 2vw, 15px);
}
.icon-label{
  font-size: clamp(12px, 1vw, 16px);
}
.icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-content img {
  width: clamp(22px, 3vw, 27px);
  height: clamp(18px, 2.5vw, 22px);
  object-fit: cover;
}

.icon-card {
  border-right: 1px solid #ccc;
  padding-right: 15px;
}

.icon-card:last-child { border-right: none; }

.line-hr {
  width: 95%;
  margin: 20px 0;
  border: 1px dashed #ccc;
}
.details-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 13px;
  background-color: #383737d2;
  border-radius: 30px;
  color: var(--color-bg-ice-blue);
  text-decoration: none;
  font-weight: 600;
  margin-top: 7px;
  font-size: 14px;
}

.details-btn a { color: var(--color-bg-ice-blue); }
.details-btn i  { font-size: 14px; }

.details-btn:hover,
.details-btn:hover a,
.details-btn:hover i { color: var(--color-bg-ice-blue); }
.main-carousel .activities-carousel .activity-box:after { content: none; }
.about-us-desc .section-title { padding: 0; }

.style-one h4 a { font-size: 1rem; }
.style-one .description { margin-bottom: 10px; }
.base-price .d-flex,
.base-price .pck-line {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.base-price .d-flex .rating { margin-bottom: 0; }
.pck-heading h2 { font-size: clamp(1.2rem, 2.5vw, 2rem); }
@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0%   { stroke-dasharray: 1, 150;  stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes dropdown-fade {
  0%   { transform: translate3d(0, 100px, 0); opacity: 0; visibility: hidden; }
  100% { transform: translate3d(0, 10px, 0);  opacity: 1; visibility: visible; }
}

@keyframes rangerpicker-fade {
  0%   { transform: translate(19px, 80px); opacity: 0; visibility: hidden; }
  100% { transform: translate(19px, 20px); opacity: 1; visibility: visible; }
}

@keyframes show-img-1 {
  0%, 66.6%   { visibility: hidden; }
  66.7%, 100% { visibility: visible; }
}

@keyframes slide-bg-2 {
  33.3% { transform-origin: left top;    transform: scale(0.05, 1); }
  66.6% { transform-origin: left center; transform: scale(1, 1); }
  66.7% { transform-origin: right center; transform: scale(1, 1); }
  100%  { transform-origin: right center; transform: scale(0, 1); }
}
@media only screen and (max-width: 1199px) {
  .header-denmark .swiper-custom-pagination {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .popular-tours .section-desc      { padding-left: 0; margin-top: 15px; }
  .adventure-activities .section-desc { padding-left: 0; margin-top: 15px; }
  .footer .dropdown a span          { font-size: 14px; }
  .tour-box-list .tour-content      { padding: 10px 20px; }
  .tour-box-list a                  { width: 100%; margin-top: 10px; }
  .tour-box-list .inner             { margin-top: -30px; }
  .our-history .wrapper .content    { padding: 35px; }
  .tour-box .tour-content li div span { font-size: 12px; }
  .contact .contact-box:after       { display: none; }
  .popular-destinations figure            { flex: 60% !important; height: 258px !important; }
  .popular-destinations .destinations-content { flex: 60% !important; height: 258px !important; }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 5px;
    width: 260px;
    height: 100vh;
    position: fixed;
    left: -260px;
    top: 0;
    background: var(--color-text-dark);
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 30px;
    transition: 0.25s ease-in-out;
  }
  .navbar .navbar-nav.active { left: 0; }
  .navbar .navbar-nav .nav-item { width: 100%; float: left; margin-left: 0; }
  .navbar .navbar-nav .nav-item .nav-link { color: #fff !important; }
  .navbar .search-btn { display: none; }
  .navbar .navbar-nav .nav-item .dropdown-menu {
    position: static;
    opacity: 1;
    width: 100%;
    float: left;
    background: none;
    visibility: visible;
    display: none;
  }
  .navbar .navbar-nav .nav-item .dropdown-menu li .sub-dropdown-menu {
    width: 100%;
    float: left;
    background: none;
    opacity: 1;
    visibility: visible;
    position: static;
    display: none;
    padding-left: 15px;
  }
  .menu-btn { display: block; margin-left: 20px; }
  .header-iceland .swiper-custom-pagination { margin: 0; left: 0; width: 100%; }
  .header-denmark .swiper-slide h2 { padding-right: 0; }
  .header-iceland .swiper-slide h2 { padding-right: 0; }
  .header-norway .inner .content .hero-search { width: 100%; padding: 0 10%; }
  .header-finland .inner .content .hero-search,
  .header-sweden .inner .content .hero-search { width: 100%; }
  .footer .footer-menu { margin-bottom: 50px; }
  .tour-box-list { flex-direction: column; }
  .tour-box-list .tour-content { padding: 40px; }
  .tour-box-list .inner { margin-top: 30px; }
  .tour-box-list ul { float: none; width: 100%; }
  .tour-box-list ul li { float: none; width: 30%; }
  .tour-box-list .tag { display: none; }
  .blog-post-list p { max-height: 100px; overflow: hidden; }
  .blog-post-list figure { flex-basis: 100%; width: 100%; }
  .blog-comments form { margin-top: 30px; }
  .tour-box li:first-child div,
  .tour-box li:last-child div { float: none; }
  .our-offices .office-box figure { flex-basis: 270px; }
  .contact .contact-box { margin: 10px 0; }
  .popular-destinations .col-lg-6 { padding: 15px 0; }
  .popular-destinations .col-lg-6:nth-child(odd) { transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE — ≤767px
   ============================================================ */
@media only screen and (max-width: 767px) {
  header { height: auto !important; min-height: auto !important; }
  header .swiper-slide h2 { font-size: 44px !important; }

  .pck-review .swiper-reviews .swiper-slide { width: 100% !important; }

    #tourTabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    z-index: 1;
  }

  #tourTabs .nav-item {
    flex: 1 0 auto;
    height: 100%;
  }

  #tourTabs .nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
  }

  header .swiper-slide .link { font-size: 15px !important; display: flex; align-items: center; }
  header .inner .content h5  { font-size: 20px !important; }
  header .inner .content h1  { font-size: 44px !important; padding-right: 0 !important; }
  header .inner .content p   { font-size: 14px !important; line-height: 20px !important; }
  header .inner .content .hero-search dl { display: none; }
  header .inner .content .hero-search form { flex-direction: column !important; }
  header .inner .content .hero-search form .form-group { margin-right: 0 !important; }

  .copyright  { margin-bottom: 5px; }
  .footer-terms,
  .copyright  { text-align: center; }

  .ladakh-title a { font-size: 18px !important; margin-top: 15px; }
  .section-title h1 { text-align: start; font-size: 22px; }
  main .ladakh-history-section { padding-top: 0 !important; }
  .modal-content .rating { display: none; }
  .social-wrapper,
  .payment-methods { justify-content: center; }
  .link-sec .payment-methods i { font-size: 13px; }
  footer .link-sec { gap: 5px; }
  .read-more:before { top: 5px; width: 20px; height: 20px; }
  .pck-heading h2 { font-size: clamp(18px, 2vw, 20px); }
  main .flex-center-between { flex-direction: column; align-items: flex-start; }
  .year-of-service { display: none; }
  main .ladakh-life-dest .about-text-block .lower-content { padding-left: 0; }
  main .ladakh-life-dest .about-text-block .top-content img { margin-right: 40px; height: 45px; }
  .header-norway { aspect-ratio: 16 / 9; }
  .section-title h2 { text-align: start; }
  .adventure-activities .swiper-button-prev,
  .adventure-activities .swiper-button-next { width: 32px; height: 32px; }
  .payment-methods span,
  .social-wrapper span { font-size: 13px; }
  .social-media li a { width: 25px; height: 25px; }
  main .breadcrumb { display: none; }

  .mobile-slide {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-slide > [class*="col-"] { flex: 0 0 80%; max-width: 80%; }

  .ladakh-blog-section .col-lg-7 .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .base-price .d-flex,
  .base-price .pck-line {
    flex-direction: row;
  }
  .header-iceland .swiper-custom-pagination { display: none; }
  .header-denmark { height: 100% !important; }
  .header-sweden .inner .content h1 { margin-bottom: 30px; }
  .header-iceland { height: 100% !important; }

  .search-box form { flex-direction: column; }
  .ladakhdmc-main .slide-inner h2,
  .ladakhdmc-main .slide-inner h1 { padding-right: 0 !important; font-size: 30px !important; }
  .header-denmark .swiper-slide .link img { height: 30px; margin-right: 10px; }
  .expl-leh .l-h2 { font-size: 20px; }
  .expl-leh .pck-hg img { height: auto;width: 100%; }
  .flex-center-between .pck-start { gap: 15px; width: 100%; }

  .base-price .d-flex,
  .base-price .pck-line { flex-direction: row !important; align-items: center; gap: 8px; }
  .base-price .d-flex .rating { margin-bottom: 0; }

  .popular-destinations .destinations-box { flex-direction: column; }
  .popular-destinations .destinations-box .destinations-content .inner img { margin-right: 0; }
  .our-history .wrapper { flex-direction: column; margin-bottom: 30px; }
  .our-history .wrapper figure img { width: 100%; height: auto; }
  .section-title { text-align: justify; margin-bottom: 10px; }
  .section-title img { float: none; display: inline-block; }
  .content-text h1 { font-size: 18px; margin-top: 5px; }
  .page .ladakh-life-dest .about-text-block .top-content span { font-size: 16px; }
  .page .blog-posts { padding-top: 0; }
  .style-one h4 a { font-size: 1rem; }
  .style-one .description { margin-bottom: 10px; }
  .about-us-desc .section-title { padding: 0; }
  .find-adventure form { flex-direction: column; }
  .tours-header .filter { width: 100%; margin-bottom: 20px; }
  .tours-header .view-type { float: none; transform: translateX(40%); padding: 0; }
  .tours-header .view-type li { margin-left: 0; margin-right: 10px; }
  .blog-header .filter { width: 100%; margin-bottom: 20px; }
  .blog-header .view-type { float: none; transform: translateX(40%); padding: 0; }
  .blog-header .view-type li { margin-left: 0; margin-right: 10px; }
  .tour-single-header h2 { padding-right: 0; margin-bottom: 20px; }
  .tour-single-header .filter { width: 100%; margin-bottom: 5px; }
  .tour-desc .section-title { padding: 0; }
  .tour-overview ul li { text-align: center; margin-bottom: 20px; }
  .tour-overview ul li figure { width: 100%; margin-right: 0; }
  .tour-overview ul li figure img { width: 80px; }
  .tour-features .feature-box { width: 100%; margin-bottom: 30px; border: 0; }
  .tabs .nav-tabs li a { padding: 15px; }
  .tour-location .inner { flex-direction: column; }
  .tour-location .map-style { height: 400px; margin-top: 30px; }
  .related-blog .blog-post { flex-direction: column; }
  .related-blog .blog-post .post-content { padding: 30px; }
  .tour-information .accordion .card .card-body { padding-left: 0; }
  .tour-information .accordion .card .card-header a { padding: 15px 0; }
  .tour-box { flex-direction: column; }
  .tbox { flex-direction: column; }
  .tbox p { display: none; }
  .tbox .tour-content { padding: 30px; }
  .tbox .tour-content a { width: 100%; }
  .tbox .tour-content .tag { top: -20px; }
  .tbox .tour-content ul { width: 100%; }
  .tbox .tour-content ul li { width: 33.3333%; float: left; margin: 0; padding: 0; text-align: center; }
  .air-badge { padding: 3px 9px; top: 6px; left: 5px; }
  .contact .contact-box { border: none; }
  .our-offices .office-box { flex-direction: column; }
  .our-offices .office-box .office-content { padding: 30px; }
  .quote h2 { font-size: 40px; }
  .quote p { padding: 0 5%; }
  .footer address { margin-bottom: 50px; }
  .footer .social-media { width: auto; }
  .footer .social-media:before { display: none; }
  .footer .social-media li:last-child { padding-left: 0; }
  .checkout-header h2 { font-size: 50px; margin-bottom: 20px; }
  .tour-box-list { flex-direction: column; }
  .blog-post-list { flex-direction: column; }
  .blog-post-list figure { flex-basis: 100%; width: 100%; }
  .filter .dropdown-check:before { display: none; }
  .filter .dropdown-menu { left: 0 !important; }
  .popular-destinations figure { order: 1 !important; }
  .popular-destinations .destinations-content { order: 2 !important; }
  .navbar .dropdown-menu {
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .navbar .dropdown-menu:before { display: none !important; }
  .navbar .dropdown-menu li:hover { background-color: transparent !important; }
  .navbar .dropdown-menu a { color: var(--color-bg-white) !important; }
  .navbar .dropdown-menu a:hover { color: var(--color-primary) !important; }
}
@media (max-width: 480px) {
  .ladakh-btn { display: flex; gap: 8px; padding-bottom: 100px; }
  .year-of-service { display: none; }
  .header-denmark .swiper-slide .link img { height: 23px; }
  header .swiper-slide .link { font-size: 13px !important; }
  .swiper-slide .link { padding-right: 7px; }
  .header-denmark .swiper-pagination-bullet { background: #54545459; }
  .header-denmark .swiper-custom-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .counter-counting span { font-size: 1.5rem; }
  .counter-item-icon img { height: 30px; }
  .counter-item h5 { font-size: 13px; }
  .expl-leh .col-6 .counter-item { padding: 15px !important; }
  .air-badge { padding: 3px 9px; top: 6px; left: 5px; }
  .swiper-reviews .swiper-slide { width: 200px !important; flex-shrink: 0; }
  .site-btn { padding: 10px; }
  .flex-center-between .pck-start { gap: 0; flex-direction: column; align-items: flex-start; }
  .pck-line { border-left: none; padding-left: 0; }
}