@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", Inter;
}

:root {
  --primary-color: #2cabe2;
  --primary-dark-color: #104291;
  --primary-light-color: #0067ff;
  --white-color: #f3f3f3;
  --black-color: #010101;
  --social-bg: rgba(77, 101, 128, 0.6);
  --footer-bg: #0b4a65;
  --gray-color: #e1e1e1;
  --green-color: #00a63e;
  --red-color: #ca3f33;
  --testimonial-bg: #e1e1e1;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  background-color: #ffffff;
}

/* typography */
.text-4xl {
  font-size: clamp(3rem, 6vw, 4.375rem);
  /* 48px to 70px */
  line-height: 1.1;
}

.text-3xl {
  font-size: clamp(2.25rem, 5vw, 3.4375rem);
  /* 36px to 55px */
  line-height: 1.15;
}

.text-2xl {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  /* 30px to 40px */
  line-height: 1.2;
}

.text-1xl {
  font-size: clamp(1.5rem, 3vw, 2rem);
  /* 24px to 32px */
  line-height: 1.2;
}

.text-blog {
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.3;
}

.text-xl {
  font-size: clamp(18px, 2.8vw, 20px);
  line-height: 1.3;
}

.text-lg {
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  /* 18px to 20px */
  line-height: 1.4;
}

.text-md {
  font-size: clamp(1rem, 2vw, 1.125rem);
  /* 16px to 18px */
  line-height: 1.5;
}

.text-base {
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  /* 14px to 16px */
  line-height: 1.5;
}

.text-sm {
  font-size: clamp(0.75rem, 1.4vw, 0.875rem);
  /* 12px to 14px */
  line-height: 1.5;
}

.text-xs {
  font-size: 12px;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 500;
}

.font-bebas {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify !important;
}

.text-white {
  color: var(--white-color);
}

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

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

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

.text-black {
  color: var(--black-color);
}

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

.text-red {
  color: var(--red-color);
}

.text-d-none {
  text-decoration: none;
}

.text-nowrap {
  white-space: nowrap;
}

.text-line {
  position: relative;
  width: fit-content;
}

.text-line::after {
  content: "";
  position: absolute;
  width: 0.8em;
  left: 0;
  height: 0.06em;
  bottom: -0.1em;
  border-radius: 3em;
  background: var(--primary-light-color);
}

.hvr {
  transition: all 0.3s ease-in;
}

.hvr:hover {
  color: var(--primary-dark-color) !important;
}

/* 1 line */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2 lines */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 3 lines */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 4 lines */
.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* width */
.w-fit {
  width: fit-content;
}

.w__70 {
  width: 70%;
}

@media screen and (max-width: 525px) {

  .width__60,
  .w__70 {
    width: 100%;
  }
}

/* background */
.bg-white {
  background-color: var(--white-color);
}

.bg-grey {
  background-color: rgba(239, 246, 255, 0.5);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.bg-green {
  background-color: var(--green-color);
}

.bg-red {
  background-color: var(--red-color);
}

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

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

.bg-primary-dark2 {
  background-color: #1861b4;
}

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

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

.bg-transparent {
  background: transparent;
}

.bg-gradient-primary {
  background: linear-gradient(180deg,
      var(--primary-light-color) 0%,
      var(--primary-dark-color) 100%);
}

.footer-bg {
  background-color: var(--footer-bg);
}

.sidebar-column {
  align-self: stretch;
  overflow: visible !important;
}

.sidebar-wrapper {
  height: 100%;
  overflow: visible !important;
}

/* position */
.sticky-sidebar {
  position: sticky;
  top: 10em;
}

/* Tablet + Mobile */
@media screen and (max-width: 991px) {
  .sticky-sidebar {
    position: static;
    top: auto;
  }
}

/* aspect ratio */
.as_3_5 {
  aspect-ratio: 3/4;
}

.as_3_4 {
  aspect-ratio: 3/3.5;
}

.as_16_9 {
  aspect-ratio: 16/9;
}

.as_9_16 {
  aspect-ratio: 9/10.7;
}

.as_square {
  aspect-ratio: 1/0.7;
}

.as_1_9 {
  aspect-ratio: 1/0.9;
}

.as_1_1 {
  aspect-ratio: 1/1;
}

/* button */

.btn-primary-gradient {
  background: linear-gradient(180deg,
      var(--primary-light-color) 0%,
      var(--primary-dark-color) 100%);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  white-space: nowrap;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 103, 255, 0.35);
}

.btn-primary-gradient:hover {
  background: linear-gradient(180deg,
      var(--primary-dark-color) 0%,
      var(--primary-light-color) 100%);
}

/* list style */
.list-none {
  list-style: none;
}

/* border outline */
.border-none {
  border: none;
}

.outline-none {
  outline: none;
}


.container,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1440px !important;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 clamp(10px, 10vw, 20px);
}

/* navbar */
.navbar_section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 124px;
  display: flex;
  align-items: center;
  z-index: 1002;
}

.navbar_section-active {
  background-color: var(--primary-color);
}

.logo_wrapper {
  width: 12em;
  height: auto;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.top-link {
  color: var(--white-color);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.top-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.top-link:hover::after {
  width: 100%;
}

/* Top navbar active state */
.navbar_section-active .top-link {
  color: var(--white-color);
}

.navbar_section-active .top-link:hover {
  color: var(--primary-dark-color);
}

.navbar_section-active .top-link:hover::after {
  background-color: var(--primary-dark-color);
}

.nav-link {
  color: var(--white-color);
  font-weight: 700;
  position: relative;
  width: fit-content;
  transition:
    color 0.3s ease,
    opacity 0.4s ease,
    transform 0.3s ease;
  opacity: 1;
  animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  opacity: 0;
  animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

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

.nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

/* When navbar is active */
.navbar_section-active .nav-link {
  color: var(--white-color);
}

.navbar_section-active .nav-link:hover {
  color: var(--primary-dark-color);
}

.navbar_section-active .nav-link:hover::after {
  background-color: var(--primary-dark-color);
}

/* ===============================
   Desktop Mega Dropdown
================================ */

/* ===============================
   Desktop Mega Dropdown - Fixed Inside Window
================================ */

.mega-nav-item {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(760px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
  padding-top: 0;
  transform: translateX(-50%) translateY(0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
  z-index: 9999;
}

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

.mega-dropdown-inner {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(16, 66, 145, 0.08);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* keep dropdown inside left side */
.mega-nav-item:first-child .mega-dropdown,
.mega-nav-item:nth-child(2) .mega-dropdown {
  left: 0;
  transform: translateX(0) translateY(0);
}

.mega-nav-item:first-child:hover .mega-dropdown,
.mega-nav-item:nth-child(2):hover .mega-dropdown {
  transform: translateX(0) translateY(0);
}

/* keep dropdown inside right side */
.mega-nav-item:last-child .mega-dropdown,
.mega-nav-item:nth-last-child(2) .mega-dropdown {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(0);
}

.mega-nav-item:last-child:hover .mega-dropdown,
.mega-nav-item:nth-last-child(2):hover .mega-dropdown {
  transform: translateX(0) translateY(0);
}

.mega-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.mega-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light-color);
  margin-bottom: 4px;
}

.mega-title {
  margin: 0;
  color: var(--primary-dark-color);
  font-size: 28px;
  font-weight: 800;
}
.mega-view-all {
    height: fit-content;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark-color);
    padding: 9px 16px;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 0.25s ease;
}


/* =========================
   TOP BORDER
========================= */

.mega-view-all span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
       #0ea6ed

    );

    animation: megaAnimate1 2s linear infinite;
}

@keyframes megaAnimate1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* =========================
   RIGHT BORDER
========================= */

.mega-view-all span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;

    width: 2px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        transparent,
        #0ea6ed
    );

    animation: megaAnimate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes megaAnimate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}


/* =========================
   BOTTOM BORDER
========================= */

.mega-view-all span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        to left,
        transparent,
        #0ea6ed
    );

    animation: megaAnimate3 2s linear infinite;
}

@keyframes megaAnimate3 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* =========================
   LEFT BORDER
========================= */

.mega-view-all span:nth-child(4) {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 2px;
    height: 100%;

    background: linear-gradient(
        to top,
        transparent,
        #0ea6ed
    );

    animation: megaAnimate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes megaAnimate4 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}
.mega-view-all:hover { color: #fff; background: var(--primary-dark-color); border-color: var(--primary-dark-color); }

.mega-tabs {
  display: flex;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f2f7ff;
  overflow-x: auto;
}

.mega-tab {
  border: 0;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark-color);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.mega-tab.active,
.mega-tab:hover {
  color: #fff;
  background: linear-gradient(135deg,
      var(--primary-light-color),
      var(--primary-dark-color));
  box-shadow: 0 8px 18px rgba(16, 66, 145, 0.22);
}

.mega-panel {
  display: none;
  animation: megaPanelFade 0.25s ease;
}

.mega-panel.active {
  display: block;
}

.mega-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mega-package-card {
  position: relative;
  min-height: 130px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(16, 66, 145, 0.08);
  text-decoration: none;
  color: var(--primary-dark-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.25s ease;
}

.mega-package-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 70px;
  height: 70px;
  background: rgba(0, 103, 255, 0.08);
  border-radius: 50%;
  transition: all 0.25s ease;
}

.mega-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(16, 66, 145, 0.13);
  border-color: rgba(16, 66, 145, 0.18);
}

.mega-package-card:hover::after {
  width: 95px;
  height: 95px;
}

.mega-package-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.mega-package-days {
  font-size: 13px;
  font-weight: 700;
  color: rgba(16, 66, 145, 0.62);
  position: relative;
  z-index: 1;
}

.mega-package-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary-light-color);
  position: relative;
  z-index: 1;
}

@keyframes megaPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* ===============================
   Small Laptop Fix
================================ */

@media (max-width: 1399px) {
  .mega-dropdown {
    width: min(680px, calc(100vw - 28px));
  }

  .mega-dropdown-inner {
    padding: 20px;
    border-radius: 20px;
  }

  .mega-package-grid {
    gap: 12px;
  }

  .mega-package-card {
    min-height: 120px;
    padding: 15px;
  }

  .mega-title {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .mega-dropdown {
    width: min(620px, calc(100vw - 24px));
  }

  .mega-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-header {
    gap: 12px;
  }

  .mega-title {
    font-size: 22px;
  }

  .mega-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Hide desktop mega dropdown on tablet/mobile */
@media (max-width: 991px) {
  .mega-dropdown {
    display: none;
  }
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 6px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--white-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg,
      var(--primary-dark-color) 0%,
      var(--primary-color) 100%);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding-top: 6rem;
  display: none;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-menu-links {
  flex: 1;
}

.mobile-menu-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.8rem 0;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: #ffeb3b;
}

.mobile-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.mobile-footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.mobile-footer-link:hover {
  color: white;
}

.top-nav-list {
  gap: 0;
}

.top-nav-item {
  display: flex;
  align-items: center;
}

.top-nav-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
  font-weight: 700;
}

.top-link {
  display: inline-block;
}

/* Hide desktop menu on mobile */

@media (max-width: 1199px) {
  .mobile-menu {
    display: block;
  }

  .hamburger-menu {
    display: flex;
    align-items: start;
  }

  .top__nav {
    display: none;
  }

  .botton__nav {
    display: none;
  }

  .navbar_section {
    height: auto;
    padding: 0.5rem 0;
  }

  .logo_wrapper {
    width: 8em;
  }

  .cta__container {
    margin: 0;
  }

  .cta__container a {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* ===============================
   Desktop Mega Dropdown
================================ */

.mega-nav-item {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 880px;
  padding-top: 20px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
  z-index: 9999;
}

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

.mega-dropdown-inner {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(16, 66, 145, 0.08);
}

.mega-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.mega-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light-color);
  margin-bottom: 4px;
}

.mega-title {
  margin: 0;
  color: var(--primary-dark-color);
  font-size: 28px;
  font-weight: 800;
}

.mega-view-all {
  height: fit-content;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-dark-color);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 66, 145, 0.18);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.mega-view-all:hover {
  color: #fff;
  background: var(--primary-dark-color);
  border-color: var(--primary-dark-color);
}

.mega-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  padding: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f2f7ff;
}

.mega-tab {
  border: 0;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark-color);
  cursor: pointer;
  transition: all 0.25s ease;
}

.mega-tab.active,
.mega-tab:hover {
  color: #fff;
  background: linear-gradient(135deg,
      var(--primary-light-color),
      var(--primary-dark-color));
  box-shadow: 0 8px 18px rgba(16, 66, 145, 0.22);
}

.mega-panel {
  display: none;
  animation: megaPanelFade 0.25s ease;
}

.mega-panel.active {
  display: block;
}

.mega-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mega-package-card {
  position: relative;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 66, 145, 0.08);
  text-decoration: none;
  color: var(--primary-dark-color);
  overflow: hidden;
  transition: all 0.25s ease;
}

.mega-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(16, 66, 145, 0.13);
  border-color: rgba(16, 66, 145, 0.18);
}

.mega-package-img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  background: #f2f7ff;
}

.mega-package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s ease;
}

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

.mega-package-content {
  padding: 14px;
}

.mega-package-name {
  display: block;
  min-height: 42px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary-dark-color);
  margin-bottom: 12px;
}

.mega-package-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mega-package-days {
  font-size: 13px;
  font-weight: 700;
  color: rgba(16, 66, 145, 0.62);
}

.mega-package-price {
  font-size: 13px;
  font-weight: 900;
  color: var(--primary-light-color);
  white-space: nowrap;
}

@keyframes megaPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* Desktop only */
@media (max-width: 991px) {
  .mega-dropdown {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .mega-dropdown {
    width: 760px;
  }

  .mega-package-img {
    height: 115px;
  }

  .mega-package-name {
    font-size: 14px;
  }

  .mega-package-price,
  .mega-package-days {
    font-size: 12px;
  }
}

/* welocme page  */
.sticky-social {
  position: fixed;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

/* Mobile + Tablet only */
.sticky-social.is-scrolling {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(20px);
}

.social-icon {
  background-color: var(--social-bg);
  display: block;
  color: var(--white-color);
  width: 2.5em;
  height: 2.5em;
  border-radius: 0.2em;
}

.social-icon svg {
  width: 1.5em;
  height: 1.5em;
  color: var(--white-color);
}

/* ===============================
   Hero Image + Video Slider
================================ */

.hero__section {
  width: 100%;
  height: 100vh;
  min-height: 750px;
  background: #000;
}

.hero-slider-inner,
.hero-slider-item {
  width: 100%;
  height: 100vh;
  min-height: 750px;
}

.hero-slider-item {
  position: relative;
}

.hero-slider-media {
  width: 100%;
  height: 100vh;
  min-height: 750px;
  object-fit: cover;
  display: block;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.22) 45%,
      rgba(0, 0, 0, 0.05) 100%);
}

.hero-search-wrapper {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 100%;
  max-width: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(2px);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
}

.hero__section form {
  width: 100%;
}

.hero__section .search-input {
  color: var(--white-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero__section .search-input::placeholder {
  color: var(--white-color);
  font-weight: 500;
  text-transform: capitalize !important;
}

.hero__section .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  box-shadow: none;
}

@media (max-width: 991px) {

  .hero__section,
  .hero-slider-inner,
  .hero-slider-item,
  .hero-slider-media {
    height: 70vh;
    min-height: 520px;
  }

  .hero-search-wrapper {
    max-width: 92%;
    bottom: 4em;
  }
}

@media (max-width: 575px) {

  .hero__section,
  .hero-slider-inner,
  .hero-slider-item,
  .hero-slider-media {
    height: 60vh;
    min-height: 460px;
  }

  .hero-search-wrapper {
    max-width: 95%;
    bottom: 3em;
  }

  .hero-search-wrapper form {
    flex-direction: column;
    gap: 12px;
  }

  .search_container {
    max-width: 100%;
  }
}

.about__section {
  position: relative;
  background-image: url("../../assets/images/about.jpg");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

.about__section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  /* 60% white overlay */
  z-index: 1;
}

.about__section>* {
  position: relative;
  z-index: 2;
}

.value-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 1px solid #f3f4f6;
}

/* package card */
.package__card {
  border-radius: 1rem;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package__card>div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package__card>div:last-child>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature__image {
  transition: all 0.3s ease-in;
  transform-origin: center;
}

.package__card:hover .feature__image {
  transform: scale(1.5);
}

.gradient-text {
  background: linear-gradient(135deg, #1795cb 0%, #0b4a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.divider {
  max-width: 70%;
  background: gray;
  margin: 0.5em auto;
}

/* Discount ribbon */
.discount-ribbon {
  position: absolute;
  top: 0;
  left: 0.5em;
  width: 50.75px;
  height: 80.25px;
  background: linear-gradient(180deg, #0d5472 0%, #199fd8 100%);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1em;
  text-align: center;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  border-radius: 0 0 0 0;
  /* ribbon shape */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.discount-ribbon span {
  display: block;
}

/* Featured badge */
.featured-badge {
  position: absolute;
  top: 1em;
  right: 0.5em;
  z-index: 5;
}

.featured-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: linear-gradient(135deg, #1795cb 0%, #0b4a65 100%);
  border-radius: 1.3em;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* why choose us */

.article_container {
  max-width: 60%;
}

.why__icon__container {
  width: 4em;
  height: 4em;
  overflow: hidden;
  border-radius: 50%;
}

/* .video_shadow {
  background-color: #023c752b;
  height: 650px;
  width: 100%;
}

.video__player {
  height: 650px;
  width: 100%;
} */
/* 
@media screen and (max-width: 900px) {
  .video_shadow,
  .video__player {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
  }
} */

.why__card {
  width: 100%;
  height: 11rem;
  overflow: hidden;
  align-self: flex-start;
  transition: height 0.3s ease;
  cursor: pointer;
}

.why__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.why__card:hover {
  height: fit-content;
}

.why__card:hover .why__description {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* .why__video {
  top: -1.5em;
  left: -1.5em;
}

@media screen and (max-width: 525px) {
  .why__video {
    top: 0;
    left: 0;
  }
    
} */
/* ==========================================
   VIDEO SECTION
========================================== */

.video-sticky-section {
  position: relative;
  width: 100%;
}


/* ==========================================
   BANNER
========================================== */

.about-video-banner {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 5;

  display: flex;
  align-items: center;
  justify-content: center;

  isolation: isolate;
  overflow: hidden;
}


/* ==========================================
   FIXED BACKGROUND IMAGE
========================================== */

.about-video-fixed-bg {
  position: absolute;
  inset: 0;

  background-image: var(--about-video-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /*
     * This makes only the background image
     * appear fixed while page content scrolls.
     */
  background-attachment: fixed;

  z-index: 0;
}


/* ==========================================
   DARK OVERLAY
========================================== */

.about-video-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.25);

  z-index: 1;

  pointer-events: none;
}


/* ==========================================
   PLAY BUTTON
========================================== */

.about-video-play {
  position: relative;
  z-index: 2;

  width: 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  padding: 0;

  border: 9px solid #fff;
  border-radius: 50%;

  background: var(--primary-color);
  color: #fff;

  cursor: pointer;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}


.about-video-play i {
  font-size: 52px;
  line-height: 1;

  /* visually center triangle */
  margin-left: 6px;
}


.about-video-play:hover {
  transform: scale(1.08);
  background: var(--primary-dark-color);
}


/* ==========================================
   MODAL
========================================== */

.about-video-modal {
  z-index: 99999;
}


.about-video-modal .modal-dialog {
  margin: 0;
}


.about-video-modal .modal-content {
  position: relative;

  width: 100%;
  height: 100%;

  border: 0;
  border-radius: 0;

  background: rgba(0, 0, 0, 0.96);
}


.about-video-modal .modal-body {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 70px 30px 30px;
}


/* ==========================================
   VIDEO PLAYER
   12 / 9 = 4 / 3
========================================== */

.about-video-player {
  width: min(1100px, 90vw);

  aspect-ratio: 12 / 9;

  background: #000;

  overflow: hidden;

  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}


.about-video-player iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}


/* ==========================================
   CLOSE BUTTON
========================================== */

.about-video-close {
  position: absolute;

  top: 25px;
  right: 30px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  z-index: 10;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.about-video-close:hover {
  background: #fff;
  color: #000;

  transform: rotate(90deg);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .about-video-banner {
    aspect-ratio: 16 / 7;
  }

  .about-video-play {
    width: 95px;
    height: 95px;

    border-width: 7px;
  }

  .about-video-play i {
    font-size: 42px;
  }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .about-video-banner {
    aspect-ratio: 16 / 9;
  }

  /*
     * background-attachment: fixed has poor
     * support on many mobile browsers.
     */
  .about-video-fixed-bg {
    background-attachment: scroll;
  }

  .about-video-play {
    width: 75px;
    height: 75px;

    border-width: 5px;
  }

  .about-video-play i {
    font-size: 33px;
    margin-left: 4px;
  }

  .about-video-modal .modal-body {
    padding:
      70px 12px 20px;
  }

  .about-video-player {
    width: 96vw;
  }

  .about-video-close {
    top: 15px;
    right: 15px;

    width: 44px;
    height: 44px;

    font-size: 27px;
  }
}

/* blogs */
.blog__card {
  min-height: 500px;
  height: 100%;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.blog__card>div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog__card>div:last-child>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog__side__container {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog__side__container .col-12:not(:last-child) .blog-side-card {
  border-bottom: 1px solid #e5e7eb;
}

.blog-side-card {
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured__blog__image__side {
  width: clamp(5rem, 10vw, 6rem);
  height: clamp(5rem, 10vw, 6rem);
  min-width: clamp(5rem, 10vw, 5.5);
  flex-shrink: 0;
  overflow: hidden;
}

.featured__blog__image__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet: Stack featured and side cards better */
@media (max-width: 991px) {
  .blog__card {
    min-height: 400px;
  }

  .blog__side__container {
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog__side__container .col-12 {
    flex: 1 1 calc(50% - 10px);
    min-width: 150px;
  }

  .blog__side__container .col-12:not(:last-child) .blog-side-card {
    border-bottom: none;
    border-right: 1px solid #e5e7eb;
  }
}

/* Mobile: Single column layout */
@media (max-width: 767px) {
  .blog__card {
    min-height: 350px;
  }

  .blog__side__container {
    min-height: auto;
    flex-direction: column;
  }

  .blog__side__container .col-12 {
    flex: 1 1 100%;
  }

  .blog__side__container .col-12:not(:last-child) .blog-side-card {
    border-bottom: 1px solid #e5e7eb;
    border-right: none;
  }

  .featured__blog__image__side {
    width: 5em;
    height: 5em;
    min-height: 5em;
  }
}

/* inquiry seciton */
.inquiry__section,
.why__choose_section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.inquiry__section {
  background-image: url("../../assets/images/inquiry.jpg");
}

.why__choose_section {
  background-image: url("../../assets/images/why-choose.jpg");
}

.inquiry__section::before,
.why__choose_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.inquiry__section>*,
.why__choose_section>* {
  position: relative;
  z-index: 2;
}

.icon_container {
  width: 1.5em;
  height: 1.5em;
  background-color: rgba(255, 255, 255, 0.2);
}

.inquiry__contact__container::after {
  content: "";
  position: absolute;
  width: 6em;
  height: 6em;
  left: -1.5em;
  bottom: -1.5em;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

.inquiry__contact__container::before {
  content: "";
  position: absolute;
  width: 6em;
  height: 6em;
  right: -1.5em;
  top: -1.5em;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

#packageInquiryForm .form-control,
#packageInquiryForm .form-select {
  padding: 12px 18px;
  font-size: 15px;
}

#packageInquiryForm .form-control:focus,
#packageInquiryForm .form-select:focus {
  box-shadow: none;
  border-color: #1795cb;
}

#packageInquiryForm .is-invalid {
  border-color: #dc3545 !important;
}

#packageInquiryForm .invalid-feedback {
  display: none;
  font-size: 13px;
  margin-top: 6px;
  color: #dc3545;
}

#packageInquiryForm .is-invalid~.invalid-feedback {
  display: block;
}

.iti {
  width: 100%;
  display: block;
  position: relative;
  border: 1px solid #ced4da;
  border-radius: 12px;
  background: transparent;
}

.iti:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
  border-color: var(--bs-primary);
}

/* ── Nuclear specificity fix ── */
.iti input.form-control,
.iti input {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.iti input.form-control:focus,
.iti input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── Input: fits inside pill ── */
#phone-input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 12px 12px 0 !important;
  padding-left: 10px;
  width: 100%;
  min-width: 0;
  background: transparent !important;
  outline: none !important;
}

#phone-input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── Select field styling ── */
.form-select.inquiry-field {
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-position: right 0.75rem center !important;
  background-repeat: no-repeat !important;
  background-size: 16px 12px !important;
  padding-right: 2.5rem !important;
}

.form-select.inquiry-field:focus {
  background-color: #fff !important;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25) !important;
}

.form-select.inquiry-field option {
  background-color: #fff;
  color: #000;
}

/* footer */
.footer__image__section {
  position: relative;
  width: 100%;
  bottom: -1.2rem;
  z-index: 100;

  /* background-image: url("../../assets/images/footer.png"); */
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;

  aspect-ratio: 1920 / 300;
  /* Use your image’s real dimensions */
}

/* testimonial links */
.testimonial__section {
  background-color: var(--gray-color);
}

/* page banner */
.page__banner__container {
  height: 90vh;
}

.page__banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.page__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      rgba(0, 0, 0, 0) 75%);
}

/* Content */
.page__banner__content {
  width: 100%;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  text-align: center;
}

.page__icon {
  width: 10em;
  min-width: 10em;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .page__banner__container {
    height: 50vh;
  }

  .page__banner__content {
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 2rem;
  }

  .page__icon {
    width: 6em;
    min-width: 6em;
  }

  .page__banner__title {
    font-size: 1.5rem;
  }
}

/* package detail */

.overview__detail__container {
  background: linear-gradient(to bottom, #eff6ff 0%, #ffffff 100%);
  border: 1px solid #dbeafe;
}

.overview__icon__container {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  flex-shrink: 0;
}

.highlight__container {
  background-image: url("../../assets/images/highlight.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.hightlight__circle__container {
  width: 2rem;
  height: 2em;
}

.itinerary__conainer {
  background: rgba(236, 233, 233, 0.6);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.itinerary-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.accordion-header {
  width: 100%;
  min-height: 4rem;
  padding: 0.5rem 1rem;
  border: 0;
  outline: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

.accordion-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem 6.3rem;
}

.accordion-content p {
  margin: 0;
  color: #555555;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
  max-height: fit-content;
}

@media screen and (max-width: 767px) {
  .accordion-header {
    min-height: 4.8rem;
    padding: 0.9rem 1rem;
    gap: 0.8rem;
  }

  .accordion-number {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }

  .accordion-content {
    padding: 0 1rem 1.2rem 4.8rem;
  }
}

/* package tab card */

.package-tab-card {
  width: 100%;
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 3rem;
  box-shadow:
    rgba(0, 0, 0, 0.18) 0px 18px 35px,
    rgba(0, 0, 0, 0.08) 0px 6px 12px;
  border: 1px solid rgba(219, 234, 254, 0.7);

}

.package-tabs {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  box-shadow: none;
}

.package-tabs::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
  box-shadow: none;
}

.package-tab-btn {
  border: none;
  outline: none;
  background: #ffffff;
  color: var(--black-color);
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid gainsboro;
  transition: all 0.3s ease;
}

.package-tab-btn.active {
  background: var(--primary-light-color);
  color: #ffffff;
}

.package-tab-btn:hover {
  transform: translateY(-2px);
}

.package-tab-content {
  display: none;
}

.package-tab-content.active {
  display: block;
}

.package-tab-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 103, 255, 0.35) 0px 8px 18px;
}

/* package tab editor content */
.package-tab-list-content li,
.package-tab-list-content>p {
  position: relative;
  width: 100%;
  background: #eff6ff;
  border-radius: 1rem;

  padding: 1rem 1.3rem 1rem 4rem;
  margin: 0;

  /* Important */
  display: block;

  color: var(--black-color);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  font-weight: 500;
}

/* Check icon */
.package-tab-list-content li::before,
.package-tab-list-content>p::before {
  content: "\eb7b";
  font-family: "remixicon";

  position: absolute;
  left: 1.3rem;
  top: 1rem;

  color: var(--primary-light-color);
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Bold title — NO GAP */
.package-tab-list-content strong,
.package-tab-list-content b {
  display: inline;
  margin: 0;
  padding: 0;

  font-weight: 700;
  color: var(--black-color);
}

/* Remove editor spacing */
.package-tab-list-content li p,
.package-tab-list-content li div,
.package-tab-list-content li span {
  margin: 0;
  padding: 0;
}

/* Cards spacing only */
.package-tab-list-content ul,
.package-tab-list-content ol {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-tab-list-content>p:not(:last-child) {
  margin-bottom: 1rem;
}

.package-tab-list-content>p:empty {
  display: none;
}

@media screen and (max-width: 767px) {

  .package-tab-list-content li,
  .package-tab-list-content>p {
    padding: 0.85rem 1rem 0.85rem 3rem;
    border-radius: 0.8rem;
  }

  .package-tab-list-content li::before,
  .package-tab-list-content>p::before {
    left: 1rem;
    top: 0.85rem;
    font-size: 1.2rem;
  }
}

/* customer reviews */

.review-description {
  display: -webkit-box;
  overflow: hidden;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.review-see-more-btn {
  display: none;
}

.customer-review-section {
  background: #ffffff;
  overflow: hidden;
}

.customer-review-title {
  color: var(--primary-dark-color);
}

.review-marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border: 3px solid var(--primary-light-color);
  border-radius: 1rem;
}

.review-marquee-wrapper::before,
.review-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 7rem;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.review-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.review-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.review-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: reviewMarquee 22s linear infinite;
}

.review-marquee-wrapper:hover .review-marquee-track {
  animation-play-state: paused;
}

.review-card {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eef5;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 8px 24px,
    rgba(0, 0, 0, 0.04) 0px 2px 8px;
}

.testimonial-item {
  height: 100%;
}

.testimonial-item .review-card {
  max-width: none;
  min-width: 0;
  height: 300px;
}

.review-avatar {
  width: 3.8rem;
  height: 3.8rem;
  min-width: 3.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
}

.review-avatar-dark {
  background: var(--footer-bg);
}

.review-avatar-blue {
  background: linear-gradient(135deg, #1795cb 0%, #0b4a65 100%);
  color: #ffffff !important;
}

.review-avatar-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
}

.review-avatar-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
}

.review-avatar-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff !important;
}

.review-avatar-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff !important;
}

.review-location {
  color: #8a98a8;
}

.review-location i {
  color: var(--primary-color);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00a870;
  background: #e8fff5;
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.review-rating i {
  color: #1fd188;
  font-size: 1.25rem;
}

.review-heading {
  margin-bottom: 1rem !important;
}

.review-description {
  color: #7b8794;
  min-height: auto;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.testimonial-item .review-description {
  min-height: 4.5rem;
}

.review-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-item .review-card-footer {
  gap: 0.5rem;
}

.review-date {
  color: #9aa6b2;
}

.review-date i,
.review-helpful i {
  margin-right: 0.3rem;
}

.review-helpful {
  color: var(--primary-color);
}

.review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-bg);
  text-transform: uppercase;
  box-shadow: 0 6px 12px rgba(11, 74, 101, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 30px;
}

.review-btn:hover {
  background: white;
  color: #000 !important;
  transform: translateY(-2px);
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* responsive */

.review-empty-track {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: none !important;
}

.empty-review-card {
  width: 100%;
  max-width: 520px;
  border: 1px solid #e8eef5;
  border-radius: 1.4rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 8px 24px,
    rgba(0, 0, 0, 0.04) 0px 2px 8px;
}

.empty-review-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--primary-light-color);

  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-review-icon i {
  font-size: 2.5rem;
}

.review-avatar-img {
  width: 3.8rem;
  height: 3.8rem;
  min-width: 3.8rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #eff6ff;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 12px;
}

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

@media screen and (max-width: 991px) {
  .review-marquee-wrapper {
    padding: 1.2rem;
  }

  .review-card {
    width: 30rem;
    min-width: 30rem;
    padding: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .review-marquee-wrapper {
    border-width: 2px;
    padding: 1rem;
    overflow-x: auto;
  }

  .review-marquee-wrapper::before,
  .review-marquee-wrapper::after {
    display: none;
  }

  .review-marquee-track {
    width: 100%;
    animation: none;
    flex-direction: column;
    gap: 1rem;
  }

  .review-card {
    width: 100%;
    min-width: 100%;
    padding: 1.2rem;
    border-radius: 1rem;
  }

  .review-description {
    min-height: auto;
  }

  .review-card-footer {
    flex-wrap: wrap;
  }

  .review-btn {
    width: 100%;
  }
}

/* review modal */

.review-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(1, 1, 1, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.review-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.review-modal-box {
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 0;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 20px 50px,
    rgba(0, 0, 0, 0.12) 0px 8px 18px;
  transform: translateY(20px) scale(0.96);
  transition: all 0.3s ease;
}

.review-modal-overlay.active .review-modal-box {
  transform: translateY(0) scale(1);
}

.review-modal-header {
  padding: 1.5rem 1.7rem;
  border-bottom: 1px solid #eef2f6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to bottom, #eff6ff 0%, #ffffff 100%);
  border-radius: 1.5rem 1.5rem 0 0;
}

.review-modal-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--primary-light-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-modal-title {
  margin: 0;
  color: var(--black-color);
  font-size: clamp(1.375rem, 2.8vw, 1.5rem);
  font-weight: 700;
}

.review-modal-close {
  width: 2.7rem;
  height: 2.7rem;
  min-width: 2.7rem;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--black-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 5px 14px;
  transition: all 0.3s ease;
}

.review-modal-close i {
  font-size: 1.5rem;
}

.review-modal-close:hover {
  background: var(--primary-light-color);
  color: #ffffff;
}

.review-modal-form {
  padding: 1.7rem;
}

.review-form-label {
  color: var(--black-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-form-input {
  border: 1px solid #dbeafe;
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  color: var(--black-color);
  font-weight: 500;
  box-shadow: none !important;
}

.review-form-input:focus {
  border-color: var(--primary-light-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 103, 255, 0.12) !important;
}

.review-form-input.is-invalid {
  border-color: var(--red-color) !important;
}

.review-error {
  display: block;
  margin-top: 0.35rem;
  color: var(--red-color);
  font-size: 0.8rem;
  font-weight: 500;
}

/* star picker */

.star-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.35rem;
}

.star-picker input {
  display: none;
}

.star-picker label {
  cursor: pointer;
  color: #cbd5e1;
  font-size: 2rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.star-picker label:hover,
.star-picker label:hover~label,
.star-picker input:checked~label {
  color: #1fd188;
}

.star-picker label:hover {
  transform: scale(1.08);
}

/* submit button */

.submit-btn {
  border: none;
  outline: none;
  background: linear-gradient(180deg,
      var(--primary-light-color) 0%,
      var(--primary-dark-color) 100%);
  color: #ffffff;
  padding: 0.95rem 1.4rem;
  border-radius: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 103, 255, 0.3);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg,
      var(--primary-dark-color) 0%,
      var(--primary-light-color) 100%);

  box-shadow: 0 8px 24px 5px rgba(16, 66, 145, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}



.view-details-btn {
  border: 1px solid #0d6efd;
  outline: none;
  color: var(--primary-dark-color) color: #ffffff;
  padding: 0.95rem 1.4rem;
  border-radius: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background: linear-gradient(180deg,
      var(--primary-light-color) 0%,
      var(--primary-dark-color) 100%);
  color: white;
}

/* mobile */

@media screen and (max-width: 575px) {
  .review-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .review-modal-box {
    max-height: 90vh;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .review-modal-header {
    padding: 1.2rem;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .review-modal-form {
    padding: 1.2rem;
  }

  .star-picker label {
    font-size: 1.7rem;
  }
}

/* expert section */

.expert-section {
  background: #ffffff;
}

.expert-title {
  color: var(--primary-dark-color);
}

.expert-card {
  max-width: 1400px;
  background: linear-gradient(to right, #ffffff, rgba(239, 246, 255, 1));

  border: 2px solid #dbeafe;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.expert-left {
  width: 100%;
}

.expert-image-wrapper {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 10.5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 25px,
    rgba(0, 0, 0, 0.08) 0px 3px 8px;
}

.expert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.expert-contact-buttons a {
  /* min-height: 2rem; */
  padding: 2px 8px;
  border-radius: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.expert-contact-buttons a i {
  font-size: 1.25rem;
}

.expert-whatsapp {
  background: #27d600;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(39, 214, 0, 0.28);
}

.expert-whatsapp:hover {
  background: #1fb800;
  color: #ffffff;
  transform: translateY(-2px);
}

.expert-email {
  background: #ffffff;
  color: var(--black-color);
  border: 1px solid #e1e7ef;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.expert-email:hover {
  background: var(--primary-light-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.expert-content {
  max-width: 780px;
}

.expert-meta {
  color: #2f2f2f;
}

.expert-meta span {
  color: #777777;
  margin: 0 0.5rem;
}

.expert-description {
  max-width: 720px;
  line-height: 1.8;
}

/* responsive */

@media screen and (max-width: 991px) {
  .expert-card {
    padding: 2rem;
  }

  .expert-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .expert-content {
    text-align: center;
    margin: 0 auto;
  }

  .expert-description {
    margin: 0 auto;
  }
}

@media screen and (max-width: 575px) {
  .expert-card {
    padding: 1.2rem;
    border-radius: 1.3rem;
  }

  .expert-image-wrapper {
    border-radius: 1.1rem;
    border-width: 4px;
  }

  .expert-contact-buttons {
    width: 100%;
  }

  .expert-contact-buttons a {
    flex: 1;
    padding: 0.65rem 0.8rem;
  }

  .expert-meta span {
    display: none;
  }

  .expert-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* upcoming departures */

.departure-card {
  width: 100%;
  border: 2px solid #dbeafe;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow:
    rgba(0, 0, 0, 0.08) 0px 12px 30px,
    rgba(0, 0, 0, 0.04) 0px 4px 12px;
}

.departure-card-header {
  padding: 2rem 1rem;
}

.departure-card-body {
  padding: 2rem;
}

.departure-item {
  width: 100%;
  min-height: 4rem;
  background: linear-gradient(to right, #eff6ff 0%, #ffffff 100%);
  border: 1px solid #dbeafe;
  border-radius: 1.4rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--black-color);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.departure-item i {
  font-size: 1.8rem;
  color: var(--black-color);
  flex-shrink: 0;
}

.departure-book-btn {
  min-height: 40px;
  border-radius: 1rem;
  background: linear-gradient(180deg,
      var(--primary-color) 0%,
      var(--footer-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(44, 171, 226, 0.35);
  transition: all 0.3s ease;
}

.departure-book-btn:hover {
  color: var(--white-color);
  transform: translateY(-2px);
  background: linear-gradient(180deg,
      var(--footer-bg) 0%,
      var(--primary-color) 100%);
}

.departure-customize-btn {
  min-height: 40px;
  border-radius: 1rem;
  background: var(--white-color);
  border: 1px solid var(--white-color);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 10px;
  transition: all 0.3s ease;
}

.departure-customize-btn:hover {
  color: var(--white-color);
  background: var(--primary-light-color);
  transform: translateY(-2px);
}

.departure-contact {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.3rem;
}

.departure-question {
  color: #6b7280;
}

.departure-contact-buttons a {
  flex: 1;
  min-height: 2rem;
  border-radius: 1rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  transition: all 0.3s ease;
}

.departure-contact-buttons a i {
  font-size: 1.4rem;
}

.departure-whatsapp {
  color: #17b85a;
  border: 1px solid #33dd78;
  background: #ffffff;
}

.departure-whatsapp:hover {
  color: #ffffff;
  background: #17b85a;
}

.departure-email {
  color: var(--primary-light-color);
  border: 1px solid #82b7ff;
  background: #ffffff;
}

.departure-email:hover {
  color: #ffffff;
  background: var(--primary-light-color);
}

/* mobile */

@media screen and (max-width: 575px) {
  .departure-card {
    border-radius: 1.3rem;
  }

  .departure-card-header {
    padding: 1.5rem 1rem;
  }

  .departure-card-body {
    padding: 1.2rem;
  }

  .departure-item {
    min-height: 4.5rem;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
  }

  .departure-item i {
    font-size: 1.5rem;
  }

  .departure-book-btn,
  .departure-customize-btn {
    min-height: 3.4rem;
    border-radius: 0.8rem;
  }

  .departure-contact-buttons {
    flex-direction: column;
  }

  .departure-contact-buttons a {
    min-height: 3.2rem;
  }
}

/* package download and share */

.package-action-row {
  width: 100%;
}

.package-download-btn {
  flex: 1;
  background: #ffffff;
  color: var(--black-color);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 8px 18px,
    rgba(0, 0, 0, 0.08) 0px 2px 6px;
  transition: all 0.3s ease;
}

.package-download-btn i {
  color: var(--primary-light-color);
  font-size: 1.7rem;
}

.package-download-btn:hover {
  color: var(--primary-light-color);
  transform: translateY(-2px);
}

.package-download-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.package-share-wrapper {
  position: relative;
  flex-shrink: 0;
}

.package-share-btn {
  width: 3rem !important;
  height: 3rem !important;
  min-width: 2rem !important;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-light-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    rgba(0, 0, 0, 0.18) 0px 8px 18px,
    rgba(0, 0, 0, 0.08) 0px 2px 6px;
  transition: all 0.3s ease;
}

.package-share-btn i {
  font-size: 1.5rem;
}

.package-share-btn:hover,
.package-share-wrapper.active .package-share-btn {
  background: var(--primary-light-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.package-share-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  width: 220px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.6rem;
  z-index: 99;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);

  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 12px 30px,
    rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.25s ease;
}

.package-share-wrapper.active .package-share-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.package-share-menu a,
.package-share-menu button {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--black-color);
  text-decoration: none;
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;

  display: flex;
  align-items: center;
  gap: 0.7rem;

  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.package-share-menu a i,
.package-share-menu button i {
  font-size: 1.25rem;
  color: var(--primary-light-color);
}

.package-share-menu a:hover,
.package-share-menu button:hover {
  background: #eff6ff;
  color: var(--primary-light-color);
}

.package-share-menu::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  right: 1.55rem;
  width: 0.9rem;
  height: 0.9rem;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

/* mobile */

@media screen and (max-width: 575px) {
  .package-download-btn {
    min-height: 3.8rem;
    border-radius: 0.8rem;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .package-download-btn i {
    font-size: 1.4rem;
  }

  .package-share-btn {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }

  .package-share-btn i {
    font-size: 1.5rem;
  }

  .package-share-menu {
    right: 0;
    width: 205px;
  }
}

/* package download and share */

.package-action-row {
  width: 100%;
}

.package-download-btn {
  flex: 1;
  min-height: 4.5rem;
  background: #ffffff;
  color: var(--black-color);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem 0.4rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 8px 18px,
    rgba(0, 0, 0, 0.08) 0px 2px 6px;
  transition: all 0.3s ease;
}

.package-download-btn i {
  color: var(--primary-light-color);
  font-size: 1.7rem;
}

.package-download-btn:hover {
  color: var(--primary-light-color);
  transform: translateY(-2px);
}

.package-download-btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.package-share-wrapper {
  position: relative;
  flex-shrink: 0;
  z-index: 999;
}

.package-share-btn {
  width: 4.5rem;
  height: 4.5rem;
  min-width: 4.5rem;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-light-color);
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    rgba(0, 0, 0, 0.18) 0px 8px 18px,
    rgba(0, 0, 0, 0.08) 0px 2px 6px;
  transition: all 0.3s ease;
}

.package-share-btn i {
  font-size: 1.8rem;
}

.package-share-btn:hover,
.package-share-wrapper.active .package-share-btn {
  background: var(--primary-light-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.package-share-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  width: 220px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 0.6rem;
  z-index: 99;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);

  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 12px 30px,
    rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 0.25s ease;
}

.package-share-wrapper.active .package-share-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.package-share-menu a,
.package-share-menu button {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--black-color);
  text-decoration: none;
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;

  display: flex;
  align-items: center;
  gap: 0.7rem;

  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.package-share-menu a i,
.package-share-menu button i {
  font-size: 1.25rem;
  color: var(--primary-light-color);
}

.package-share-menu a:hover,
.package-share-menu button:hover {
  background: #eff6ff;
  color: var(--primary-light-color);
}

.package-share-menu::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  right: 1.55rem;
  width: 0.9rem;
  height: 0.9rem;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

/* mobile */

@media screen and (max-width: 575px) {
  .package-download-btn {
    min-height: 3.8rem;
    border-radius: 0.8rem;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .package-download-btn i {
    font-size: 1.4rem;
  }

  .package-share-btn {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }

  .package-share-btn i {
    font-size: 1.5rem;
  }

  .package-share-menu {
    right: 0;
    width: 205px;
  }
}

/* trekking page */
.treking__card {
  transition: all 0.3s ease-in;
}

.trekking__overlay {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in;
}

.treking__card:hover .trekking__overlay {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white-color) !important;
}

/* destinaiton */

.destination__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6em;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.35s ease-in-out;
  z-index: 2;
}

.hide_overlay {
  opacity: 0;
  display: none;
  transform: translateY(15px);
  transition: all 0.35s ease-in-out;
}

.destination_title {
  opacity: 1;
  display: block;
  transition: all 0.25s ease-in-out;
}

.destination__image {
  transition: all 0.25s ease-in-out;
  transform-origin: center;
}

.destination__card:hover .destination__overlay {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.destination__card:hover .hide_overlay {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

.destination__card:hover .destination_title {
  opacity: 0;
  display: none;
}

.destination__card:hover .destination__image {
  transform: scale(1.3);
}

.destination__package__section {
  position: relative;
  background-image: url("../../assets/images/destination.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.destination__package__section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  /* opacity overlay */
  z-index: 1;
}

.destination__package__section>* {
  position: relative;
  z-index: 2;
}

/* activity */
.activity-card {
  position: relative;
  height: 520px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

/* Image area */
.activity-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  transition:
    height 0.55s ease,
    border-radius 0.55s ease;
}

.activity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.activity-card:hover .activity-card__image {
  height: 58%;
  border-radius: 18px 18px 10px 10px;
}

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

/* Dark overlay on first screen */
.activity-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.65));
  opacity: 1;
  transition: opacity 0.45s ease;
}

.activity-card:hover .activity-card__image::after {
  opacity: 0;
}

/* Front title + button */
.activity-card__front {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.activity-card__front h3 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

.activity-card:hover {
  padding: 1em;
}

.activity-card:hover .activity-card__front {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Hover content */
.activity-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  padding: 22px 28px 26px;
  background: #fff;
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.45s ease 0.08s,
    transform 0.45s ease 0.08s;
}

.activity-card:hover .activity-card__content {
  opacity: 1;
  transform: translateY(0);
}

.activity-card__content h3 {
  margin: 0 0 18px;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.activity-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 13px 28px;
  border-radius: 15px;
  background: linear-gradient(180deg, #087092, #18aee2);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.activity-card:hover .activity-card__btn {
  transform: translateY(-2px);
}

.activity-card__btn:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.26);
}

/* Responsive */
@media (max-width: 991px) {
  .activity-card {
    height: 500px;
  }

  .activity-card__content {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .activity-card {
    height: 470px;
  }

  .activity-card:hover .activity-card__image {
    height: 54%;
  }

  .activity-card__content {
    height: 46%;
    padding: 18px;
  }

  .activity-card__content li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .activity-card__btn {
    min-width: 130px;
    padding: 11px 22px;
    font-size: 0.9rem;
  }
}

/* team page */
/* team category card */
.team-category-card {
  position: relative;
  width: 100%;
  min-height: 156px;
  background: #eef5ff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

/* reverse layout for even cards */
.team-category-card.reverse {
  flex-direction: row-reverse;
}

/* text side */
.team-category-content {
  width: 46%;
  min-width: 46%;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 2.5rem;
}

.team-category-card.reverse .team-category-content {
  justify-content: flex-end;
}

.team-category-icon {
  width: 105px;
  height: 105px;
  min-width: 105px;
  min-height: 105px;
  border-radius: 50%;
  background: var(--primary-light-color);
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.28);
}

.team-category-text {
  max-width: 360px;
  text-align: center;
}

.team-category-text h3 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  color: var(--black-color);
  text-transform: uppercase;
  font-weight: 700;
}

.team-category-text p {
  margin: 0;
  color: var(--primary-light-color);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

/* image side */
.team-category-image-wrap {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  width: 56%;
  padding: 12px 0;
  z-index: 1;
}

.team-category-card.reverse .team-category-image-wrap {
  right: auto;
  left: 12px;
}

.team-category-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.team-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-category-image::after {
  content: "";
  position: absolute;
  inset: 12px 0;
  background: rgba(0, 120, 180, 0.28);
  border-radius: 10px;
  pointer-events: none;
  bottom: 0;
  top: 0;
}

/* arrow divider */
.team-category-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 155px;
  background: #eef5ff;
  z-index: 3;
  clip-path: polygon(0 0, 38% 0, 100% 50%, 38% 100%, 0 100%);
  pointer-events: none;
}

/* reverse arrow */
.team-category-card.reverse .team-category-arrow {
  left: auto;
  right: -2px;
  clip-path: polygon(100% 0, 62% 0, 0 50%, 62% 100%, 100% 100%);
}

/* tablet */
@media (max-width: 991px) {
  .team-category-card {
    min-height: 170px;
  }

  .team-category-content {
    width: 52%;
    min-width: 52%;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .team-category-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    font-size: 46px;
  }

  .team-category-text h3 {
    font-size: 30px;
  }

  .team-category-text p {
    font-size: 19px;
  }

  .team-category-image-wrap {
    width: 50%;
  }

  .team-category-arrow {
    width: 115px;
  }
}

/* mobile */
@media (max-width: 767px) {

  .team-category-card,
  .team-category-card.reverse {
    flex-direction: column;
    padding: 1.2rem;
    gap: 1rem;
  }

  .team-category-content,
  .team-category-card.reverse .team-category-content {
    width: 100%;
    min-width: 100%;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .team-category-icon {
    margin: 0 auto;
  }

  .team-category-text {
    max-width: 100%;
  }

  .team-category-image-wrap,
  .team-category-card.reverse .team-category-image-wrap {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: 210px;
    padding: 0;
  }

  .team-category-image::after {
    inset: 0;
  }

  .team-category-arrow {
    display: none;
  }
}

.team__card {
  position: relative;
  cursor: pointer;
}

.team__image {
  transition: transform 0.4s ease;
}

.team-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  background: rgba(0, 0, 0, 0.5);
  color: #000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.35s ease;
  padding: 1rem;
}

.team-overlay-inner {
  width: 100%;
  min-height: 60%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.team-overlay-content {
  width: 100%;
  text-align: center;
}

.team-overlay-content h4 {
  margin-bottom: 0.6rem;
}

.team-post {
  color: #000;
  font-weight: 600;
  text-align: center;
  position: relative;
  bottom: 0;
}

.team__card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.team__card:hover .team__image {
  transform: scale(1.08);
}

.team__detail_banner {
  height: 90vh;
}

@media screen and (max-width: 768px) {
  .team__detail_banner {
    height: 100dvh;
  }
}

/* cerifcations */
.achievements-slider {
  width: 100%;
  padding: 0 3rem;
}

.achievement-card {
  border-radius: 0 0 12px 12px;
  padding: 2rem 4rem;
  min-height: 320px;
}

.achievement-left-title {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: "Bebas Neue", sans-serif;
}

.achievement-description {
  color: #222;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  line-height: 1.8;
  text-transform: capitalize;
  padding: 0 1rem;
  text-align: justify;
}

.certificate-box {
  width: 100%;
  max-width: 421.25px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.certificate-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.achievements-prev-btn,
.achievements-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: #000;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.achievements-prev-btn {
  left: 0.5rem;
}

.achievements-next-btn {
  right: 0.5rem;
}

@media (max-width: 991px) {
  .achievements-slider {
    padding: 0 2rem;
  }

  .achievement-card {
    padding: 2rem;
  }

  .achievement-description {
    text-align: center;
    padding: 0;
  }

  .certificate-box {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .achievements-slider {
    padding: 0 1.5rem;
  }

  .achievement-card {
    padding: 1.5rem 1rem;
  }

  .achievements-prev-btn,
  .achievements-next-btn {
    font-size: 2rem;
    width: 32px;
    height: 32px;
  }
}

/* contact us  */

.contact-form-ui {
  background-color: #e3eef6;
  border-radius: 1rem;
}

.contact-form-label {
  display: block;
  color: #71a3eb;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: var(--primary-font, "Montserrat", sans-serif);
}

.contact-form-input {
  width: 100%;
  min-height: 2.5rem;
  background-color: #f6f9ff !important;
  border: none !important;
  border-radius: 0.9rem !important;
  padding: 0.9rem 1rem;
  color: var(--black-color);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  box-shadow: none !important;
}

.contact-form-input::placeholder {
  color: #cfcfcf;
  font-weight: 500;
}

.contact-form-input:focus {
  background-color: #ffffff !important;
  outline: none !important;
  border: none !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 103, 255, 0.12) !important;
}

.contact-form-textarea {
  min-height: 190px;
  resize: none;
}

.contact-submit-btn {
  min-width: 160px;
  min-height: 58px;
  border: none;
  outline: none;
  border-radius: 0.9rem;
  background: linear-gradient(180deg,
      var(--primary-light-color) 0%,
      var(--primary-dark-color) 100%);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 103, 255, 0.35);
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg,
      var(--primary-dark-color) 0%,
      var(--primary-light-color) 100%);
}

/* intl-tel-input fix for this form */
.contact-form-ui .iti {
  width: 100%;
  border: none;
  border-radius: 0.9rem;
  background-color: #f6f9ff;
}

.contact-form-ui .iti input {
  min-height: 4rem;
  background-color: #f6f9ff !important;
  border-radius: 0.9rem !important;
}

.contact-form-ui .iti--separate-dial-code .iti__selected-flag {
  background-color: #f6f9ff !important;
  border-radius: 0.9rem 0 0 0.9rem !important;
  border-right: none !important;
}

@media screen and (max-width: 575px) {
  .contact-form-ui {
    padding: 1.5rem !important;
  }

  .contact-form-input {
    min-height: 3.5rem;
  }

  .contact-submit-btn {
    min-width: 140px;
    min-height: 52px;
  }
}

.contact_video {
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.contact_video iframe {
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 525px) {
  .contact_video {
    height: 300px;
    border-radius: 0.5em;
  }
}

/* affilaiton and partner */
.affiliation_partner_section {
  background: var(--footer-bg);
  overflow: hidden;
}

/* =========================================
   Slider Block
========================================= */

.logo-slider-block {
  width: 100%;
}

.logo-slider-wrapper {
  --items-per-view: 6;
  --slider-gap: 18px;

  position: relative;

  width: 100%;
  max-width: 1320px;

  margin-inline: auto;

  overflow: hidden;

  border-radius: 16px;

  background: rgba(0, 0, 0, 0.08);

  padding: 20px 14px;
}

/* =========================================
   Track
========================================= */

.logo-slider-track {
  display: flex;
  align-items: center;

  gap: var(--slider-gap);

  width: 100%;

  transform: translate3d(0, 0, 0);

  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);

  will-change: transform;
}

/* =========================================
   Individual item
========================================= */

.logo-slider-item {
  flex: 0 0 calc((100% - ((var(--items-per-view) - 1) * var(--slider-gap))) / var(--items-per-view));

  min-width: 0;

  display: flex;

  align-items: center;
  justify-content: center;
}

/* When there are fewer items than visible */
.logo-slider-wrapper.is-static .logo-slider-track {
  justify-content: center;

  transform: none !important;

  transition: none !important;
}

/* Static items should not use calculated full slider width */
.logo-slider-wrapper.is-static .logo-slider-item {
  flex-basis: auto;
}

/* =========================================
   Links
========================================= */

.logo-slide {
  flex: 0 0 auto;

  display: flex;

  align-items: center;
  justify-content: center;

  text-decoration: none;
}

/* =========================================
   AFFILIATION
========================================= */

.affiliation-slider-wrapper {
  min-height: 112px;
}

.affiliation-logo-slide {
  width: 78px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliation-logo-slide img {
  width: 72px;
  height: 72px;

  object-fit: contain;

  border-radius: 50%;

  background: #ffffff;

  padding: 9px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.affiliation-logo-slide:hover img {
  transform: translateY(-3px) scale(1.04);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* =========================================
   PARTNER
========================================= */

.partner-slider-wrapper {
  min-height: 120px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.partner-logo-slide {
  width: 100%;
  height: 82px;

  padding: 4px 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-slide img {
  display: block;

  width: 100%;
  max-width: 170px;

  height: 72px;

  object-fit: contain;

  background: transparent;

  transition: transform 0.3s ease;
}

.partner-logo-slide:hover img {
  transform: scale(1.04);
}

/* =========================================
   Tablet
   5 items
========================================= */

@media (max-width: 991.98px) {
  .affiliation_partner_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .logo-slider-wrapper {
    --items-per-view: 5;
    --slider-gap: 14px;

    width: 100%;

    padding: 18px 12px;

    border-radius: 14px;
  }

  .affiliation-logo-slide {
    width: 70px;
    height: 70px;
  }

  .affiliation-logo-slide img {
    width: 66px;
    height: 66px;

    padding: 8px;
  }

  .partner-logo-slide {
    height: 75px;
  }

  .partner-logo-slide img {
    max-width: 145px;
    height: 65px;
  }
}

/* =========================================
   Mobile
   3 items
========================================= */

@media (max-width: 575.98px) {
  .logo-slider-wrapper {
    --items-per-view: 4;
    --slider-gap: 10px;

    width: 100%;

    padding: 14px 8px;

    border-radius: 10px;
  }

  .affiliation-slider-wrapper {
    min-height: 96px;
  }

  .affiliation-logo-slide {
    width: 64px;
    height: 64px;
  }

  .affiliation-logo-slide img {
    width: 60px;
    height: 60px;

    padding: 7px;
  }

  .partner-slider-wrapper {
    min-height: 90px;

    padding-top: 12px;
    padding-bottom: 12px;
  }

  .partner-logo-slide {
    height: 65px;

    padding-inline: 4px;
  }

  .partner-logo-slide img {
    width: 100%;
    max-width: 105px;

    height: 58px;
  }
}

/* =========================================
   Very small mobiles
========================================= */

@media (max-width: 360px) {
  .logo-slider-wrapper {
    --slider-gap: 6px;

    padding-inline: 5px;
  }

  .affiliation-logo-slide {
    width: 58px;
    height: 58px;
  }

  .affiliation-logo-slide img {
    width: 55px;
    height: 55px;
  }

  .partner-logo-slide img {
    max-width: 90px;
  }
}

/* =========================================
   Accessibility
========================================= */

@media (prefers-reduced-motion: reduce) {
  .logo-slider-track {
    transition: none !important;
  }
}

/* ===============================
   Single Page Trip Plan Form
================================ */

.trip-plan-section {
  background: #ffffff;
}

.trip-form-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(16, 66, 145, 0.08);
}

.trip-form-heading h2 {
  margin: 0;
}

.trip-form-card {
  background: #e8f4fb;
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0 18px 50px rgba(16, 66, 145, 0.06);
}

.trip-form-label {
  display: block;
  margin-bottom: 8px;
  color: #06465b;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.2;
}

.trip-form-input {
  width: 100%;
  min-height: 58px;
  border-radius: 10px !;
  border: 2px solid rgba(6, 70, 91, 0.12);
  background-color: transparent;
  color: #1f2937;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 18px;
  transition: all 0.25s ease;
}

.trip-form-input::placeholder {
  color: rgba(31, 41, 55, 0.45);
}

.trip-form-input:focus {
  background-color: transparent;
  border-color: var(--primary-light-color);
  box-shadow: 0 0 0 4px rgba(0, 103, 255, 0.1);
}

.trip-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-card {
  display: block;
  cursor: pointer;
}

.experience-card input {
  display: none;
}

.experience-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(6, 70, 91, 0.12);
  background: transparent;
  color: #06465b;
  transition: all 0.25s ease;
}

.experience-content i {
  font-size: 34px;
  line-height: 1;
}

.experience-content strong {
  color: #1f2937;
  font-size: 22px;
  font-weight: 800;
}

.experience-content small {
  color: rgba(31, 41, 55, 0.72);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.experience-card:hover .experience-content,
.experience-card input:checked+.experience-content {
  border-color: var(--primary-light-color);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 30px rgba(0, 103, 255, 0.12);
  transform: translateY(-3px);
}

.group-size-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trip-range {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(31, 41, 55, 0.1);
  outline: none;
}

.trip-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #06465b;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(6, 70, 91, 0.25);
}

.trip-range::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #06465b;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(6, 70, 91, 0.25);
}

.group-size-value {
  color: #06465b;
  font-size: 16px;
  font-weight: 800;
}

.trip-form-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #1f2937;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.6;
}

.trip-form-check .form-check-input {
  width: 24px;
  height: 24px;
  margin-top: 6px;
  flex: 0 0 auto;
}

.trip-form-check a {
  color: #06465b;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trip-form-submit {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.trip-submit-btn {
  min-width: 150px;
  border: none;
  border-radius: 14px;
  padding: 16px 46px;
  background: linear-gradient(180deg,
      var(--primary-light-color),
      var(--primary-dark-color));
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 103, 255, 0.28);
  transition: all 0.25s ease;
}

.trip-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 103, 255, 0.34);
}

.trip-submit-btn.disabled {
  pointer-events: none;
  opacity: 0.7;
}

/* ===============================
   Phone Input Fix
   Must be after old .iti CSS
================================ */

#singleTripPlanForm .is-invalid {
  border-color: #dc3545 !important;
}

#singleTripPlanForm .invalid-feedback,
#singleTripPlanForm .error-msg {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .trip-form-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0;
  }

  .trip-form-card {
    padding: 30px;
  }

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

  .experience-content {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .trip-form-row {
    padding: 32px 0;
  }

  .trip-form-card {
    padding: 22px;
    border-radius: 14px;
  }

  .trip-form-input {
    min-height: 52px;
    font-size: 15px;
    padding: 12px 14px;
  }

  .trip-form-label {
    font-size: 16px;
  }

  .trip-submit-btn {
    width: 100%;
  }
}

.review-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7;
  max-height: calc(1.7em * 3);
  word-break: break-word;
}

.review-see-more-btn {
  display: inline-block;
  width: fit-content;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.review-see-more-btn:hover {
  color: var(--primary-dark-color);
  text-decoration: underline;
}

.review-modal-content {
  border: none;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.review-full-text {
  font-family: var(--primary-font);
  color: var(--black-color);
  line-height: 1.8;
}

.review-full-text p {
  margin-bottom: 12px;
}

.review-rating i {
  color: #f5c518;
}

.testimonial-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.testimonial-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  height: 100%;
}

.testimonial-item {
  height: 100%;
  display: flex;
}

.testimonial-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary-dark-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-carousel-btn:hover {
  background: var(--primary-light-color);
  transform: translateY(-50%) scale(1.05);
}

.testimonial-carousel-btn i {
  font-size: 1.4rem;
  line-height: 1;
}

.testimonial-prev {
  left: 8px;
}

.testimonial-next {
  right: 8px;
}

.testimonial-carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Tablet: 2 cards */
@media (max-width: 991px) {
  .testimonial-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .testimonial-carousel-wrapper {
    padding: 0 50px;
  }

  .testimonial-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-carousel-btn i {
    font-size: 1.2rem;
  }

  .testimonial-prev {
    left: 6px;
  }

  .testimonial-next {
    right: 6px;
  }
}

/* Mobile: 1 card */
@media (max-width: 767px) {
  .testimonial-carousel-wrapper {
    padding: 0 45px;
  }

  .testimonial-slide {
    flex: 0 0 100%;
  }

  .testimonial-carousel-btn {
    width: 36px;
    height: 36px;
  }

  .testimonial-carousel-btn i {
    font-size: 1rem;
  }

  .testimonial-prev {
    left: 4px;
  }

  .testimonial-next {
    right: 4px;
  }
}

/* Small mobile: buttons visible on sides */
@media (max-width: 480px) {
  .testimonial-carousel-wrapper {
    padding: 0 50px;
    padding-bottom: 1rem;
  }

  .testimonial-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    z-index: 10;
  }

  .testimonial-carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .testimonial-prev {
    left: 8px;
  }

  .testimonial-next {
    right: 8px;
  }
}

/* Package Reviews Carousel Styles */
.testimonial-track-pkg {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-item-pkg {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  height: 100%;
  display: flex;
}

/* Tablet: 2 cards */
@media (max-width: 991px) {
  .testimonial-item-pkg {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* Mobile: 1 card */
@media (max-width: 767px) {
  .testimonial-item-pkg {
    flex: 0 0 100%;
  }
}

.modal-backdrop {
  z-index: 9998 !important;
}

.modal {
  z-index: 9999 !important;
}

.review-modal-content {
  position: relative;
  z-index: 10000;
  background: #ffffff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

/* milsestone */
.milestone__bg {
  background-color: #d1e6fc;
  width: 7vw;
  height: 7vw;
  min-height: 3em;
  min-width: 3em;
}

.milestone__bg {
  width: 90px;
  height: 90px;
  background: #e8f4ff;
}

.milestone-card {
  height: 100%;
  padding: 1rem 1.25rem;
}

/* desktop separator */
@media (min-width: 992px) {
  .milestone-col:not(:last-child) .milestone-card {
    border-right: 1px solid rgba(0, 0, 0, 0.22);
  }
}

/* tablet separator */
@media (min-width: 768px) and (max-width: 991px) {
  .milestone-col:nth-child(odd) .milestone-card {
    border-right: 1px solid rgba(0, 0, 0, 0.18);
  }

  .milestone-col:nth-child(1) .milestone-card,
  .milestone-col:nth-child(2) .milestone-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }
}

/* mobile separator */
@media (max-width: 767px) {
  .milestone-col:not(:last-child) .milestone-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  .milestone__bg {
    width: 75px;
    height: 75px;
  }
}

.mission__vision__section {
  position: relative;
  background-image: url("../../assets/images/images/mission.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mission__vision__section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.mission__vision__section>* {
  position: relative;
  z-index: 2;
}

.vision-quote-box {
  position: relative;
  background: linear-gradient(135deg, #e9f6ff 0%, #b8d8ed 100%);
  border-radius: 30px;
  padding: 1rem 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.vision-quote-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.quote-icon {
  z-index: 2;
  font-size: 90px;
  line-height: 0.7;
  font-weight: 800;
  color: #003b70;
  font-family: Georgia, serif;
  margin: 0;
}

.vision-quote-text {
  margin: 0;
  font-style: italic;
  color: #000;
}

@media (max-width: 767px) {
  .vision-quote-box {
    border-radius: 22px;
    padding: 30px 24px;
  }

  .quote-icon {
    font-size: 70px;
  }
}

.founder__image__container {
  background-color: #b8d8ed;
  width: 100%;
  height: 800px;
  border-radius: 4rem;
  transform: rotate(2deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder__image {
  border-radius: 4rem;
  transform: rotate(-2deg);
  overflow: hidden;
  height: 95%;
  width: 100%;
}

/* news letter */

.footer-newsletter-form {
  width: 90%;
}

.footer-newsletter-input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.footer-newsletter-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.75rem 0.9rem;
  color: #010101;
  font-size: 0.95rem;
  font-weight: 600;
  overflow: hidden;
}

.footer-newsletter-input::placeholder {
  color: rgba(1, 1, 1, 0.48);
  font-weight: 500;
}

.footer-newsletter-btn {
  width: 2.9rem;
  height: 2.9rem;
  min-width: 2.9rem;
  border: 0;
  outline: 0;
  border-radius: 50%;
  background: linear-gradient(to right, #0067ff 10%, #104291 90%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
  transform: translateY(-2px) rotate(-8deg);
  box-shadow: 0 8px 18px rgba(0, 103, 255, 0.35);
}

.footer-newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.footer-newsletter-message {
  display: block;
  margin-top: 0.7rem;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-newsletter-message.success {
  color: #b9ffd0;
}

.footer-newsletter-message.error {
  color: #ffd1d1;
}

@media screen and (max-width: 420px) {
  .footer-newsletter-form {
    width: 100%;
  }

  .footer-newsletter-input-wrap {
    border-radius: 0.9rem;
  }

  .footer-newsletter-input {
    padding: 0.7rem;
    font-size: 0.9rem;
  }

  .footer-newsletter-btn {
    width: 2.6rem;
    height: 2.6rem;
    min-width: 2.6rem;
  }
}

.policy-section {
  background: #f8fafc;
  overflow-x: hidden;
}

.policy-sticky {
  position: sticky;
  top: 120px;
}

.policy-tabs-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.policy-tab {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.policy-tab:not(:last-child) {
  margin-bottom: 12px;
}

.policy-tab-icon {
  width: 26px;
  min-width: 26px;
  color: #0878ff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.policy-tab:hover,
.policy-tab.active-tab {
  background: linear-gradient(180deg,
      var(--primary-light-color) 0%,
      var(--primary-dark-color) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 103, 255, 0.32);
}

.policy-tab:hover .policy-tab-icon,
.policy-tab.active-tab .policy-tab-icon {
  color: #ffffff;
}

.policy-content-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 42px 48px;
  min-height: 620px;
  max-height: 720px;
  overflow-y: auto;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.13);
}

.policy-content-card::-webkit-scrollbar {
  width: 6px;
}

.policy-content-card::-webkit-scrollbar-track {
  background: transparent;
}

.policy-content-card::-webkit-scrollbar-thumb {
  background: #0b8cff;
  border-radius: 30px;
}

.policy-tab-content {
  display: none;
}

.policy-tab-content.active-content {
  display: block;
}

.policy-title {
  color: #005ad6;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.policy-title-line {
  width: 46px;
  height: 3px;
  background: #0b8cff;
  margin-bottom: 42px;
}

.policy-description {
  color: #4b5563;
  font-size: 20px;
  line-height: 1.7;
}

.policy-description h1,
.policy-description h2,
.policy-description h3,
.policy-description h4,
.policy-description h5,
.policy-description h6 {
  color: #111827;
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.policy-description p {
  margin-bottom: 22px;
}

.policy-description ul,
.policy-description ol {
  padding-left: 22px;
  margin-bottom: 22px;
}

.policy-description li {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .policy-sticky {
    position: static;
  }

  .policy-tabs-card {
    border-radius: 20px;
    padding: 16px;
  }

  .policy-tab {
    font-size: 16px;
    padding: 14px 16px;
  }

  .policy-content-card {
    min-height: auto;
    max-height: none;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .policy-description {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .policy-sticky {
    position: static;
  }

  .policy-tabs-card {
    border-radius: 20px;
    padding: 12px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .policy-tabs-card::-webkit-scrollbar {
    display: none;
  }

  .policy-tab {
    width: auto;
    min-width: max-content;
    flex: 0 0 auto;
    font-size: 15px;
    padding: 13px 18px;
    margin-bottom: 0 !important;
  }

  .policy-tab-icon {
    width: 22px;
    min-width: 22px;
    font-size: 20px;
  }

  .policy-content-card {
    min-height: auto;
    max-height: none;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .policy-description {
    font-size: 17px;
  }
}

.iti {
  width: 100%;
}

.iti--container {
  z-index: 99999 !important;
}

.iti__dropdown-content {
  width: 100%;
}

/* faqs */
.faq-page-section {
  position: relative;
  background-image: url("../../assets/images/faq.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-page-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  z-index: 1;
  pointer-events: none;
}
/* faqs */
.faq-page-section {
  position: relative;
  background-image: url("../../assets/images/faq.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-page-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  z-index: 1;
  pointer-events: none;
}

.faq-page-section > * {
  position: relative;
  z-index: 2;
}

/* ================= TAB BAR OUTER (wrapper + arrows) ================= */
.faq-tabs-outer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-tabs-arrow {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: var(--primary-light-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 103, 255, 0.3);
  transition: all 0.25s ease;
}

.faq-tabs-arrow:hover {
  transform: scale(1.08);
}

.faq-tabs-arrow.is-hidden {
  display: none;
}

.faq-tabs-wrapper {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: space-evenly !important;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 2rem;
  padding: 0.5rem 24px 1.3rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.faq-tabs-wrapper.center-fit {
  justify-content: center !important;
}

.faq-tabs-wrapper::-webkit-scrollbar {
  height: 6px;
}

.faq-tabs-wrapper::-webkit-scrollbar-thumb {
  background: rgba(16, 66, 145, 0.35);
  border-radius: 999px;
}

.faq-tabs-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.faq-tab-btn {
  flex: 0 0 auto;
  width: max-content !important;
  min-width: max-content;
  white-space: nowrap;
  border: 1px solid var(--primary-light-color) !important;
  outline: 0;
  padding: 0.75rem 2.2rem;
  border-radius: 1rem;
  background: #ffffff;
  color: var(--primary-light-color);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  scroll-margin: 24px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
  background: #3d8fe6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ================= FAQ BOX ================= */
.faq-box {
  width: 100%;
  min-height: fit-content;
  padding: 2.4rem 2.6rem;
  border-radius: 1rem;
  background: rgba(61, 143, 230, 0.95);
  overflow: hidden;
  box-shadow:
    0 14px 35px rgba(16, 66, 145, 0.22),
    inset 0 -120px 140px rgba(16, 66, 145, 0.06);
}

.faq-panel {
  display: none;
  animation: faqFade 0.28s ease;
}

.faq-panel.active {
  display: block;
}

.faq-item {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  padding-bottom: 2rem;
}

.faq-item+.faq-item {
  margin-top: 2rem;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ================= FAQ QUESTION ================= */
.faq-question {
  width: 100%;
  min-height: fit-content;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #101820;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.3;
  font-weight: 800;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 5px;
  border-radius: 4px;
}

.faq-question-text {
  display: block;
  max-width: calc(100% - 50px);
}

/* ================= PLUS / MINUS ICON ================= */
.faq-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101820;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 400;
}

.faq-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

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

.faq-question[aria-expanded="true"] .icon-plus {
  display: none;
}

.faq-question[aria-expanded="true"] .icon-minus {
  display: inline-flex;
}

/* ================= FAQ ANSWER ================= */
.faq-answer {
  max-width: 90%;
  padding: 1rem 4rem 1rem 0;
  color: #101820;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  font-weight: 500;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ================= TABLET ================= */
@media screen and (max-width: 991px) {
  .faq-tabs-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .faq-tabs-wrapper {
    justify-content: space-evenly;
    gap: 1rem;
  }

  .faq-tab-btn {
    min-width: unset;
    width: max-content !important;
    padding: 0.5rem 1.6rem;
  }

  .faq-box {
    padding: 2rem;
    min-height: auto;
  }

  .faq-question {
    min-height: 78px;
  }
}

/* ================= MOBILE ================= */
@media screen and (max-width: 575px) {
  .faq-tabs-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
  }

  .faq-tab-btn {
    min-width: unset;
    width: max-content !important;
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
  }

  .faq-box {
    padding: 1.4rem;
    border-radius: 0.8rem;
  }

  .faq-item+.faq-item {
    margin-top: 1rem;
  }

  .faq-question {
    min-height: 68px;
    gap: 0.75rem;
  }

  .faq-question-text {
    max-width: calc(100% - 42px);
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 2rem;
  }

  .faq-answer {
    max-width: 100%;
    padding: 0.5rem 0 1rem;
  }
}
.office-wrapper {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.18),
    0 5px 0 #71aad4;
}

.contact-section {
  background-image: url("../../assets/images/faq.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.image-contact {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid white;
}

/* booking modal */
.package-booking-modal .modal-dialog {
  max-width: 970px;
}

.package-booking-modal-content {
  position: relative;
  overflow: hidden;
  /* border: 2px solid #1596df; */
  border-radius: 1rem;
  background: transparent;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.package-booking-box {
  padding: 2.5rem 3.5rem 3rem;
  background: rgba(227, 238, 246, 0.96);
}

.package-modal-close {
  position: absolute;
  top: 28px;
  right: 45px;
  z-index: 10;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 0;
  opacity: 1;
  background-size: 14px;
}

.package-booking-heading {
  margin-bottom: 2.5rem;
}

.package-booking-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 500;
}

.package-form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333333;
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 500;
}

.package-form-control {
  min-height: 60px;
  padding: 0.9rem 1.25rem;
  border: 1px solid #c8cdd2;
  border-radius: 9px;
  background: #ffffff;
  color: #222222;
  font-family: var(--primary-font);
  font-size: 1rem;
  box-shadow: none;
}

.package-form-control::placeholder {
  color: #9299a3;
}

.package-form-control:focus {
  border-color: #1596df;
  box-shadow: 0 0 0 3px rgba(21, 150, 223, 0.12);
}

.package-form-control[readonly] {
  background: #ffffff;
  cursor: default;
}

.package-message-control {
  min-height: 140px;
  resize: vertical;
}

.package-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.package-terms-check .form-check-input {
  width: 21px;
  height: 21px;
  margin-top: 0.15rem;
  border-color: #b8c0c8;
  flex-shrink: 0;
}

.package-terms-check .form-check-label {
  color: #333333;
  font-family: var(--primary-font);
  font-size: 1rem;
  line-height: 1.6;
}

.package-terms-check a {
  color: #0b5675;
  font-weight: 600;
  text-decoration: none;
}

.package-submit-btn {
  min-width: 150px;
  padding: 0.85rem 2rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #104291 0%, #0067ff 100%);
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 600;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 7px 14px rgba(0, 103, 255, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.package-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 10px 20px rgba(0, 103, 255, 0.32);
}

/* Phone country code plugin */
.package-booking-modal .iti {
  display: block;
  width: 100%;
}

.package-booking-modal .iti input {
  width: 100%;
  min-height: 60px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border: 1px solid #c8cdd2;
  border-radius: 9px;
  background: #ffffff;
}

.package-booking-modal .iti__selected-country {
  padding-left: 16px;
  padding-right: 14px;
}

.package-booking-modal .iti__country-container {
  border-right: 1px solid #d4d8dd;
}

.package-booking-modal .iti__dropdown-content {
  z-index: 1080;
}

@media screen and (max-width: 767px) {
  .package-booking-modal .modal-dialog {
    margin: 1rem;
  }

  .package-booking-box {
    padding: 2rem 1.25rem;
  }

  .package-modal-close {
    top: 20px;
    right: 20px;
  }

  .package-booking-heading {
    padding-right: 2rem;
    margin-bottom: 2rem;
  }

  .package-form-control,
  .package-booking-modal .iti input {
    min-height: 54px;
  }
}

.inquiry-modal .modal-dialog {
  max-width: 850px;
}

.inquiry-modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.inquiry-form-box {
  padding: 2.2rem 3rem 2.8rem;
  background: rgba(227, 238, 246, 0.98);
}

.inquiry-modal-close {
  position: absolute;
  top: 28px;
  right: 38px;
  z-index: 10;
  width: 15px;
  height: 15px;
  padding: 0;
  opacity: 1;
  background-size: 13px;
}

.inquiry-heading {
  margin-bottom: 1.5rem;
}

.inquiry-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 500;
}

.inquiry-form-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #252525;
  font-family: var(--primary-font);
  font-size: 0.95rem;
  font-weight: 600;
}

.inquiry-form-control {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  border: 1px solid #d0d5da;
  border-radius: 4px;
  background: #ffffff;
  color: #202020;
  font-family: var(--primary-font);
  font-size: 0.95rem;
  box-shadow: none;
}

.inquiry-form-control::placeholder {
  color: #9aa0a8;
}

.inquiry-form-control:focus {
  border-color: #1596df;
  box-shadow: 0 0 0 3px rgba(21, 150, 223, 0.12);
}

.inquiry-message-control {
  min-height: 145px;
  resize: vertical;
}

.inquiry-submit-btn {
  min-width: 125px;
  padding: 0.75rem 1.8rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #104291 0%, #0067ff 100%);
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 7px 16px rgba(0, 103, 255, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.inquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 103, 255, 0.32);
}

/* Phone country-code input */
.inquiry-modal .iti {
  display: block;
  width: 100%;
}

.inquiry-modal .iti input {
  width: 100%;
  min-height: 50px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border: 1px solid #d0d5da;
  border-radius: 4px;
  background: #ffffff;
}

.inquiry-modal .iti__selected-country {
  padding-left: 14px;
  padding-right: 12px;
}

.inquiry-modal .iti__country-container {
  border-right: 1px solid #d0d5da;
}

.inquiry-modal .iti__dropdown-content {
  z-index: 1080;
}

@media screen and (max-width: 767px) {
  .inquiry-modal .modal-dialog {
    margin: 1rem;
  }

  .inquiry-form-box {
    padding: 2rem 1.25rem;
  }

  .inquiry-modal-close {
    top: 20px;
    right: 20px;
  }

  .inquiry-heading {
    padding-right: 2rem;
  }

  .inquiry-form-control,
  .inquiry-modal .iti input {
    min-height: 48px;
  }
}

/* search */
/* ================= NAVBAR SEARCH BUTTON ================= */

.navbar-search-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(16, 66, 145, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-dark-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(16, 66, 145, 0.12);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.navbar-search-btn:hover {
  background: var(--primary-light-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(16, 66, 145, 0.2);
}

/* ================= SEARCH MODAL ================= */

.navbar-search-modal {
  background: rgba(5, 20, 35, 0.45);
  backdrop-filter: blur(5px);
}

.navbar-search-modal .modal-dialog {
  max-width: 700px;
}

.navbar-search-modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.25);
}

.navbar-search-box {
  padding: 3rem;
  background: rgba(227, 238, 246, 0.98);
}

.navbar-search-close {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 10;
  padding: 0;
  opacity: 1;
}

.navbar-search-description {
  color: #555f69;
  font-family: var(--primary-font);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= SEARCH INPUT ================= */

.navbar-search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cbd3da;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 66, 145, 0.1);
}

.navbar-search-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #6b7680;
  font-size: 1.35rem;
  pointer-events: none;
}

.navbar-search-input {
  min-height: 62px;
  padding: 0.9rem 145px 0.9rem 58px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #101820;
  font-family: var(--primary-font);
  font-size: 1rem;
  outline: none;
  box-shadow: none !important;
  transition: all 0.2s ease;
}

.navbar-search-input:focus {
  box-shadow: none !important;
}

.navbar-search-input::placeholder {
  color: #929aa2;
}

.navbar-search-submit {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  min-width: 120px;
  padding: 0.7rem 1.5rem;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg,
      var(--primary-light-color),
      var(--primary-dark-color));
  color: #ffffff;
  font-family: var(--primary-font);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 103, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.navbar-search-text {
  display: inline;
}

.navbar-search-icon {
  display: none;
  font-size: 1.2rem;
}

.navbar-search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 103, 255, 0.35);
}

.navbar-search-submit:active {
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 767px) {
  .navbar-search-modal .modal-dialog {
    margin: 1rem;
  }

  .navbar-search-modal-content {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }

  .navbar-search-box {
    padding: 2rem 1.25rem 1.5rem;
  }

  .navbar-search-close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }

  .navbar-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .navbar-search-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    margin: 0;
  }

  .navbar-search-input {
    flex: 1;
    min-height: 48px;
    padding: 0.8rem 0.8rem 0.8rem 38px;
    border: 1px solid #cbd3da;
    border-radius: 8px;
    background: #ffffff;
    margin: 0;
  }

  .navbar-search-submit {
    position: static;
    flex-shrink: 0;
    min-width: 48px;
    width: auto;
    height: 48px;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    font-size: 1rem;
  }

  .navbar-search-text {
    display: none;
  }

  .navbar-search-icon {
    display: inline;
    font-size: 1.3rem;
  }

  .navbar-search-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

/* trust */
.trust__card {
  min-height: 171px;
  box-shadow:
    rgba(50, 50, 93, 0.1) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.yt-icon-shape svg {
  height: 10px !important;
  width: 40px !important;
}



.grecaptcha-badge {
  display: none !important;
}



/* package download button css */
.dl-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.dl-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  width: 100%;
  max-width: 380px;
  position: relative;
}

.dl-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.dl-modal-box h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

#downloadModalForm input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
}

#dl-submit-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

#dl-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#dl-message {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}