/*
 * Droidfirm
 * Copyright 2025 Droidfirm LLC.
 * Licensed under MIT ()
 */
:root {
  --hnp-white: #ffffff;
  --hnp-orange: #fc9506;
  --hnp-dark-brown: #6c3015;
  --hnp-dark: #222222;
  --hnp-black: #000000;
  --hnp-light-gray: #f6f6f6;
  --hnp-gradient-white: #737373;
  --hnp-gradient-black: #737373;
}
@font-face {
  font-family: "OswaldRegular";
  src: url("font/Oswald-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "OswaldBold";
  src: url("font/Oswald-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLight";
  src: url("font/Poppins-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsMedium";
  src: url("font/Poppins-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PoppinsRegular";
  src: url("font/Poppins-Regular.woff2") format("woff2");
  font-display: swap;
}
body {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  scrollbar-width: 0; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none; /* Safari and Chrome */
}
/* For all text selections */
::selection {
  background-color: var(--hnp-orange); /* Yellow background */
  color: var(--hnp-white);
}

/* For Firefox */
::-moz-selection {
  background-color: var(--hnp-orange);
  color: var(--hnp-white);
}
h1,
.h1 {
  font-family: "OswaldBold";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: bold;
  font-size: 15.625vw;
  line-height: 15.625vw;
  margin: 0;
}

h2,
.h2 {
  font-family: "OswaldBold";
  letter-spacing: 0px;
  text-decoration: none;
  font-weight: 700;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
}

h3,
.h3 {
  font-family: "OswaldBold";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 700;
  font-size: 5.21vw;
  line-height: 5.21vw;
  margin: 0;
}

h4,
.h4 {
  font-family: "OswaldBold";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5625vw;
  line-height: 2.0833vw;
  margin: 0;
}

h5,
.h5 {
  font-family: "PoppinsMedium";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1667vw;
  line-height: 2.0833vw;
  margin: 0;
}

h6,
.h6 {
  font-family: "PoppinsLight";
  letter-spacing: 25%;
  text-decoration: none;
  font-weight: 300;
  font-size: 32px;
  margin: 0;
}

.h7 {
  font-family: "PoppinsMedium";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.0417vw;
  line-height: 20px;
}

.h8 {
  font-family: "PoppinsLight";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
}

p {
  font-family: "PoppinsRegular";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  margin: 0;
}

a {
  font-family: "PoppinsRegular";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 400;
  color: inherit;
}

a:hover {
  transform: scale(1.04);
}

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

.text-black {
  color: #000000;
}

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

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

.text-warning {
  color: var(--hnp-orange);
}

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

.btn-primary {
  color: var(--hnp-white);
  background-color: var(--hnp-dark-brown);
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-primary p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  font-weight: 500;
}

.btn-sm {
  padding: 10px 24px;
  max-height: 2.8125vw;
  height: 2.8125vw;
  color: var(--hnp-black);
  background-color: var(--hnp-light-gray);
  border-radius: 0.52084vw;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
}

.btn-sm.active {
  color: var(--hnp-white);
  background-color: var(--hnp-dark-brown);
}

.btn-sm p {
  font-size: 1.04167vw;
  line-height: 1.5625vw;
}

.btn-primary:hover {
  transform: scale(1.04);
}

.p-absolute {
  position: absolute;
}

.p-relative {
  position: relative;
}

.p-fixed {
  position: fixed;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.m-0 {
  margin: 0;
}

.mb-1 {
  margin-bottom: 0.83vw;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mh-5 {
  margin: 0 5px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.w-100 {
  width: 100% !important;
}

.w-54 {
  width: 54%;
}

.w-445 {
  width: 44.5%;
}
.icon {
  width: 1.0417vw;
  height: 1.0417vw;
}
.bb-primary {
  border-bottom: 1px solid var(--hnp-dark-brown);
}

.fs-14 {
  font-size: 1.0417vw;
  line-height: 20px;
}

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

.justify-content-flex-end {
  justify-content: flex-end;
}

.justify-content-space-between {
  justify-content: space-between;
}

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

.btn-round-primary {
  width: 3.854vw;
  height: 3.854vw;
  background-color: var(--hnp-dark-brown);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline-primary {
  padding: 6px 18px;
  border: 1px solid var(--hnp-dark-brown);
  border-radius: 6px;
  cursor: pointer;
}

.btn-outline-primary p {
  font-size: 1.0417vw;
  font-weight: 500;
}
@keyframes zoomOut {
  0% {
      transform: scale(1.6);   /* start zoomed in */
  }
  100% {
      transform: scale(1);     /* end normal */
  }
}
.in-view {
  transform: scale(1) !important; /* zoom-out */
}
.lazy-item {
  opacity: 0;
  transition: all 0.8s ease;
}

/* Different animation types */
.lazy-item.fade-up {
  transform: translateY(50px);
}

.lazy-item.fade-down {
  transform: translateY(-50px);
}

.lazy-item.fade-left {
  transform: translateX(50px);
}

.lazy-item.fade-right {
  transform: translateX(-50px);
}

.lazy-item.zoom {
  transform: scale(0.8);
}

.lazy-item.rotate {
  transform: rotate(10deg) scale(0.9);
}

/* Animation states */
.lazy-item.animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0);
}

/* Delay classes for staggered animations */
.lazy-item.delay-1 {
  transition-delay: 0.1s;
}

.lazy-item.delay-2 {
  transition-delay: 0.2s;
}

.lazy-item.delay-3 {
  transition-delay: 0.3s;
}

.lazy-item.delay-4 {
  transition-delay: 0.4s;
}

.lazy-item.delay-5 {
  transition-delay: 0.5s;
}
.date-picker-container {
  background-color: #f6f6f6;
  background-color: #f6f6f6db;
  -webkit-backdrop-filter: blur(0.26042vw);
  backdrop-filter: blur(0.26042vw);
  border-radius: 0.52084vw;
  box-shadow: 0 0.26042vw 0.4167vw rgba(0, 0, 0, 0.15);
  padding: 0.4167vw;
  margin-top: 0.52084vw;
  display: none;
  position: absolute;
  z-index: 4;
  top: 0.78125vw;
  left: 0;
  width: 38.75vw;
}
        
.date-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.78125vw;
}
        
.date-picker-header button {
  background: var(--hnp-dark-brown);
  border: none;
  font-size: 1.04167vw;
  cursor: pointer;
  color: #ffffff;
  padding: 0.26042vw 0.52084vw;
  border-radius: 50%;
  transition: background 0.2s;
    }
        
.date-picker-header button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
        
.date-picker-header h3 {
  color: var(--hnp-dark);
  font-weight: 600;
  margin: 0;
  font-size: 1.5625vw;
  line-height: 1.5625vw;
}

.date-picker-calendar {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8334vw;
  line-height: 1.302084vw;
}

.date-picker-calendar th {
  padding: 0.5208vw 0;
  color: #666;
  font-weight: 500;
  text-align: center;
  font-family: 'PoppinsRegular';
  width: 3.4375vw;
}

.date-picker-calendar td {
  padding: 0.4167vw 0;
  text-align: center;
  cursor: pointer;
  border-radius: 0.26042vw;
  transition: background 0.2s;
  color: #222222;
  font-family: 'PoppinsRegular';
  border: 0.1042vw solid #f6f6f6;
}

.date-picker-calendar td:hover:not(.other-month) {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.date-picker-calendar .current-day {
  background: var(--hnp-orange);
  color: white;
}

.date-picker-calendar .selected {
  background: var(--hnp-dark-brown);
  color: white;
  font-weight: bold;
}

.date-picker-calendar .other-month {
  color: #9d9d9d;;
}

/* Hero Section */
.home .hero {
  position: relative;
  height: 54vw;
  overflow: hidden;
}

.about-us .hero {
  position: relative;
  height: 98.3472vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 103%;
  object-fit: cover;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #00000033;
  top: 0;
}
.hero-content {
  position: absolute;
  top: 29.79vw;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-h2 {
  margin: 0;
}

.hero-content-p {
  font-size: 1.5rem;
  margin-bottom: 0;
  letter-spacing: 6px;
  max-width: max-content;
}

.hero-content-p2 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.search-form {
  background-color: var(--hnp-white);
  height: 7.5vw;
  width: 57vw;
  border-radius: 1.3021vw;
  display: flex;
  align-items: center;
  max-width: 57vw;
  box-shadow: 0.26vw 1.0417vw 2.604vw 0px #0000001A;
}

.search-form .des {
  width: 11.77vw;
  height: 3.125vw;
  margin: 0 1.67vw;
}

.des p {
  font-size: 1.0417vw;
  display: flex;
  justify-content: space-between;
  margin: 0;
  align-items: center;
}

.des .sp {
  font-size: 0.75rem;
  color: var(--hnp-gradient-black);
}

.search-form .line {
  width: 1px;
  height: 50px;
  background-color: #cccccc;
}

.search-form .btn-primary {
  margin: 0 10px;
  width: 90px;
  height: 50px;
  display: flex;
  justify-content: center;
}

.partners-section {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  max-width: 950px;
}

.partner-logo {
  height: 70px;
}

/* Destination Section */
.destination {
  position: relative;
  height: 62.5vw;
  overflow: hidden;
}

.destination-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  width: 79.17vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.destination-content-h2 {
  color: var(--hnp-light-gray);
  font-size: 10.4167vw;
  margin: 0;
}

.destination-content-p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 6px;
  font-size: 21px;
}

.des-but-cont {
  display: flex;
}

.destination-item {
  width: 18.6458vw;
  height: 26.3542vw;
  border-radius: 1.3021vw;
  display: block;
}

.destination-item.active {
  padding: 10px 20px;
  width: 216px;
  height: 344px;
  box-shadow: 2px 2px 10px 2px rgb(112 108 108 / 11%);
}

.destination-item img {
  width: 100%;
  border-radius: 1.3021vw;
  height: 20.8333vw;
  object-fit: cover;
}

.destination-item.active img {
  height: 260px;
  width: 218px;
}

.destination-item.destination-item-cap {
  margin-top: 20px;
}

.destination-item.active.destination-item-cap {
  margin-top: 20px;
  display: flex;
}

.destination-name {
  color: var(--hnp-dark);
  width: max-content;
  font-weight: 500;
  font-size: 1.6667vw;
}

.destination-packages i {
  color: var(--hnp-dark-brown);
}

.destination-packages {
  color: var(--hnp-dark);
  width: max-content;
  font-size: 1.0417vw;
}

.features-section {
  position: relative;
  height: 20.833vw;
  background-color: var(--hnp-light-gray);
  overflow: hidden;
}

.features-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: max-content;
}

.features {
  max-height: 11.4583vw;
  display: flex;
  justify-content: space-between;
}

.feature-item {
  width: 14.69vw;
  height: 11.1458vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.item-icon {
  height: 3.5417vw;
  width: 3.5417vw;
  border-radius: 50%;
  background-color: var(--hnp-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0.5901vw 0.5901vw 1.59375vw 0px #AB5C0E6E;
}

.icon-image {
  height: 2.6042vw;
  width: 2.6042vw;
}

.item-t {
  font-size: 1.0417vw;
  font-weight: 500;
}

.item-p {
  font-size: 0.833vw;
  line-height: 1.25vw;
  font-weight: 300;
}

.packages-section {
  position: relative;
  height: 57.8125vw;
  background-color: var(--hnp-white);
  overflow: hidden;
}

.packages-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79.17vw;
}

.packages-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.package-item {
  width: 18.75vw;
  height: 39.90vw;
  position: relative;
}

.package-item.active {
  width: 58.85vw;
  height: 39.90vw;
}

.package-item img {
  height: 39.90vw;
  object-fit: cover;
  border-radius: 1.3021vw;
}

.package-item.active img {
  height: 28.125vw;
  border-radius: 1.3021vw;
  object-fit: cover;
}

.package-item-gradient {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top,#222222 66%,#222222 66%,rgba(34, 34, 34, 0) 100%);
  opacity: 100%;
  width: 100%;
  height: 19.17vw;
  max-height: 19.17vw;
  border-radius: 1.3021vw;
  z-index: 3;
}

.package-item-no {
  position: absolute;
  top: 1.56vw;
  left: 15.10vw;
  color: var(--hnp-white);
  z-index: 3;
  margin: 0;
  font-weight: 500;
}

.package-item-active-item-no {
  position: absolute;
  top: 9.864vw;
  right: 1.528vw;
  color: var(--hnp-dark);
  z-index: 3;
  margin: 0;
  font-weight: 500;
}

.package-item-item-h5 {
  position: absolute;
  bottom: 1.56vw;
  left: 1.56vw;
  color: var(--hnp-white);
  font-size: 1.6667vw;
  line-height: 2.0833vw;
  z-index: 3;
  width: min-content;
  margin: 0;
}

.package-item-h3 {
  margin: 0;
  font-size: 71px;
  line-height: 70px;
  width: 100%;
  text-align: start;
}

.package-item-p {
  font-size: 1.04vw;
  line-height: 1.5625vw;
  color: #000000;
  opacity: 70%;
  font-weight: 500;
}

.package-item-cta {
  background-color: var(--hnp-dark-brown);
  width: 11.77vw;
  border-radius: 0.52vw;
}

.package-item-cta-p {
  color: var(--hnp-white);
  font-size: 1.04vw;
  line-height: 1.5625vw;
}

.package-item-des-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.package-item-des-title {
  width: 27.92vw;
}

.package-item-des {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25.94vw;
}

.process-section {
  position: relative;
  background-color: var(--hnp-light-gray);
  height: 120vh;
  overflow: hidden;
}

.process-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 69.79vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-content-h2 {
  color: var(--hnp-white);
  font-size: 140px;
  margin: 0;
}

.process-content-p {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 6px;
  font-size: 21px;
}

.process-wrap {
  position: relative;
  width: 100%;
  height: 235px;
  margin-top: 4.1667vw;
}

.process-line {
  width: 59.90vw;
  position: absolute;
  left: 13.125vw;
  top: 4.306vw;
  object-fit: cover;
}

.process-item-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 14.58vw;
  justify-content: space-between;
}

.process-item-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 14.58vw;
  left: 27.361vw;
  top: 6.944vw;
  justify-content: space-between;
}

.process-item-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 214px;
  right: 190px;
  top: -40px;
  justify-content: space-between;
}

.process-item-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 18.23vw;
  right: 2.083vw;
  top: 9.722vw;
  justify-content: space-between;
}

.faq-section {
  position: relative;
  height: 43.02vw;
  background-color: var(--hnp-white);
  overflow: hidden;
}

.faq-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79.17vw;
  justify-content: space-between;
  align-items: flex-start !important;
}

.faq-h3 {
  margin: 0;
  font-size: 5.21vw;
  line-height: 5.21vw;
  width: 100%;
  text-align: start;
}

.testimonial-section {
  position: relative;
  background-color: #f6f6f6;
  height: 33.3333vw;
  overflow: hidden;
}

.testimonial-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79.17vw;
  height: 23.9583vw;
  display: flex;
}

/* Footer Section */
.footer-section {
  position: relative;
  height: 17.40vw;
  background-color: var(--hnp-white);
  overflow: hidden;
}

.footer-content {
  width: 78%;
  height: 85%;
  padding: 0 32px;
  position: relative;
  margin: 0 auto;
}

/* Logo Section */
.footer-logo {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-logo__image {
  width: 5.833vw;
  height: 5.833vw;
  margin-left: 0;
}

/* Navigation Links */
.footer-nav {
  position: absolute;
  top: 2.0833vw;
  left: 50%;
  display: flex;
}

.footer-nav__link {
  font-size: 0.8333vw;
  line-height: 1.25vw;
  color: var(--hnp-dark-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav__link:hover {
  color: var(--hnp-dark);
}

/* Social Media */
.footer-social {
  display: flex;
  column-gap: 14px;
  position: absolute;
  top: 48px;
  right: 9px;
}

.footer-social__icon {
  transition: transform 0.3s ease;
}

.footer-social__icon:hover {
  transform: scale(1.1);
}

/* Facebook specific */
.footer-social__icon--facebook {
  width: 2.9167vw;
  height: 2.9167vw;
}

/* Twitter and Instagram */
.footer-social__icon--twitter,
.footer-social__icon--instagram {
  width: 2.9167vw;
  height: 2.9167vw;
}

/* Footer Bottom */
.footer-bottom {
  position: absolute;
  top: 134px;
  border-top: 1px solid var(--hnp-dark-brown);
  display: flex;
  padding-top: 12px;
  justify-content: space-between;
  width: 96%;
}

.footer-copyright {
  font-size: 0.833vw;
  line-height: 1.25vw;
  color: var(--hnp-dark-brown);
  margin: 0;
}

.footer-legal {
  font-size: 0.833vw;
  line-height: 1.25vw;
  color: var(--hnp-dark-brown);
  margin: 0;
}

.footer-legal__link {
  color: var(--hnp-dark-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal__link:hover {
  color: var(--hnp-dark);
}

/* Gradient */
.hero .gradient {
  position: fixed;
  top: 0;
  /* background: linear-gradient(to bottom, #222222 0%, #222222 66%, rgba(34, 34, 34, 0) 100%); */
  width: 100%;
  height: 86px;
  max-height: 100px;
  z-index: 3;
  background-color: #f6f6f6d9;
  backdrop-filter: blur(5px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 80%;
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 11;
}

.navbar-toggle {
  display: none;
}
.mobile-dropdown-menu {
  display: none;
}
.mobile-dropdown-toggle {
    font-size: 0.8333vw;
    line-height: 0.8333vw;
    color: var(--hnp-dark-brown);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.logo {
  width: 5.2083vw;
  height: 5.2083vw;
}

.nav-links {
  display: flex;
}

.sp.despi2 {
  display: none !important;
  display: none;
}

.nav-links .link {
  font-size: 0.8333vw;
  line-height: 1.04167vw;
  color: var(--hnp-dark-brown);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links .link:hover {
  color: var(--hnp-orange);
}
.navlinks-cta {
    display: none;
}
.btn {
  border-radius: 0.52vw;
  background-color: #d9d9d9;
  color: var(--hnp-black);
  padding: 1vw;
  gap: 1vw;
  border: none;
}
.btn-primary {
  border-radius: 0.52vw;
  background-color: var(--hnp-dark-brown);
  color: var(--hnp-white);
  padding: 1vw;
  gap: 1vw;
}

/* Search button text */
.search-btn-text {
  font-size: 1.0417vw;
}

/* Partner logo sizes */
.partner-logo-60 {
  height: 60px;
}

.partner-logo-40 {
  height: 40px;
}

.package-des {
  display: flex;
  margin-bottom: 2.5vw;
  justify-content: space-between;
}

.package-des .button {
  border-bottom: 1px solid var(--hnp-dark-brown);
  color: var(--hnp-dark-brown);
  font-family: "PoppinsRegular";
  letter-spacing: 0%;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 1.5625vw;
}

/* Destination items container */
.destination-items-container {
  display: flex;
}

/* Chevron icon */
.chevron-icon {
  font-size: 22px;
}

/* Process Section Styles */
.process-icon-circle {
  height: 8.54vw;
  width: 8.54vw;
  background: var(--hnp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0.26vw 1.0417vw 2.60vw 0px #0000000D;
}

.process-icon-circle.active {
  background: var(--hnp-dark-brown);
}

.process-icon-margin-72 {
  margin-left: 72px;
}

.process-icon-margin-32 {
  margin-left: 32px;
}

.process-icon-img {
  width: 4.1667vw;
}

.process-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-title {
  font-size: 1.6667vw;
  line-height: 2.0833vw;
  font-weight: 500;
}

.process-description {
  font-size: 0.75vw;
  line-height: 1.25vw;
  font-weight: 300;
  text-align: center;
  text-wrap-style: balance;
}

/* FAQ Section Styles */
.align-items-flex-end {
  align-items: flex-end;
}

.faq-left-column {
  width: 25.83vw;
}

.faq-right-column {
  width: 51.35vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1.875vw;
  margin-top: 7.8125vw;
}

.faq-intro-text {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  margin-top: 2.9167vw;
}

.faq-ornament {
  height: 6.25vw;
  margin-top: 5.729vw;
}

.faq-item.expanded {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0.2604vw 1.0417vw 2.6042vw 0px #0000000D;
  border-radius: 1.3021vw;
  background-color: var(--hnp-white);
}

.faq-item {
  display: flex;
  justify-content: space-between;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item-padding-alt {
  padding: 4px 22px;
}

.faq-question-container {
  width: 94%;
}

.faq-question-container-sm {
  width: 93%;
}

.faq-question {
  font-size: 23.2px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'PoppinsMedium';
}

.faq-answer {
  font-size: 0.8333vw;
  line-height: 1.25vw;
  color: var(--hnp-black);
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.expanded .faq-answer {
  max-height: unset;
}
.faq-icon {
  width: 2.6042vw;
  height: 2.6042vw;
  border-radius: 50%;
  border: 1px solid var(--hnp-dark-brown);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-icon i {
  color: var(--hnp-dark-brown);
  font-size: 1.25vw;
  line-height: 1.25vw;
}
.faq-item.expanded .faq-icon i {
  color: var(--hnp-white);
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.faq-icon:hover {
  cursor: pointer;
}

.faq-icon:hover .faq-icon-brown {
  color: var(--hnp-white);
  transition: transform 0.3s ease;
}

.faq-icon-white,
.faq-icon-brown {
  transition: all 0.3s ease;
}

.faq-icon-white {
  color: var(--hnp-white);
}

.faq-icon-brown {
  color: var(--hnp-dark-brown);
}

.faq-item.expanded .faq-icon {
  background-color: var(--hnp-dark-brown);
}

.faq-item.expanded .faq-icon:hover {
  cursor: pointer;
}

.faq-item.expanded .faq-icon:hover .faq-icon-white {
  transition: transform 0.3s ease;
}

/* Testimonial Section Styles */
.testimonial-header {
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-title {
  margin: 0;
}

.testimonial-subtitle {
  font-size: 1.04vw;
  line-height: 1.5625vw;
  color: var(--hnp-gradient-black);
}

.testimonial-arrows {
  bottom: 0;
  height: 6.25vw;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.arrow-container {
  height: 34px;
  width: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-img {
  width: 100%;
  transition: all 0.3s ease;
}

.arrow-container:hover {
  transform: scale(1.2);
}

.arrow-container:hover .arrow-img {
  filter: brightness(0.8);
}

.testimonial-ornament {
  height: 6.25vw;
  position: absolute;
  left: 22.917vw;
}
.testimonial-slider {
    position: absolute;
    top: 0;
    left: 27.778vw;
    width: 51.389vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    border-radius: 1.3021vw;
}
.testimonial-card {
  width: 48.96vw;
  background-color: var(--hnp-white);
  border-radius: 1.3021vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}


.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  font-size: 1.0417vw;
  line-height: 21px;
}

.testimonial-author {
  display: flex;
  column-gap: 1.0417vw;
  align-items: center;
}

.author-avatar {
  height: 58px;
  width: 58px;
  background-color: var(--hnp-gradient-white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.author-avatar:hover {
  transform: scale(1.1);
  background-color: var(--hnp-orange);
}

.author-name {
  font-size: 1.0417vw;
  line-height: 20px;
  font-weight: 500;
}

.author-location {
  font-size: 0.8333vw;
  line-height: 0.8333vw;
  color: var(--hnp-gradient-white);
  font-weight: 300;
}

/* Newsletter Section */
.newsletter-section {
  position: relative;
  height: 34.27vw;
  background-color: var(--hnp-light-gray);
  overflow: hidden;
}

.newsletter-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Newsletter Header */
.newsletter-header {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.newsletter-title-bg {
  color: #FC950633;
  font-size: 10.4167vw;
  margin: 0;
  font-weight: 700;
  line-height: 10.4167vw;
}

.newsletter-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.416666vw;
  font-size: 1.6667vw;
  color: var(--hnp-primary);
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
}

/* Newsletter Description */
.newsletter-description {
  font-size: 1.0417vw;
  line-height: 20px;
  color: var(--hnp-black);
  width: 41.67vw;
  text-align: center;
}

/* Newsletter Form */
.newsletter-form {
  width: 63.02vw;
  height: 5.9375vw;
  background-color: var(--hnp-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0.2604vw 1.0417vw 2.6042vw 0px #0000000D;
  border-radius: 1.3021vw;
}

.newsletter-input {
  margin-left: 2.3438vw;
  border: none;
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  width: 24.48vw;
  outline: none;
  background: transparent;
}

.newsletter-input::placeholder {
  color: var(--hnp-gray);
  opacity: 0.8;
}

.newsletter-button {
  margin-right: 2.3438vw;
  background-color: var(--hnp-dark-brown);
  width: 10.4167vw;
  height: 4.1667vw;
  border-radius: 0.52vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.newsletter-button:hover {
  background-color: var(--hnp-dark-brown);
  transform: translateY(-2px);
}

.newsletter-button__text {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  margin: 0;
  font-weight: 500;
}

/* Blog Section */
.blog-section {
  position: relative;
  height: 67.71vw;
  background-color: var(--hnp-white);
  overflow: hidden;
}

.blog-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 79.17vw;
  height: 58.33vw;
}

/* Blog Header */
.blog-header {
  position: absolute;
  top: 0;
  left: 0;
}

.blog-section-title {
  margin: 0;
  font-size: 2.0833vw;
  color: var(--hnp-black);
  font-weight: 700;
}

.blog-subheader {
  position: absolute;
  top: 3.125vw;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.blog-description {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-black);
  margin: 0;
}

.blog-see-more {
  border-bottom: 1px solid var(--hnp-dark-brown);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-see-more:hover {
  border-color: var(--hnp-orange);
}

.blog-see-more__text {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-dark-brown);
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-see-more:hover .blog-see-more__text {
  color: var(--hnp-orange);
}

/* Blog Posts Grid */
.blog-posts {
  position: absolute;
  top: 115px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 2%;
}

/* Featured Post */
.blog-featured {
  width: 58%;
}

.blog-card {
  margin-bottom: 30px;
}

.blog-card__image {
  width: 100%;
  border-radius: 1.3021vw;
  object-fit: cover;
  height: 540px;
  transition: transform 0.3s ease;
}

.blog-card__image:hover {
  transform: scale(1);
}

.blog-card__category {
  font-size: 0.8333vw;
  line-height: 1.5625vw;
  color: var(--hnp-dark-brown);
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'PoppinsRegular';
}

.blog-card__title {
  margin: 0;
  font-size: 2.0833vw;
  color: var(--hnp-dark);
  font-weight: 600;
  line-height: 2.60vw;
}

.blog-card__title--small {
  font-size: 2.0833vw;
}

/* Author Info */
.blog-author {
  display: flex;
  column-gap: 1.0417vw;
  align-items: center;
}

.blog-author__avatar {
  height: 3.3333vw;
  width: 3.3333vw;
  background-color: var(--hnp-gradient-white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-author__avatar:hover {
  transform: scale(1.1);
}

.blog-author__info {
  display: flex;
  flex-direction: column;
}

.blog-author__name {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  font-weight: 500;
  color: var(--hnp-dark);
  margin: 0;
  font-family: 'PoppinsMedium';
}

.blog-author__date {
  font-size: 0.8333vw;
  line-height: 1.5625vw;
  color: var(--hnp-gradient-white);
  margin: 0;
}

/* Sidebar Posts */
.blog-sidebar {
  width: 28.65vw;
}

.blog-sidebar__post {
  width: 100%;
}

.blog-sidebar__image {
  width: 100%;
  height: 15.73vw;
  border-radius: 0.78vw;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-sidebar__image:hover {
  transform: scale(1);
}

/* Hide scrollbar for all browsers */
.activities::-webkit-scrollbar {
  display: none;
}

.activities {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* === GLOBAL STYLES === */
.hero .gradient {
  height: 6vw;
  max-height: none;
}

.navbar {
  height: 6vw;
  top: 0;
  width: 79.2vw;
}

.logo {
  width: 5.2083vw;
  height: 5.2083vw;
}

.nav-links {
  justify-content: space-between;
  width: 25vw;
}

.nav-links .link {
  font-size: 0.8333vw;
  line-height: 1.04167vw;
  color: #000000;
  font-weight: 300;
}

.nav-links .link.mno {
  display: none;
}

.cart-link {
  position: absolute;
  right: 8.85vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.125vw;
  width: 4.6875vw;
  border-radius: 0.52vw;
  background-color: #ffffff61;
  color: #000000;
}


.cart-icon .cart-count {
    position: absolute;
    top: 0vw;
    right: 0;
    font-size: 1vw;
    background: var(--hnp-dark-brown);
    width: 1.4vw;
    height: 1.4vw;
    color: var(--hnp-white);
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}

.navbar-cta {
  width: 7.5vw;
  height: 3.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-cta p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8333vw;
  line-height: 0.8333vw;
  color: var(--hnp-dark);
  font-weight: 300;
  font-family: "PoppinsRegular";
  letter-spacing: 0%;
  gap: 0.26vw;
}

.mobile-dropdown-toggle:hover {
  color: var(--hnp-orange);
  cursor: pointer;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 1.04167vw;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              backdrop-filter 0.4s ease;
  max-height: 0px;
  overflow: hidden;
  position: absolute;
  top: 4.1667vw;
  padding: 0 1.04167vw;
  background-color: transparent;
  border-radius: 0.625vw;
  opacity: 0;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  border: 1px solid #DFE1E7;
  box-shadow: 0px 0.8333vw 1.6667vw -0.0521vw #80889733;
  z-index: 12;
}

.mobile-dropdown-menu:hover,
.mobile-dropdown-toggle.active + .mobile-dropdown-menu,
.mobile-dropdown-toggle:hover + .mobile-dropdown-menu {
  max-height: 30vw;
  padding: 1.04167vw;
  background-color: #f6f6f6db;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 1;
  border: 1px solid #DFE1E7;
  box-shadow: 0px 0.8333vw 1.6667vw -0.0521vw #80889733;
}

/* === HERO COMPONENTS === */
/* Home Hero */
.home .hero {
  height: 54vw;
  overflow: visible;
}

.hero-image {
  height: 54vw;
  background: url('../../assets/video/ce2cad4a29c19496b6dbe87bdcd11ef6eccd21fd.mp4') no-repeat center center;
  background-size: cover;
}

.hero-content {
  top: 29.79vw;
  width: 100%;
}

.hero-content-p {
  font-size: 1.6667vw;
  line-height: 1.6667vw;
  letter-spacing: 0.4167vw;
  max-width: none;
  font-weight: 300;
}

.hero-content-h2 {
  font-size: 15.625vw;
  line-height: 14.93054vw;
  font-weight: 700;
  margin-bottom: 2.08333vw;
}

.hero-content-p2 {
  font-size: 1.041669vw;
  line-height: 1.66667vw;
  margin-bottom: 1.7708vw;
  margin-left: -1.15vw;
  width: 55.63vw;
}

/* Services Hero */
.services .hero {
  height: 49.48vw;
}

.services .hero .hero-image {
  height: 49.48vw;
}

.services .hero .hero-overlay {
  height: 49.48vw;
}

.services .hero-content {
  width: 100%;
  height: max-content;
  top: 27.2917vw;
}

.services .hero-content-h2 {
  width: 100%;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
  margin-top: 1.25vw;
}

.services .nav-hero {
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 1;
  gap: 1.4583vw;
}

.services .nav-hero a {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}
/* Flight Booking Hero */
.flight-booking .hero {
  height: 49.48vw;
}

.flight-booking .hero .hero-image {
  height: 49.48vw;
}

.flight-booking .hero .hero-overlay {
  height: 49.48vw;
}

.flight-booking .hero-content {
  width: 100%;
  height: max-content;
  gap: 1.56vw;
  top: 24.8954vw;
  justify-content: center;
}

.flight-booking .hero-content-h2 {
  width: 79.17vw;
  font-size: 5.2083vw;
  line-height: 7.2917vw;
  margin: 0;
  margin-top: 0;
  text-shadow: 0.26042vw 1.04167vw 2.6042vw #0000001A;
}

.flight-booking .nav-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.4584vw;
}

.flight-booking .nav-hero a {
  font-size: 1.0417vw;
  line-height: 20px;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Contact Us Hero */
.contact-us .hero {
  height: 49.48vw;
}

.contact-us .hero .hero-image {
  height: 49.48vw;
}

.contact-us .hero .hero-overlay {
  height: 49.48vw;
}

.contact-us .hero-content {
  width: 100%;
  height: max-content;
  top: 24.6875vw;
  justify-content: center;
  gap: 1.25vw;
}

.contact-us .hero-content-h2 {
  width: 100%;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
  margin-top: 0;
}

.contact-us .nav-hero {
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.4583vw;
}

.contact-us .nav-hero a {
  font-size: 1.04167vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Destination Detail Hero */
.destination-detail .hero {
  height: 49.48vw;
}

.destination-detail .hero .hero-image {
  height: 49.48vw;
}

.destination-detail .hero .hero-overlay {
  height: 49.48vw;
}

.destination-detail .hero-content {
  width: 70%;
  top: 24.79vw;
  gap: 1.3021vw;
}

.destination-detail .hero-content-h2 {
  width: 100%;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
}

.destination-detail .nav-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.1458vw;
}

.destination-detail .nav-hero a {
  font-size: 1.04167vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Tour Details Hero */
.tour-details .hero {
  height: 49.48vw;
}

.tour-details .hero .hero-image {
  height: 49.48vw;
}

.tour-details .hero .hero-overlay {
  height: 49.48vw;
}

.tour-details .hero-content {
        width: 70%;
        height: 378px;
        top: 448px;
}

.tour-details .hero-content-h2 {
  width: 100%;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
  margin-top: 16px;
}

.tour-details .nav-hero {
  width: 264px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tour-details .nav-hero a {
  font-size: 15px;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Shop Hero */
.shop .hero {
  height: 49.48vw;
}

.shop .hero .hero-image {
  height: 49.48vw;
}

.shop .hero .hero-overlay {
  height: 49.48vw;
}

.shop .hero-content {
  width: 100%;
  height: max-content;
  top: 25.78125vw;
  justify-content: center;
}

.shop .hero-content-h2 {
  width: 100%;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
}

.shop .nav-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.4584vw;
}

.shop .nav-hero a {
  font-size: 1.0417vw;
  line-height: 22px;
  color: var(--hnp-white);
  font-weight: 400;
}

.product-detail {
  font-family: "PoppinsRegular";
  display: grid;
}

.product-detail .hero {
  height: auto;
  font-family: "PoppinsRegular";
  width: 100%;
}

/* About Us Hero */
.about-us .hero {
  height: 49.48vw;
}

.about-us .hero .hero-image {
  height: 49.48vw;
}

/* Booking Hero */
.booking .hero {
  height: 49.48vw;
  position: relative;
}

.booking .hero .hero-image {
  height: 49.48vw;
}

.booking .hero-content {
  width: 100%;
  height: max-content;
  top: 27.0833vw;
  justify-content: center;
  gap: 1.25vw;
    }

.booking .hero-content-h2 {
  width: max-content;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
  margin-top: 0;
  text-shadow: 0.26042vw 1.04167vw 2.6042vw #0000001A;
}

.booking .nav-hero {
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.4583vw;
}

.booking .nav-hero a {
  font-size: 1.04167vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Tour Packages Hero */
.tour-packages .hero {
  height: 49.48vw;
}

.tour-packages .hero .hero-image {
  height: 49.48vw;
}

.tour-packages .hero .hero-overlay {
  height: 49.48vw;
}

.tour-packages .hero-content {
  width: 100%;
  height: max-content;
  gap: 1.56vw;
  top: 24.8954vw;
  justify-content: center;
}

.tour-packages .hero-content-h2 {
  width: 79.17vw;
  font-size: 5.2083vw;
  line-height: 7.2917vw;
  margin: 0;
  margin-top: 0;
  text-shadow: 0.26042vw 1.04167vw 2.6042vw #0000001A;
}

.tour-packages .nav-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.4584vw;
}

.tour-packages .nav-hero a {
  font-size: 1.0417vw;
  line-height: 20px;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Destinations Hero */
.destinations .hero {
  height: 49.48vw;
}

.destinations .hero .hero-image {
  height: 49.48vw;
}

.destinations .hero .hero-overlay {
  height: 49.48vw;
}

.destinations .hero-content {
  width: max-content;
  height: max-content;
  top: 24.90vw;
  justify-content: center;
  gap: 1.04167vw;
}

.destinations .hero-content-h2 {
  width: max-content;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
  margin-top: 0;
  text-shadow: 0.2604vw 1.04167vw 2.6042vw #0000001A;
}

.destinations .nav-hero {
  width: max-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.04167vw;
}

.destinations .nav-hero a {
  font-size: 1.04167vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 500;
}

/* Blog Hero */
.blog .hero {
  height: 49.48vw;
}

.blog .hero .hero-image {
  height: 49.48vw;
}

.blog .hero .hero-overlay {
  height: 49.48vw;
}

.blog .hero-content {
  width: max-content;
  height: max-content;
  top: 23.542vw;
  justify-content: space-between;
}

.blog .hero-content-h2 {
  width: max-content;
  font-size: 10.4167vw;
  line-height: 10.4167vw;
  margin: 0;
  margin-top: 0;
  text-shadow: 0.26042vw 1.04167vw 2.6042vw #0000001A;
}

.blog .nav-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.4584vw;
}

.blog .nav-hero a {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}

/* Blog Detail Hero */
.blog-detail .hero {
  height: 41.667vw;
}

.blog-detail .hero .hero-image {
  height: 41.667vw;
}

.blog-detail .hero .hero-overlay {
  height: 41.667vw;
}

.blog-detail .hero-content {
  height: max-content;
  top: 21.3021vw;
  gap: 1.04167vw;
}

.blog-detail .hero-content-h2 {
  font-size: 5.20834vw;
  line-height: 5.20834vw;
  margin: 0;
  letter-spacing: 0px;
  box-shadow: 5px 20px 50px 0px #0000001A;
}

.blog-detail .nav-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.56vw;
}

.blog-detail .nav-hero a {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  font-weight: 400;
}

.bloga {
  margin: 0;
  width: 31.25vw;
  height: 5vw;
  background-color: #ffffff;
  border-radius: 1.302084vw;
  box-shadow: 5px 20px 50px 0px #0000001A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.04167vw;
  margin-top: 1.56vw;
}

.bloga-avatar {
  width: 3.3334vw;
  height: 3.3334vw;
  border-radius: 50%;
  background-color: #d9d9d9;
}

.bloga-details {
  color: var(--hnp-dark);
  font-size: 1.04167vw;
  line-height: 1.5625vw;
  width: 23.9584vw;
  text-align: start;
  font-family: 'PoppinsMedium';
  font-weight: 500;
}

/* === SEARCH FORM === */
.search-form {
  height: 7.5vw;
  max-width: 57vw;
  justify-content: stretch;
}

.search-form .des {
  width: 11.77vw;
  height: 3.125vw;
  position: relative;
  margin: 0 1.67vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.search-form .des:hover {
  cursor: pointer;
}

.des p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  font-weight: 500;
  margin: 0;
}

.des .sp {
  font-size: 0.8333vw;
  line-height: 0.8333vw;
  font-weight: 300;
  margin: 0;
}

.sp .despi2 {
  display: none;
  opacity: 50%;
}

.search-form .des.expanded .despi {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.search-form .line {
  height: 55.56%;
}

.search-form .btn-primary {
  height: 55.56%;
  width: 13.12%;
  padding: 0;
  border: none;
  margin: 0 0 0 3.656%;
}

.search-form .btn-primary p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  font-weight: 400;
}

/* Destination Options */
.search-form .destination-options {
  position: absolute;
  width: max-content;
  background-color: #f6f6f6db;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  border-radius: 0.78125vw;
  gap: 0.26042vw;
  height: max-content;
  overflow: hidden;
  z-index: 2;
  top: 1.4584vw;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              backdrop-filter 0.4s ease;
  max-height: 0vw;
}

.search-form .destination-options.expanded {
  max-height: max-content;
}

#destination-picker:hover .despi {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.search-form .destination-option {
  width: 180px;
  height: 36px;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 10px;
  flex-shrink: 0;
}

.search-form .destination-option:hover {
  transform: scale(1.04);
  cursor: pointer;
  background-color: #f6f6f68f;
}

.destination-option .destination-icon {
  font-size: 1.7588vw;
  line-height: 2.764vw;
  color: var(--hnp-dark-brown);
}

.destination-option .destination-text {
  font-size: 13px;
  line-height: 22px;
  font-family: 'PoppinsRegular';
  color: #222222;
}

/* Experience Options */
.search-form .experience-options {
  position: absolute;
  width: max-content;
  background-color: #f6f6f6db;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  border-radius: 0.78125vw;
  gap: 0.26042vw;
  height: max-content;
  overflow: hidden;
  z-index: 2;
  top: 1.4584vw;
  transition: max-height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              backdrop-filter 0.4s ease;
  max-height: 0px;
}

.search-form .experience-options.expanded {
  max-height: max-content;
}

#experience-picker:hover .despi {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.search-form .experience-option {
  width: 190px;
  height: 36px;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 15px;
  gap: 10px;
  flex-shrink: 0;
}

.search-form .experience-option:hover {
  transform: scale(1.04);
  cursor: pointer;
  background-color: #f6f6f68f;
}

.experience-option .experience-icon {
  font-size: 13px;
  line-height: 22px;
  color: var(--hnp-dark-brown);
}

.experience-option .experience-text {
  font-size: 13px;
  line-height: 22px;
  font-family: 'PoppinsRegular';
  color: #222222;
}

/* Date Picker */
.date-picker-container {
  width: 20.8333vw;
  box-sizing: border-box;
}

/* === PARTNERS SECTION === */
.partners-section {
  max-width: 70vw;
  height: 5.555554vw;
  margin: 0;
  margin-top: 3.33333vw;
}

.partner-logo.logo-1 {
  height: 4.064vw;
}

.partner-logo.logo-2 {
  height: 3.47222vw;
}

.partner-logo.logo-3 {
  height: 2.77778vw;
}

.partner-logo.logo-4 {
  height: 3.47222vw;
}

.partner-logo.logo-5 {
  height: 3.47222vw;
}

/* === CARHIRE SECTION === */
.carhire-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--hnp-white);
  overflow: hidden;
  height: max-content;
  padding: 4.6875vw 0;
}

.carhire-content {
  width: 79.17vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6667vw;
}

.carhire-content-bar {
  width: 79.17vw;
  height: 7.75vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carhire-content-bar-title {
  display: flex;
  justify-content: space-between;
}

.carhire-content-bar-title h4 {
  font-size: 1.5625vw;
  line-height: 2.0833vw;
  color: var(--hnp-dark);
  margin: 0;
}

.carhire-content-bar-title .search-bar {
  width: 16.98vw;
  height: 1.8vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--hnp-gradient-black);
}

.carhire-content-bar-title .search-bar input {
  border: none;
  outline: none;
  font-size: 1.04167vw;
  line-height: 1.5625vw;
}

.carhire-content-bar-title .search-bar input:focus {
  border-bottom: 1px solid var(--hnp-gradient-black);
}

.carhire-content-bar-title .search-bar i {
  font-size: 1.25vw;
  line-height: 1.25vw;
}

.carhire-content-bar-selector {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.carhire-content-bar-selector .des-but-cont {
  margin: 0;
}

.carhire-content-bar-selector .view-select {
  display: flex;
  justify-content: space-between;
  width: 16.98vw;
  height: 2.8125vw;
  gap: 0.5206vw;
}

.view-select .btn-sm,
.view-select .btn-sm.active {
  padding: 0;
  width: 100%;
  justify-content: center;
  gap: 0.5208vw;
}

.view-select .btn-sm i {
  font-size: 1.04167vw;
  line-height: 1.04167vw;
}

.carhire-content-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6667vw;
}

.car-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25vw;
  justify-content: space-between;
}
.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.no-search {
  margin: 5vw;
  width: 26vw;
}
.car-grid.list-view {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25vw;
  justify-content: space-between;
  flex-direction: column;
}
.car-grid .detail-card {
  width: 25.5208vw;
  height: 37vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--hnp-white);
  border-radius: 1.3021vw;
  box-shadow: 1.25vw 1.1458vw 3.6458vw -0.1563vw #00000014;
  gap: 1.25vw;
  padding: 0.9375vw  0;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.8s ease;
}
.car-grid.list-view .detail-card {
    width: 100%;
    height: 10.7292vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: unset;
    border-radius: 1.3021vw;
    box-shadow: unset;
    gap: 1.5vw;
    padding: 0.9375vw 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
.car-photo {
  width: 23.6458vw;
  height: 16.4063vw;
  background: linear-gradient(180deg, #252525 66.19%, rgba(34, 34, 34, 0) 100%);
  border-radius: 1.302084vw;
  position: relative;
  margin: 0;
  flex-shrink: 0;
}
.car-grid.list-view .detail-card .car-photo {
  width: 18.64584vw;
  height: 100%;
  background: linear-gradient(180deg, #252525 66.19%, rgba(34, 34, 34, 0) 100%);
  border-radius: 1.302084vw;
  position: unset;
  margin: 0;
  flex-shrink: 0;
}
.car-photo .loca {
  position: absolute;
  top: 1.25vw;
  left: 1.25vw;
  border-radius: 1.25vw;
  background: #FFFFFF61;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  width: max-content;
  height: 1.875vw;
  padding: 0 0.5208vw;
  backdrop-filter: blur(2.3958vw);
  z-index: 1;
}
.car-grid.list-view .detail-card .car-photo .loca {
  position: absolute;
  top: 1vw;
  left: 20.2vw;
  border-radius: unset;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5208vw;
  width: max-content;
  height: 1.875vw;
  padding: unset;
  backdrop-filter: none;
  z-index: 1;
}
.car-photo .loca i {
  font-size: 0.8333vw;
  line-height: 1.25vw;
}
.car-grid.list-view .detail-card .car-photo .loca i {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  text-transform: uppercase;
  color: var(--hnp-dark-brown);
}
.car-photo .loca p {
  color: var(--hnp-white);
  font-size: 0.8333vw;
  line-height: 1.25vw;
}
.car-grid.list-view .detail-card .car-photo .loca p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  text-transform: uppercase;
  color: var(--hnp-dark-brown);
}
.car-photo img {
  width: 100%;
  display: block;
  border-radius: 1.302084vw;
  height: 100%;
  object-fit: contain;
  transform: scale(1.097);
  transition: transform 3s ease-out;
}
.car-grid.list-view .detail-card .car-photo img {
  width: 100%;
  display: block;
  border-radius: 1.302084vw;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
  transition: transform 3s ease-out;
}
.car-detail {
width: 23.6458vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4583vw;
    height: 100%;
}
.car-grid.list-view .detail-card .car-detail {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.4583vw;
  height: 100%;
  align-items: self-start;
}
.car-grid.list-view .detail-card .car-detail .des {  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: max-content;
  gap: 0.7292vw;
  margin-top: 3vw;
}
.car-detail .des {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: max-content;
  gap: 0.7292vw;
}

.car-detail .des h5 {
  margin: 0;
  font-size: 1.6667vw;
  line-height: 2.0833vw;
}

.car-detail .des p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  font-weight: 500;
  margin: 0;
}

.car-detail .det {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.7292vw;
  text-align: justify;
}
.car-grid.list-view .detail-card .car-detail .det {
    width: 35vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.7292vw;
  text-align: justify;
  margin-right: 1vw;
}
.car-detail .det .points {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.2083vw;
  justify-content: flex-start;
}

.det .points p {
  font-size: 0.8333vw;
  line-height: 1.25vw;
  display: flex;
  gap: 0.6vw;
  flex-direction: row;
}

.det .points p i {
  color: var(--hnp-orange);
  font-size: 1vw;
  line-height: 1vw;
  border: 0.1vw solid var(--hnp-orange);
  border-radius: 50%;
  width: max-content;
  height: max-content;
}

.car-detail .det .book-btn {
  width: max-content;
  height: 2.3958vw;
  border-radius: 1.9792vw;
  background-color: var(--hnp-orange);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
  padding: 0  1.6667vw;
}

.det .book-btn p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  font-family: 'PoppinsMedium';
  font-weight: 500;
  color: var(--hnp-white);
}

.carhire-content-main .pagination {
  width: max-content;
  height: 2.6042vw;
  display: flex;
  justify-content: center;
  gap: 3.4375vw;
  align-items: center;
}
/* === CAR BANNER SECTION === */

        .car-banner {
            padding: 4vw 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-card {
            position: relative;
            display: flex;
            width: 79.17vw;
            height: 26vw;
            border-radius: 1.3vw;
            background-color: var(--hnp-orange);
            align-items: center;
            justify-content: center;
        }
        .tyre-trend {
            position: absolute;
            top: 3vw;
            left: 0;
            width: 40vw;
            z-index: 0;
        }

.shield {
    position: absolute;
    top: 1vw;
    right: 30vw;
    width: 7vw;
    z-index: 0;
}

.vip {
    position: absolute;
    bottom: 3vw;
    right: 39vw;
    width: 7vw;
    z-index: 0;
}
        .ad {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 0 0 3vw;
            gap: 1vw;
            box-sizing: border-box;
            color: var(--hnp-white);
            z-index: 1;
        }

.ad .points {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.6vw;
}

.ad .points p {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.ad .points p i {
    border: 0.1vw solid var(--hnp-white);
    border-radius: 50%;
    padding: 0.2vw;
}

.ad h4 {
    font-size: 2.0833vw;
    line-height: 2.6042vw;
}

.ad .book-btn {
    width: max-content;
    height: 2.3958vw;
    border-radius: 1.9792vw;
    background-color: var(--hnp-dark-brown);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    padding: 0 1.6667vw;
    margin-top: 2vw;
}
        .banner {
            position: relative;
            width: 50%;
            box-sizing: border-box;
            z-index: 1;
        }

.banner-photo {
    width: 100%;
}

.glass {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
}

.glass:hover {
    opacity: 100%;
}
/* === DESTINATIONS SECTION === */
.destinations-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--hnp-white);
  overflow: hidden;
  height: max-content;
  padding: 4vw 0;
}

.destinations-content {
  width: 79.17vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5625vw;
}

.destinations-content-bar {
  width: 79.17vw;
  height: 8.75vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.destinations-content-bar-title {
  display: flex;
  justify-content: space-between;
}

.destinations-content-bar-title h4 {
  font-size: 1.5625vw;
  line-height: 2.0833vw;
  color: var(--hnp-black);
  margin: 0;
}

.destinations-content-bar-title .search-bar {
  width: 16.98vw;
  height: 1.8vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 0.0521vw solid var(--hnp-gradient-black);
}

.destinations-content-bar-title .search-bar input {
  border: none;
  outline: none;
  font-size: 1.04167vw;
  line-height: 1.5625vw;
}

.destinations-content-bar-title .search-bar input:focus {
  border-bottom: 1px solid var(--hnp-gradient-black);
}

.destinations-content-bar-title .search-bar i {
  font-size: 1.25vw;
  line-height: 1.25vw;
}

.destinations-content-bar-selector {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.destinations-content-bar-selector .des-but-cont {
  margin: 0;
}

.destinations-content-bar-selector .view-select {
  display: flex;
  justify-content: space-between;
  width: 16.98vw;
  height: 2.8125vw;
  gap: 10px;
}

.view-select .btn-sm,
.view-select .btn-sm.active {
  padding: 0 0.9375vw;
  width: max-content;
  justify-content: center;
  gap: 0.5208vw;
}

.view-select .btn-sm i {
  font-size: 1.04167vw;
  line-height: 1.04167vw;
}

.destinations-content-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5625vw;
}

.destination-grid {
  display: grid;
  width: 79.17vw;
  grid-template-columns: repeat(auto-fill, minmax(24.31vw, 1fr));
  grid-auto-rows: 22.96vw;
  grid-auto-flow: dense;
  justify-content: center;
  gap: 1vw;
}

.destination-grid .desti-card {
  background: #d9d9d9;
  border-radius: 1.3021vw;
  position: relative;
  box-sizing: border-box;
}

.desti-card:hover {
  transform: scale3d(1.02, 1.02, 1.02);
}

.desti-card.square {
  grid-row: span 1;
  grid-column: span 1;
}

.desti-card.port {
  grid-row: span 2;
  grid-column: span 1;
}

.desti-card.land {
  grid-row: span 1;
  grid-column: span 2;
}

.desti-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.3021vw;
  position: absolute;
}

.desti-card-gradient {
  width: 100%;
  height: 20%;
  background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  position: absolute;
  top: 80%;
  border-bottom-left-radius: 1.302084vw;
  border-bottom-right-radius: 1.302084vw;
}

.desti-card.square.active .desti-card-gradient {
  background: #000000;
  opacity: 75%;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 1.302084vw;
}

.desti-info {
  position: absolute;
  bottom: 1vw;
  left: 1.5625vw;
  height: 4.3vw;
  width: 84%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5vw;
}

.desti-card.square.active .desti-info {
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.desti-card h5 {
  margin: 0;
  font-size: 1.6667vw;
  line-height: 2.0833vw;
  color: var(--hnp-white);
}
.desti-card h5 i {
  display: none;
}
.desti-card .desti-des {
  display: flex;
  color: var(--hnp-white);
  gap: 1.04167vw;
}

.desti-des .desti-location p,
.desti-des .desti-price p {
font-size: 0.8333vw;
    line-height: 1.25vw;
    display: flex;
    gap: 0.2604vw;
    align-items: center;
}
.destination-grid.list-view .desti-des .desti-location p, .destination-grid.list-view .desti-des .desti-price p {
  font-family: 'PoppinsMedium';
  font-weight: 500;
  display: flex;
  gap: 0.2604vw;
  align-items: center;
  font-size: 1.6667vw;
  line-height: 2.084vw;
  color: var(--hnp-black);
  white-space: normal;
  max-width: 34.375vw;
}

.desti-card .desti-desc {
  display: block;
}

.desti-card.square .desti-desc {
  display: none;
}

.desti-card.square.active .desti-desc {
  display: flex;
  max-width: 66%;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.desti-card .desti-desc p {
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  color: var(--hnp-white);
  opacity: 75%;
}

.desc-cta {
  display: none;
}

.desti-card.square.active .desc-cta {
  display: flex;
  width: 110px;
  border: 1px solid var(--hnp-white);
  border-radius: 10px;
  height: 48px;
  justify-content: center;
  align-items: center;
}

.destinations-content-main .pagination {
  width: max-content;
  height: 2.6042vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125vw;
}

/* ================================
  DESTINATIONS â€“ LIST VIEW MODE
================================ */

.destination-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card becomes horizontal */
.destination-grid.list-view .desti-card {
  background: unset;
  width: 100%;
  height: 10.7292vw;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
  transform: none !important;
  gap: 2.5vw;
}

/* Image on the left */
.destination-grid.list-view .desti-card img {
  position: relative;
  width: 18.64584vw;
  height: 100%;
  object-fit: cover;
  border-radius: 1.3021vw;
  flex-shrink: 0;
}

/* Disable gradients & hover expansion */
.destination-grid.list-view .desti-card-gradient {
  display: none;
}

/* Info on the right */
.destination-grid.list-view .desti-info {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  left: 0;
  bottom: 0;
  justify-content: flex-start;
  gap: 12px;
  box-sizing: border-box;
}

/* Title */
.destination-grid.list-view .desti-card h5 {
  font-family: 'PoppinsRegular';
  font-weight: 400;
  white-space: normal;
  font-size: 1.0417vw;
  line-height: 1.5625vw;
  text-transform: uppercase;
  color: var(--hnp-dark-brown);
}
.destination-grid.list-view .desti-card h5 i {
  display: inline-block;
  color: var(--hnp-dark-brown) !important;
}
/* Meta row */
.destination-grid.list-view .desti-des {
  gap: 2vw;
  color: var(--hnp-black);
  flex-direction: column;
  width: max-content;
  position: absolute;
  top: 3vw;
}
.destination-grid.list-view .desti-des i {
  display: none;
}
/* Description always visible */
.destination-grid.list-view .desti-desc {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  width: max-content;
}

/* CTA always visible */
.destination-grid.list-view .desc-cta {
  display: flex;
  width: max-content;
  padding: 10px 24px;
  border-radius: 10px;
}

/* Disable hover scale */
.destination-grid.list-view .desti-card:hover {
  transform: none;
}

/* Active view button */
.destinations-content-bar-selector
.view-select
.btn-sm.active {
  color: var(--hnp-white);
}

/* === TOUR PACKAGES SECTION === */
.tourpack-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--hnp-white);
  overflow: hidden;
  height: max-content;
  padding: 30px 0;
}

.tourpack-content {
  width: 79.17vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.tourpack-content-bar {
  width: 79.17vw;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tourpack-content-bar-title {
  display: flex;
  justify-content: space-between;
}

.tourpack-content-bar-title h4 {
  font-size: 30px;
  line-height: 40px;
  color: var(--hnp-dark);
  margin: 0;
}

.tourpack-content-bar-title .search-bar {
  width: 250px;
  height: 39px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--hnp-gradient-black);
}

.tourpack-content-bar-title .search-bar input {
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 1.5625vw;
}

.tourpack-content-bar-title .search-bar input:focus {
  border-bottom: 1px solid var(--hnp-gradient-black);
}

.tourpack-content-bar-title .search-bar i {
  font-size: 20px;
  line-height: 20px;
}

.tourpack-content-bar-selector {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.tourpack-content-bar-selector .des-but-cont {
  margin: 0;
}

.tourpack-content-bar-selector .view-select {
  display: flex;
  justify-content: space-between;
  width: 16.98vw;
  height: 2.8125vw;
  gap: 0.5206vw;
}

.tourpack-content-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.tours-grid {
  display: grid;
  width: 79.17vw;
  grid-template-columns: repeat(auto-fill, minmax(19.0625vw, 1fr));
  grid-auto-rows: 23.9584vw;
  grid-auto-flow: dense;
  gap: 1.56vw;
  justify-content: center;
}

.tours-grid .tour-card {
  background: #d9d9d9;
  border-radius: 1.302084vw;
  position: relative;
}

.tour-card.square {
  grid-row: span 1;
  grid-column: span 1;
}

    .tour-card.port {
        grid-row: span 2;
        grid-column: span 1;
    }

    .tour-card.land {
        grid-row: span 1;
        grid-column: span 2;
    }

    .tour-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.302084vw;
        position: absolute;
    }

    .tour-card-gradient {
        width: 100%;
        height: 50%;
        background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
        position: absolute;
        top: 50%;
        border-bottom-left-radius: 1.302084vw;
        border-bottom-right-radius: 1.302084vw;
        transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    border-radius 0.4s ease;
    }

    .tour-card.square:hover .tour-card-gradient {
        background: #000000;
        opacity: 75%;
        width: 100%;
        height: 100%;
        top: 0;
        border-radius: 1.302084vw;
    }

    .tour-info {
        position: absolute;
        bottom: 1.04167vw;
        left: 1.04167vw;
        height: max-content;
        width: 89%;
        gap: 1vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    gap 0.4s ease;
    }

    .tour-card.square.active .tour-info,
    .tour-card.square:hover .tour-info {
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 1.04167vw;
        padding: 0.5vw;
        box-sizing: border-box;
    }

    .tour-card.square.active .tour-info h5,
    .tour-card.square:hover .tour-info  h5 {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        text-align: center;
    }
    .tour-card h5 {
        margin: 0;
        font-size: 1.6667vw;
        line-height: 2.0833vw;
        color: var(--hnp-white);
        max-width: max-content;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tour-card .tour-des {
        display: flex;
        color: var(--hnp-white);
        justify-content: space-between;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.tour-card:hover .tour-des {
    justify-content: center;
    gap: 1.04167vw;
}

.tours-grid.list-view .tour-info .tour-des {
    gap: 0.5208vw;
    color: var(--hnp-black);
    flex-direction: column;
    width: 18.64584vw;
    position: absolute;
    right: 0;
    top: 2.8125vw;
}
.tours-grid.list-view .tour-location{
  position:absolute;
  left: -39.37832vw;
  top: -3.02084vw;
}
    .tour-des .tour-location p,
    .tour-des .tour-price p,
    .tour-des .tour-duration p {
        font-size: 0.83334vw;
        line-height: 1.04167vw;
        display: flex;
        gap: 0.5208vw;
        align-items: center;
    }
.tours-grid.list-view .tour-location p{
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        text-transform: uppercase;
        color: var(--hnp-dark-brown);
}
.tours-grid.list-view .tour-location p i{
        color: var(--hnp-dark-brown) !important;
}
.tours-grid.list-view .tour-price p, .tours-grid.list-view .tour-duration p{
        font-size: 1.0417vw;
        line-height: 1.5625vw;
}
.tours-grid.list-view .tour-price p i, .tours-grid.list-view .tour-duration p i{
        color: var(--hnp-black) !important;
}
    .tour-card .tour-desc {
        display: block;
    }

    .tour-card.square .tour-desc {
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        gap: 1.04167vw;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) ease;
    }

    .tour-card.square.active .tour-desc,
    .tour-card.square:hover .tour-desc {
        display: flex;
        max-height: max-content;
        text-align: center;
        align-items: center;
        flex-direction: column;
        gap: 1.04167vw;
    }

    .tour-card .tour-desc p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        color: var(--hnp-black);
        opacity: 75%;
        max-width: 34.375vw;
        text-align: justify;
    }

.tour-card:hover .tour-desc p {
    max-width: 100%;
    color: var(--hnp-white);
    margin: 0 1.04167vw;
    text-align: center;
}

.tours-grid.list-view .tour-card:hover .desc-cta p {
    color: var(--hnp-dark-brown);
    margin: 0;
}

    .tour-card.square.active .desc-cta,
    .tour-card.square:hover .desc-cta {
        display: flex;
        width: 8.3333vw;
        border: 1px solid var(--hnp-white);
        border-radius: 0.5208vw;
        height: 3.2292vw;
        justify-content: center;
        align-items: center;
    }

.tour-card.square.active .desc-cta, .tour-card.square:hover .desc-cta:hover {
    border-color: var(--hnp-orange);
}

.tour-card.square.active .desc-cta, .tour-card.square:hover .desc-cta.bn {
    display: none;
}

    .tourpack-content-main .pagination {
        width: 410px;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
/* ================================
   LIST VIEW MODE
================================ */

.tours-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Reset grid spans */
.tours-grid.list-view .tour-card {
    background: unset;
    width: 100%;
    height: 10.7292vw;
    display: flex;
    align-items: center;
    border-radius: 0;
    overflow: hidden;
    transform: none !important;
    gap: 2.5vw;
}

.tours-grid.list-view .tour-card:hover img {
    object-fit: cover;
}

/* Image on the left */
.tours-grid.list-view .tour-card img {
    position: relative;
    width: 18.64584vw;
    height: 100%;
    object-fit: cover;
    border-radius: 1.3021vw;
    flex-shrink: 0;
}

/* Remove hover expansion behavior */
.tours-grid.list-view .tour-card-gradient {
    display: none;
}

/* Info section on the right */
.tours-grid.list-view .tour-info {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    left: 0;
    bottom: 0;
    justify-content: flex-end;
    gap: 0.50208vw;
    box-sizing: border-box;
}
    .tours-grid.list-view .tour-card:hover .tour-info {
        bottom: 0;
        left: 20px;
        height: 100%;
        width: 89%;
        justify-content: flex-end;
        align-items: unset;
        gap: 20px;
          position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    left: 0;
    bottom: 0;
    justify-content: flex-end;
    gap: 12px;
    box-sizing: border-box;
    }
/* Title */
.tours-grid.list-view .tour-card h5 {
    font-size: 1.6667vw;
    line-height: 2.084vw;
    color: var(--hnp-black);
    white-space: normal;
    max-width: 34.375vw;
}
.tours-grid.list-view .tour-card:hover h5 {
    font-size: 1.6667vw;
    line-height: 2.084vw;
    color: var(--hnp-black);
    white-space: normal;
    max-width: 34.375vw;
    text-align: start;
}
/* Description always visible */
.tours-grid.list-view .tour-desc {
    max-height: none;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0;
    min-height: 3.2292vw;
}
.tours-grid.list-view .tour-card .desc-cta {
    display: flex;
    width: max-content;
    padding: 0.83334vw 1.6667vw;
    border: 0.052084vw solid var(--hnp-dark-brown);
    border-radius: 0.52084vw;
    height: 3.2292vw;
    box-sizing: border-box;
    position: absolute;
    right: 0;
}
.tours-grid.list-view .tour-card .desc-cta.bn {
    background: var(--hnp-dark-brown);
    right: 10vw;
}

/* CTA always visible */
.tours-grid.list-view .tour-card.square:hover .desc-cta {
    display: flex;
    width: max-content;
    padding: 0.83334vw 1.6667vw;
    border: 0.052084vw solid var(--hnp-dark-brown);
    border-radius: 0.52084vw;
    height: 3.2292vw;
    box-sizing: border-box;
}

/* Disable hover animations in list */
.tours-grid.list-view .tour-card:hover .tour-desc {
    max-height: none;
    flex-direction: row;
    gap: 0;
}
.tours-grid.list-view .tour-card:hover .tour-desc p {
    color: var(--hnp-black);
    margin: 0;
    max-width: 34.4034vw;
    text-align: justify;
    font-weight: 500;
}
.tours-grid.list-view .tour-card .desc-cta.bn p {
    color: var(--hnp-white);
    margin: 0;
    opacity: 1;
}
  /* ===== FLIGHT BOOKING SECTION ===== */
  .flight-booking-section {
    height: max-content;
    padding: 2.5vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .flight-booking-container {
    width: 79.17vw;
  }
  .package-details-grid {
    display: flex;
    color: var(--hnp-black);
    justify-content: space-between;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2vw 0;
}
.quick-facts {
  display: flex;
  padding: 1vw;
  width: 79.178vw;
  justify-self: center;
}
  .airline-logos {
    width: 79.17vw;
    padding: 2.5vw 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    justify-self: center;
  }
  .package-detail-item {
    font-size: 1.83334vw;
    line-height: 1.04167vw;
    display: flex;
    gap: 0.5208vw;
    align-items: center;
  }
.package-detail-item {
  color: var(--hnp-orange);
}

.package-detail-item p {
    color: var(--hnp-black);
}
  .airline-logo {
    height: 6.72vw;
  }
  
  .booking-steps {
    display: flex;
    position: relative;
    height: 20.833vw;
    background-color: var(--hnp-light-gray);
    overflow: hidden;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    flex-shrink: 0;
    width: 100vw;
    margin-left: -10vw;
  }
  
  .booking-step {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    height: 11.1458vw;
    width: 14.69vw;
    gap: 1.2625vw;
  }

  .step-number {
    height: 3.5417vw;
    width: 3.5417vw;
    font-size: 2.6042vw;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hnp-dark-brown);
    color: white;
    font-family: 'OswaldRegular';
  }
    .booking-step.active .step-number {
    box-shadow: 0px 0 1vw 1.5vw #6c301573;
  }
.car-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    overflow: visible;
    z-index: 2;
}

.date-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}

.additional-features {
    display: none;
}
.car-details {
  width: 48vw;
  margin-top: 2vw;
  padding: 2vw;
  background: #f8f9fa;
  border-radius: 1.5vw;
  display: none;
  box-sizing: border-box;
}

.car-d {
    display: flex;
    gap: 2vw;
    align-items: center;
}

.car-d img {
    width: 22vw;
    object-fit: cover;
}
  .booking-form-container {
    display: flex;
    flex-direction: column;
    gap: 3.91vw;
    margin: 2vw 0;
  }
  
  .form-section {
    width: 79.17vw;
    display: flex;
    flex-direction: column;
    gap: 1.25vw;
    padding: 1.25vw 0;
  }
  
  .form-section-header {
    display: flex;
    align-items: center;
    gap: 0.93vw;
    width: 100%;
  }
  
  .section-icon {
    height: 3.5417vw;
    width: 3.5417vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hnp-dark-brown);
    color: white;
  }
  
  .trip-type-selector {
    display: flex;
    gap: 1.95vw;
    width: 100%;
  }
  
  .trip-type-btn {
    padding: 0 0.52vw;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    font-weight: 500;
    border: none;
    border-radius: 0.52vw;
    background: #f6f6f6;
    font-family: 'PoppinsRegular';
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    height: 3.125vw;
    box-sizing: border-box;
  }
  
  .trip-type-btn.active {
    border-color: var(--hnp-dark-brown);
    background: var(--hnp-dark-brown);
    color: white;
  }
  
  .form-grid {
    display: flex;
    height: max-content;
    align-items: center;
    gap: 1.25vw;
    justify-content: space-between;
    overflow: visible;
    flex-wrap: wrap;
  }
  
  .form-group {
    width: 38.75vw;
    min-height: 7.604vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1vw;
  }
  
  .form-group label {
    display: block;
    font-family: 'PoppinsRegular';
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    font-weight: 500;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.95vw;
    font-family: 'PoppinsRegular';
    font-size: 1.0417vw;
    line-height: 1.5625vw;
  }
  
  .form-control {
    font-family: PoppinsRegular;
    color: #717182;
    transition: 0.3s ease-in-out;
    box-sizing: border-box;
    background: #F6F6F6;
    height: 5.2083vw;
    border: none;
    outline: none;
    border-radius: 0.78125vw;
    padding-left: 2.6042vw;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
  }
  
  .popular-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.52vw; /* 10px */
  }
  
  .route-tag {
    padding: 0.52vw;
    border-radius: 0.52vw;
    background: #f6f6f6;
    font-family: 'PoppinsRegular';
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
  }
  
  .swap-btn {
    position: absolute;
    right: 1.95vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.125vw;
    background: none;
    border: none;
    color: var(--hnp-dark-brown);
    cursor: pointer;
  }
  
  .passenger-selector {
    display: flex;
    height: max-content;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25vw;
    justify-content: space-between;
    overflow: visible;
  }
  
  .passenger-counter {
    width: 38.75vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.6042vw;
    padding: 1.95vw 2.6042vw;
    border-radius: 0.52vw;
    background: #f8f9fa;
    box-sizing: border-box;
    font-family: 'OswaldRegular';
  }


  
  .counter-btn {
    height: 3.5417vw;
    width: 3.5417vw;
    font-size: 1.5625vw;
    border: 0.2vw solid #d9d9d9;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .counter-btn.plus {
    border: none;
    background: var(--hnp-dark-brown);
    color: var(--hnp-white);
  }

.passenger-form {
    display: flex;
    flex-direction: column;
    gap: 2.6042vw;
}
  .passenger-header {
    font-size: 1.5625vw;
    line-height: 2.0833vw;
    font-family: "OswaldBold";
    letter-spacing: 0%;
    text-decoration: none;
    font-weight: 700;
}
.form-row {
    display: flex;
    height: max-content;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25vw;
    justify-content: space-between;
    overflow: visible;
}
  .form-control#special_requests {
    height: 11.88vw;
    background: #F6F6F6;
    border-radius: 0.78125vw;
    border: none;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    font-weight: 400;
    padding: 1.5625vw;
    font-family: 'PoppinsRegular';
    box-sizing: border-box;
  }
  .choices {
    display: grid;
    flex-direction: column;
    gap: 1vw;
    flex-wrap: wrap;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
}

.destination-choices {
    display: grid;
    flex-direction: column;
    gap: 1vw;
    flex-wrap: wrap;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
}

.choice {
    width: 18vw;
    padding: 0.5vw 1vw;
    display: flex;
    align-items: center;
    gap: 1vw;
    box-sizing: border-box;
    border-radius: 0.5vw;
    background: #F6F6F6;
    cursor: pointer;
}

.choice.selected {
    border: 0.1vw solid var(--hnp-dark-brown);
}

.opt {
    display: flex;
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 0.2vw;
    background-color: var(--hnp-white);
    border: 0.1vw solid #d9d9d9;
    align-items: center;
    justify-content: center;
}

.choice.selected .opt {
    background-color: var(--hnp-dark-brown);
    color: var(--hnp-white);
    border: none;
}
  .info-note {
    display: flex;
    padding: 1vw 0.52vw;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    border-radius: 0.52vw;
    color: #717182;
    background: #f8f9fa;
    font-family: 'PoppinsRegular';
    width: 100%;
    align-items: center;
    box-sizing: border-box;
  }

.booking-form-container .info-note {
    width: 38.75vw;
}
  
  .info-note i {
    margin-right: 1vw;
    margin-left: 1vw;
    color: var(--hnp-orange);
  }
  
  .form-actions {
    padding-bottom: 2vw;
    border-bottom: 0.39vw solid #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.93vw;
    flex-direction: row-reverse;
  }
  
  .btn-can,
  .btn-sub {
    padding: 1.95vw;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    border-radius: 0.52vw;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'PoppinsRegular';
    border: none;
    height: 3.125vw;
  }
  
  .btn-can {
    justify-content: center;
    gap: 3.91vw;
    border: none;
  }
  
  .btn-sub {
    padding: 1.95vw;
  }
  .btn-ok {
    justify-content: center;
    gap: 3.91vw;
    border: none;
    display: flex;
    padding: 1vw 3vw;
  }
/* === CIRCULAR CAROUSEL === */
.gallery-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-content {
    max-width: 100%;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 35vw;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.gallery-track {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    min-width: 104.2708vw;
    width: max-content;
    flex-shrink: 0;
    position: absolute;
    left: -1.6021vw;
    gap: 1.3021vw;
    transition: transform 0.6s ease;
    will-change: transform;
}

.gallery-slide {
flex: 0 0 28.9063vw;
    height: 26.0417vw;
    border-radius: 1.3021vw;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    transform: scale(0.9);
}

.gallery-slide.active {
    flex: 0 0 43.3333vw;
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    z-index: 2;
}

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

/* Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-prev { left: 5%; }
.gallery-arrow-next { right: 5%; }

/* Indicators */
.gallery-indicators {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.2);
}
    /* === ITINERARY SECTION === */
    .itinerary-section {
        width: 79.17vw;
        display: flex;
        flex-direction: column;
        justify-self: center;
    }

    .itinerary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.3021vw;
    }

    .itinerary-title {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        margin: 0;
    }

    .itinerary-more {
        color: var(--hnp-dark-brown);
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid var(--hnp-dark-brown);
    }

    .itinerary-cards {
        display: flex;
        gap: 1.4583vw;
        overflow-x: auto;
    }

    .itinerary-cards::-webkit-scrollbar {
        height: 0;
    }

    .itinerary-cards::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .itinerary-card {
        width: 25.4167vw;
        height: 23.9583vw;
        background: #f6f6f6;
        border-radius: 1.3021vw;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
    }

a.itinerary-card:hover {
    transform: none;
}

    .itinerary-img {
        height: 100%;
        width: 100%;
        border-radius: 20px;
        position: absolute;
        object-fit: cover;
    }

    .itinerary-card .gradient {
        background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .itinerary-card:hover .gradient {
        height: 70%;
    }

    .itinerary-content {
        width: 100%;
        color: #fff;
        position: absolute;
        bottom: 1.04167vw;
        display: flex;
        gap: 0.5208vw;
        flex-direction: column;
    }

    .itinerary-name {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        font-weight: 400;
        margin-left: 1.04167vw;
    }

    .itinerary-meta {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: 20px;
    }

    .itinerary-meta .icon {
        width: 1.0417vw;
        height: 1.0417vw;
    }

    .itinerary-meta p {
        font-size: 0.83334vw;
        line-height: 1.25vw;
        font-weight: 300;
    }

    .itinerary-desc {
        width: 70%;
        margin-left: 1.04167vw;
        font-size: 0.83334vw;
        line-height: 1.25vw;
        font-weight: 300;
        color: #d9d9d9;
        display: none;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .itinerary-card:hover .itinerary-desc {
        display: block;
    }

    .itinerary-btn {
        background: var(--hnp-dark-brown);
        color: var(--hnp-white);
        width: 3.33334vw;
        height: 3.33334vw;
        border-radius: 50%;
        position: absolute;
        bottom: 0.5208vw;
        right: 1.04167vw;
        display: none;
        cursor: pointer;
        font-size: 1.0667vw;
        line-height: 1.6667vw;
        justify-content: center;
        font-weight: 400;
        font-family: monospace, 'PoppinsRegular';
        align-items: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .itinerary-card:hover .itinerary-btn {
        display: flex;
    }

    .itinerary-btn p {
        font-size: 4vw;
        line-height: 4vw;
    }

    /* === PACKAGE INCLUSIONS === */
    .package-inclusions {
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.56vw 0;
    }

    .inclusions-wrapper {
        width: 79.17vw;
        display: flex;
        border-radius: 8px;
        justify-content: space-between;
    }

    .inclusion-box {
        display: flex;
        flex-direction: column;
        width: 38.80vw;
    }

    .inclusion-title {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        font-weight: 700;
        margin: 0;
    }

    .inclusion-list {
        list-style-type: disc;
        padding-left: 1.0417vw;
        font-size: 1.0417vw;
        line-height: 1.0417vw;
        font-family: 'PoppinsRegular';
    }

    .inclusion-list li {
        margin-bottom: 0.5208vw;
    }

    /* === PAGINATION === */
    .pagination-arrow-container {
        height: 2.6042vw;
        width: 2.6042vw;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pagination-arrow-img {
        width: 100%;
        transition: all 0.3s ease;
    }

    .page-link {
        width: max-content;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2.5vw;
    }

    .page-link .page-link-no {
        margin: 0;
        font-size: 2.0833vw;
        line-height: 2.6042vw;
        color: #000000;
        opacity: 10%;
    }

    .page-link .page-link-no.active {
        opacity: 1;
    }

    /* === CONTACT US === */
    .contact-info-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--hnp-white);
        overflow: hidden;
        height: 70.3125vw;
    }

    .contact-info-content {
        width: 79.17vw;
        height: 60.9375vw;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
    }

    .contact-h4 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        width: 100%;
        height: max-content;
    }

    .contact-phone {
        width: 32.2917vw;
        height: max-content;
        gap: 1vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-phone h6 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        letter-spacing: 0.4167vw;
        color: var(--hnp-dark-brown);
        margin: 0;
    }

    .contact-phone p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-family: 'poppinsMedium';
        font-weight: 500;
    }

    .contact-email {
        width: 35.3125vw;
        height: max-content;
        gap: 1vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-email h6 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        letter-spacing: 0.4167vw;
        color: var(--hnp-dark-brown);
        margin: 0;
    }

    .contact-email p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-family: 'poppinsMedium';
        font-weight: 500;
    }

    .contact-address {
        width: 36.3542vw;
        height: max-content;
        gap: 1vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-address h6 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        letter-spacing: 0.4167vw;
        color: var(--hnp-dark-brown);
        margin: 0;
    }

    .contact-address p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-family: 'poppinsMedium';
        font-weight: 500;
    }

    .contact-cta-btn {
        width: max-content;
        height: 3.125vw;
        background-color: var(--hnp-dark-brown);
        border-radius: 0.5208vw;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1vw;
    }

    .contact-cta-btn p {
        font-weight: 400;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        color: var(--hnp-white);
    }

    .contact-location-map {
        width: 79.17vw;
        height: 34.8958vw;
        border-radius: 1.302084vw;
    }

    .contact-location-map iframe {
        width: 79.17vw;
        height: 34.8958vw;
        border-radius: 1.302084vw;
    }
.gm-style .place-card .place-name {
      font-size: 1.5625vw;
    line-height: 2.0833vw;
}
    /* === CART MODAL === */
    .cart-modal {
        position: fixed;
        top: 6vw;
        right: -100%;
        width: 36.42vw;
        background-color: #f6f6f6db;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        height: calc(100vh - 6vw);
        z-index: 3;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        font-family: 'PoppinsRegular';
    }
    .cart-modal-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .cart-modal.show {
        right: 0vw;
    }

    .cart-modal-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .cart-modal-header h4 {
        margin-left: 1vw;
    }

    .cart-close {
        font-size: 3vw;
        line-height: 3vw;
        margin-right: 1vw;
        cursor: pointer;
    }

    .cart-modal-body {
        width: 35.42vw;
        justify-self: center;
        display: flex;
        flex-direction: column;
        gap: 2vw;
        align-items: center;
        justify-content: space-around;
    }
    .cart-empty {
      width: 26vw;
    }
    .cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 7vw;
    }

    .cart-item img {
        width: 6vw;
        height: 6vw;
        object-fit: contain;
        background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
        border-radius: 1vw;
    }

    .cart-item-details {
        width: 100%;
        margin: 0 1vw;
    }

    .cart-item-details .p4 {
        font-size: 1.04167vw;
        line-height: 3vw;
        font-family: 'PoppinsMedium';
        font-weight: bold;
    }

    .cart-item-remove {
        border: none;
        width: 3vw;
        height: 3vw;
        font-size: 2.2vw;
        line-height: 3vw;
        background: transparent;
        font-family: 'PoppinsMedium';
        box-sizing: border-box;
    }

    .cart-modal-footer {
        position: absolute;
        bottom: 1vw;
        width: 31.25vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
        gap: 1vw;
    }

    .cart-total {
        width: 100%;
        font-size: 1.04167vw;
        line-height: 1.56vw;
        font-family: 'PoppinsMedium';
        font-weight: bold;
    }

    .cart-total strong {
        display: flex;
        justify-content: space-between;
    }

    #cartTotal {
        font-family: 'OswaldBold';
    }

    #checkoutBtn {
        width: 100%;
        height: 5vw;
        border-radius: 1.04167vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.04167vw;
        line-height: 1.56vw;
        font-family: 'PoppinsRegular';
        box-sizing: border-box;
    }

    /* === SHOP SECTION === */
    .shop-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--hnp-white);
        overflow: hidden;
        height: auto;
        padding: 3vw 0;
    }

    .shop-content {
        width: 79.17vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .shop-content-bar {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 2vw;
    }

    .shop-content-bar-title {
        display: flex;
        justify-content: space-between;
    }

    .shop-content-bar-title h4 {
        color: var(--hnp-dark);
        margin: 0;
    }

    .shop-content-bar-title .search-bar {
        width: 22vw;
        height: 2vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        border-bottom: 0.0521vw solid var(--hnp-gradient-black);
    }

    .shop-content-bar-title .search-bar input {
        border: none;
        outline: none;
        font-size: 1.04167vw;
        line-height: 1.5625vw;
        width: 100%;
    }

    .shop-content-bar-title .search-bar input:focus {
        border-bottom: 1px solid var(--hnp-gradient-black);
    }

    .shop-content-bar-title .search-bar i {
        font-size: 1.5625vw;
        line-height: 1.5625vw;
    }

    .shop-content-bar-selector {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .shop-content-bar-selector .des-but-cont {
        margin: 0;
    }

    .shop-content-bar-selector .view-select {
        display: flex;
        justify-content: space-between;
        width: 16.98vw;
        height: 3.125vw;
        gap: 0.5206vw;
    }

    .shop-content-bar-selector .view-select .btn-sm,
    .shop-content-bar-selector .view-select .btn-sm.active {
        padding: 0 0.9375vw;
        width: max-content;
        justify-content: center;
        gap: 0.5208vw;
    }

    .shop-content-bar-selector .view-select .btn-sm i {
        font-size: 1.0417vw;
        line-height: 20px;
    }

    .shop-content-main {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        gap: 2vw;
    }

    .gear-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5vw;
    }

    .gear-grid .detail-card {
        width: 26.0417vw;
        height: 29.8125vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        background-color: var(--hnp-white);
        border-radius: 1.5vw;
        box-shadow: 24px 22px 70px -3px #00000014;
        position: relative;
        overflow: hidden;
    }

    .gear-photo {
        width: 24.1667vw;
        height: 16.9271vw;
        flex-shrink: 0;
        background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
        border-radius: 1.302084vw;
        position: relative;
    }

    .gear-photo .loca {
        position: absolute;
        top: 1.04167vw;
        left: 1.04167vw;
        border-radius: 3.8542vw;
        background: #FFFFFF61;
        backdrop-filter: blur(4.6px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5206vw;
        padding: 0.36459vw;
    }

    .gear-photo .loca i {
        font-size: 24px;
        line-height: 1.5625vw;
    }

    .gear-photo .loca p {
        color: var(--hnp-white);
        font-size: 0.8334vw;
        line-height: 1.14584vw;
    }

    .gear-photo img {
        width: 24.1667vw;
        height: 15.625vw;
        object-fit: contain;
        border-radius: 1.302084vw;
        transform: scale(1.1);
    }

    .gear-detail {
        width: 24.1667vw;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0;
        gap: 0.83334vw;
        text-align: start;
    }

    .gear-detail .des {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        gap: 1vw;
        width: 100%;
    }
    .gear-grid.list-view .gear-detail .des a{
        width:max-content;
    }
    .gear-detail .des h5 {
        font-size: 1.1667vw;
        line-height: 2.0833vw;
    }

    .gear-detail .des p {
        color: #AA8265;
        font-size: 0.7292vw;
        line-height: 1.14584vw;
    }

.gear-detail .des .descri {
    display: none;
}

    .gear-detail .deta {
        height: 2.39584vw;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        width: max-content;
        gap: 5vw;
    }

    .gear-detail .deta .prices {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.04167vw;
    }
    .gear-grid.list-view .gear-detail .deta .prices {
      flex-direction: column;
    }
    .deta .prices .prices-h7 {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .deta .prices .prices-h8 {
        color: #AA8265;
        font-size: 0.7292vw;
        line-height: 1.14584vw;
        text-decoration: line-through;
    }

    .deta .book-btn {
        width: 9.375vw;
        height: 2.39584vw;
        border-radius: 1.9792vw;
        background-color: var(--hnp-dark-brown);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 0;
    }

    .deta .book-btn p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        color: var(--hnp-white);
    }

    .shop-content-main .pagination {
        width: 30vw;
        height: 4vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Flip Card Styles */
    .flip-card {
        perspective: 1000px;
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
    }

    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-style: preserve-3d;
        border-radius: 1.5vw;
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        border-radius: 1.5vw;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flip-card-front {
        background-color: var(--hnp-white);
        color: #000000;
        box-shadow: 24px 22px 70px -3px #00000014;
        gap: 1.04167vw;
        padding: 0.9375vw 0.9375vw 1.4584vw 0.9375vw;
        box-sizing: border-box;
    }

    .flip-card-back {
        color: white;
        transform: rotateY(180deg);
        justify-content: space-between;
        background-color: var(--hnp-white);
    }

    .product-back-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
    }

.product-back-content h5 {
    margin: 1.1667vw;
}

    .product-back-image {
        width: 100%;
        height: 400px;
        border-radius: 16px;
        overflow: hidden;
    }

    .product-back-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 16px;
    }

    .product-back-actions {
        width: max-content;
        height: 2.39584vw;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        justify-self: center;
        gap: 9vw;
        position: absolute;
        bottom: 1.5vw;
        left: 1.5vw;
    }

    .product-back-actions .product-back-price {
        text-shadow: -2px 2px 0px #f6f6f6;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-family: 'PoppinsRegular';
        font-weight: 500;
        color: #222222;
    }

    .product-back-actions .book-btn {
        width: 9.375vw;
        height: 2.39584vw;
        border-radius: 1.9792vw;
        background-color: var(--hnp-dark-brown);
        display: flex;
        align-items: center;
        justify-content: space-around;
        box-sizing: border-box;
        padding: 0;
    }

    .gear-photo {
        position: relative;
        transform-style: preserve-3d;
    }
/* ================================
   SHOP â€“ LIST VIEW MODE
================================ */

.gear-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Card becomes horizontal */
.gear-grid.list-view .detail-card {
    width: 100%;
    height: 13vw;
    flex-direction: row;
    align-items: center;
    padding: 0;
    box-shadow: none;
}

/* Image on the left */
.gear-grid.list-view .gear-photo {
    width: 18.64584vw;
    height: 10.7292vw;
    flex-shrink: 0;
    background: none;
}

.gear-grid.list-view .gear-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
}

/* Discount badge stays */
.gear-grid.list-view .gear-photo .loca {
    top: 12px;
    left: 12px;
}

/* Product details on the right */
.gear-grid.list-view .gear-detail {
    width: 100%;
    height: 10.7292vw;
    margin-top: 0;
    justify-content: space-between;
    flex-direction: row;
    align-items: baseline;
}

/* Bigger title */
.gear-grid.list-view .gear-detail .des h5 {
    font-size: 1.6667vw;
    line-height: 2.084vw;
    color: var(--hnp-black);
    white-space: normal;
    max-width: 36vw;
}

/* Category */
.gear-grid.list-view .gear-detail .des p {
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    text-transform: uppercase;
    color: var(--hnp-dark-brown);
}

.gear-grid.list-view .gear-detail .des .descri {
    display: block;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    text-transform: unset;
    color: var(--hnp-black);
}

/* Price + button row */
.gear-grid.list-view .gear-detail .deta {
    align-items: center;
    height: max-content;
    justify-content: end;
    flex-direction: column;
    gap: 2vw;
    width: 20vw;
}

/* Button sizing */
.gear-grid.list-view .deta .book-btn {
    width: 8.375vw;
    height: 2.39584vw;
    border-radius: 2vw;
    padding: 1vw;
}

/* Disable hover/flip behavior completely */
.gear-grid.list-view .flip-card,
.gear-grid.list-view .flip-card-inner {
    transform: none !important;
}
.flip-card, .gear-grid.list-view .flip-card-front {
    box-shadow: none;
    flex-direction: row;
}
.gear-grid.list-view .flip-card:hover .flip-card-inner {
    transform: none !important;
}

/* Active view button */
.shop-content-bar-selector .view-select .btn-sm.active {
    color: var(--hnp-white);
}

    /* === JOURNEY SECTION === */
    .journey-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--hnp-white);
        overflow: hidden;
        height: 69.7917vw;
    }

    .journey-content {
        width: 58.2292vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: max-content;
        align-items: center;
        gap: 2.5vw;
    }

    .journey-content h4 {
        font-size: 52px;
        line-height: 62px;
        font-weight: 600;
        margin: 0;
    }

    .journey {
        position: relative;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .journey .j1,
    .journey .j2,
    .journey .j3,
    .journey .j4 {
        width: 100%;
        height: 12.5vw;
        display: flex;
        justify-content: space-between;
        z-index: 1;
        align-items: baseline;
    }

    .journey .j2,
    .journey .j4 {
        flex-direction: row-reverse;
        gap: 3.9583vw;
    }

    .journey .j3 {
        height: 14.584VW;
    }

    .journey .j4 {
        height: 13.54167vw;
    }

    .elip {
        background-color: var(--hnp-orange);
        width: 1.0417vw;
        height: 1.0417vw;
        border-radius: 50%;
    }

    .jtem h1 {
        font-size: 3.75vw;
        line-height: 4.5vw;
    }

    .j1 .jtem h1,
    .j2 .jtem h1,
    .j3 .jtem h1,
    .j4 .jtem h1 {
        margin: 0;
        color: #E6E9EA;
        font-weight: 600;
        letter-spacing: 0.1125vw;
    }

    .j1 .jtem,
    .j2 .jtem,
    .j3 .jtem,
    .j4 .jtem {
        width: 29.6875vw;
        display: flex;
        justify-content: flex-end;
        gap: 4.6875vw;
        align-items: center;
    }

    .j2 .jtem,
    .j4 .jtem {
        flex-direction: row-reverse;
    }

    .jtem .elip {
        z-index: 1;
    }

    .jdes {
        display: flex;
        flex-direction: column;
        text-align: start;
        justify-content: space-between;
    }

    .j1 .jdes {
        width: 24.8958vw;
        height: 8.125vw;
    }

    .j2 .jdes {
        width: 24.7396vw;
        height: 8.125vw;
    }

    .j3 .jdes {
        width: 24.89583vw;
        height: 10.2083vw;
    }

    .j4 .jdes {
        width: 24.7396vw;
        height: 10.2083vw;
    }

    .jdes h5 {
        font-size: 1.6667vw;
        line-height: 2.0833vw;
    }

    .jdes p {
        font-size: 0.8333vw;
        line-height: 1.25vw;
    }

    .rect-line {
        background-color: #E6E9EA;
        width: 0.052084vw;
        height: 51.927083vw;
        position: absolute;
        top: 28.125vw;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* === BOOKING SECTION === */
    .booking-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--hnp-white);
        overflow: unset;
        height: max-content;
        padding: 4.6875vw 0;
        z-index: 1;
    }

    .booking-content {
        width: 79.17vw;
        display: flex;
        height: max-content;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
        overflow: visible;
        justify-content: flex-start;
    }

    .booking-content p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-weight: 500;
    }

    .booking-content h4 {
        width: 100%;
        font-size: 2.0833vw;
        line-height: 2.6042vw;
    }

    .booking-content .first-name,
    .booking-content .last-name,
    .booking-content .email-address,
    .booking-content .phone-number {
        width: 38.75vw;
        height: 7.604vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.form-ban {
    width: 38.75vw;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 0.78125vw;
}

.form-ban img {
    width: 100%;
    border-radius: 0.78125vw;
    object-fit: contain;
}

    .first-name input,
    .last-name input,
    .email-address input,
    .phone-number input {
        background: #F6F6F6;
        height: 5.2083vw;
        border: none;
        outline: none;
        border-radius: 0.78125vw;
        padding-left: 2.6042vw;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .booking-content .start-date {
        width: 30.21vw;
        height: 7.604vw;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

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

    .start-date .date {
        display: flex;
        justify-content: space-between;
    }

    .date .day,
    .date .month,
    .date .year {
        height: 5.2083vw;
        border-radius: 0.78125vw;
        background: #F6F6F6;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2.6042vw;
    }

    .day p,
    .month p,
    .year p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.4583vw;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-weight: 400;
    }

    .booking-content .duration {
        width: 17.08vw;
        height: 7.604vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .duration .days {
        height: 5.2083vw;
        border-radius: 0.78125vw;
        background: #F6F6F6;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2.6042vw;
    }

    .days p {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 11.98vw;
    }

    .booking-content .car-type {
        width: 28.65vw;
        height: 7.604vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .car-type .type {
        height: 5.2083vw;
        border-radius: 0.78125vw;
        background: #F6F6F6;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2.6042vw;
    }

    .type p {
        width: 23.44vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .booking-content .submit-btn {
        width: max-content;
        height: 3.125vw;
        padding: 0 0.8333vw;
        border-radius: 0.5208vw;
        background: var(--hnp-dark-brown);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-weight: 500;
        font-family: 'PoppinsRegular';
        box-sizing: border-box;
        border: none;
    }
    /* Dropdown menu styling */
    .dropdown-container {
        position: relative;
    }
    
    .dropdown-menu {
    position: absolute;
    bottom: 6.35vw;
    left: 0;
    right: 0;
    display: none;
    z-index: 99;
    margin-top: 5px;
    max-height: 14.0625vw;
    overflow: hidden;
    overflow-y: auto;
    background-color: #f6f6f6db;
    -webkit-backdrop-filter: blur(0.26042vw);
    backdrop-filter: blur(0.26042vw);
    border-radius: 0.52084vw;
    box-shadow: 0 0.26042vw 0.4167vw rgba(0, 0, 0, 0.15);
    padding: 0.4167vw;
    }
    
    .dropdown-menu.active {
        display: block;
    }
    
    .dropdown-item {
padding: 0.625vw;
    cursor: pointer;
    color: #000000;
    transition: all 0.2s;
    font-size: 1.04167vw;
    line-height: 1.56vw;
    font-family: 'PoppinsRegular';
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    /* Date picker styling */
    .date-picker-container {
    top: -15.65vw;
    left: 0;
    right: 0;
    z-index: 100;
    display: none;
    }
    
    .date-picker-container.active {
        display: block;
    }
    
    /* Make the date selector clickable */
    .date {
        cursor: pointer;
        position: relative;
    }
    
    /* Make the dropdown triggers clickable */
    .duration .days,
    .car-type .type {
        cursor: pointer;
        position: relative;
    }
    
    /* Ensure dropdowns don't break existing layout */
    .duration,
    .car-type {
        position: relative;
    }
    
    /* Form error styles */
    .field-error {
        color: #dc3545;
        font-size: 12px;
        margin-top: 5px;
        animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    input.error,
    textarea.error {
        border-color: #dc3545 !important;
    }
    /* === HEADINGS === */
    h4 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
    }

    /* === PACKAD SECTION === */
    .packad-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--hnp-white);
        overflow: hidden;
        height: 710px;
    }

    .packad-content {
        width: 79.17vw;
        display: flex;
        height: 580px;
        justify-content: space-around;
        flex-direction: column;
        align-items: flex-start;
    }

    .packad-title {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .packad-arrows {
        display: flex;
        justify-content: space-between;
        width: 136px;
    }

    .packad-arrow-container {
        width: 38px;
        height: 38px;
    }

    .packad-packages {
        width: 2320px;
        height: 370px;
        display: flex;
        justify-content: space-between;
    }

    .packad {
        background-color: #d9d9d9;
        border-radius: 1.302084vw;
        width: 79.17vw;
        height: 370px;
        position: relative;
        opacity: 50%;
    }

    .packad.active {
        opacity: 1;
    }

    .check-icon {
        width: 38px;
        height: 38px;
        border: 3px solid #FFFFFF;
        background-color: var(--hnp-dark-brown);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 30px;
        top: 30px;
    }

    .check-icon i {
        font-size: 20px;
        line-height: 20px;
    }

    .packad h3 {
        margin: 0;
        font-size: 76px;
        line-height: 76px;
        color: #ffffff;
        position: absolute;
        bottom: 70px;
        left: 30px;
        text-shadow: 1px 2px 2px #0000000D, 3px 6px 10px #0000001A, 5px 10px 20px #00000026;
    }

    .packad-des {
        position: absolute;
        bottom: 30px;
        left: 30px;
        display: flex;
        gap: 20px;
    }

    .packad-location {
        width: 180px;
    }

    .packad-location p,
    .packad-price p {
        color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.0417vw;
        line-height: 22px;
    }

    .packad-price {
        width: 150px;
    }

    .packad-check {
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .checklists {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 70px;
    }

    .checklists p {
        display: flex;
        align-items: center;
        font-size: 1.0417vw;
        line-height: 22px;
        gap: 10px;
    }

    .custom-checkbox {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background-color: #F6F6F6;
        border: none;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        position: relative;
        margin: 0;
    }

    .custom-checkbox:checked {
        background-color: var(--hnp-dark-brown);
    }

    .custom-checkbox:checked::after {
        content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
        position: absolute;
        color: rgb(255, 255, 255);
        font-size: 20px;
        font-weight: bold;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .checklists p span {
        color: var(--hnp-dark-brown);
    }

    .btn-book {
        width: 270px;
        height: 70px;
        background-color: var(--hnp-dark-brown);
        border-radius: 10px;
        display: flex;
        color: #ffffff;
        font-size: 22px;
        line-height: 30px;
        font-family: 'PoppinsRegular';
        font-weight: 500;
        align-items: center;
        justify-content: center;
    }

    /* === BLOGS SECTION === */
    .blogs-section {
        height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4.6875vw 0;
    }

    .blogs-content {
        width: 79.17vw;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .blogs-side {
        width: 22.8125vw;
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: sticky;
        top: 6.77084vw;
        align-self: start;
        padding: 0.4167vw 0;
    }

    .blogs-side .search-blogs {
        width: 100%;
        height: 26px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        border-bottom: 1px solid var(--hnp-gradient-black);
    }
    .blogs-side .search-blogs form {
        width: 100%;
        display: flex;
        height: 10.1266vw;
    }
    .search-blogs input {
        border: none;
        outline: none;
        font-size: 1.25vw;
        line-height: 1.25vw;
        width: 100%;
    }

    .search-blogs .search-icon-btn {
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
        font-size: 1.25vw;
        line-height: 1.25vw;
    }

    .tag-blogs {
        margin-top: 4.167vw;
    }

    .tag-but-cont {
        width: 100%;
        height: max-content;
        display: flex;
        justify-content: flex-start;
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-tag {
        height: 40px;
        padding: 0 20px;
        margin: 0;
        color: var(--hnp-dark);
        background-color: var(--hnp-light-gray);
        border-radius: 8px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .btn-tag.active {
        color: var(--hnp-white);
        background-color: var(--hnp-dark-brown);
    }

    .btn-tag p {
        font-size: 1.04167vw;
        line-height: 1.04167vw;
    }

    .popular-line {
        width: 100%;
        height: 1px;
        background-color: #d9d9d9;
        margin: 2.5vw 0;
    }

    .popular-blogs {
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .popular-blog {
        width: 22.8125vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0.4167vw 0;
    }

    .popular-blog img {
        width: 100%;
        height: 12.1875vw;
        border-radius: 1.302084vw;
        background-color: #d9d9d9;
        object-fit: cover;
    }

    .popular-details {
        display: flex;
        flex-direction: column;
        gap: 0.625vw;
        margin-top: 1.25vw;
    }

    p.details-title {
        font-size: 0.83334vw;
        line-height: 1.25vw;
        color: var(--hnp-dark-brown);
        font-weight: 300;
    }

    p.details-sub {
        font-size: 1.04167vw;
        line-height: 1.5625vw;
        font-weight: 500;
    }

    p.details-date {
        font-size: 0.83334vw;
        line-height: 1.25vw;
        font-weight: 300;
    }

    .blogs-main {
        width: 50.2084vw;
        display: flex;
        flex-direction: column;
        gap: 3.4167vw;
    }

    .blogs-main h4 {
        width: 100%;
    }

    .blogs-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 4.167vw;
    }

    .blog-main {
        width: 50.2084vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 1.4584vw 0;
    }

    .blog-main img {
        width: 100%;
        height: 41.667vw;
        border-radius: 1.302084vw;
        background-color: #d9d9d9;
        object-fit: cover;
    }

    .blogs-details {
        display: flex;
        flex-direction: column;
        gap: 0.625vw;
        margin-top: 1.25vw;
    }

    .blogs-details h5 {
        font-size: 1.6667vw;
        line-height: 2.08334vw;
    }

    .blog-mini {
        width: 24.21875vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 1.4584vw 0;
    }

    .blog-mini img {
        width: 100%;
        height: 16.979167vw;
        border-radius: 1.302084vw;
        background-color: #d9d9d9;
        object-fit: cover;
    }

    .blogs-main .pagination {
        height: 2.605vw;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.302084vw;
    }

    /* === ARTICLES SECTION === */
    .articles-section {
        height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
    }

    .articles-content {
        width: 79.17vw;
        display: flex;
        justify-content: space-between;
    }

    .articles-main {
        width: 50.2084vw;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .articles-main p {
        width: 100%;
        font-size: 1.04167vw;
        line-height: 1.5625vw;
    }

    .articles-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 38px;
    }

    .article {
        width: 50.2084vw;
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.56vw;
        padding: 0.5206vw 0;
    }

    .itinerary-section .article {
        width: 100%;
    }

    .article-title {
        display: flex;
    }

    .article-title p {
        font-size: 1.6667vw;
        line-height: 2.0834vw;
        color: var(--hnp-dark-brown);
        width: max-content;
        font-family: 'PoppinsMedium';
        font-weight: 500;
    }

    .article-title h5 {
        font-size: 1.6667vw;
        line-height: 2.0834vw;
        font-family: 'PoppinsMedium';
        font-weight: 500;
    }

    .article img {
        width: 100%;
        height: 28.4375vw;
        border-radius: 1.302084vw;
        background-color: #d9d9d9;
    }
    .itinerary-section .article img  {
        width: 100%;
      height: 28.4375vw;
    }
    .article-details {
        display: flex;
        flex-direction: column;
        gap: 0.5206vw;
        font-size: 1.04167vw;
        line-height: 1.5625vw;
        font-family: 'PoppinsRegular';
        font-weight: 400;
    }

    .article-quote {
        width: 50.2084vw;
        height: 294px;
        background: var(--hnp-light-gray);
        border-radius: 1.302084vw;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .article-quote h4 {
        width: 39.584vw;
        font-size: 1.5625vw;
        line-height: 2.0833vw;
    }

    .quote-icon {
        width: 3.3334vw;
        margin-bottom: 3.3334vw;
    }

    .article-player {
        height: 40px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .article-play {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5206vw;
    }

    .article-play p {
        width: fit-content;
    }

    .aticle-play.next {
        width: 100px;
    }

    .aticle-play.prev {
        width: 130px;
    }

    /* === DESTINATION SECTION === */
    .destination {
        height: 62.5vw;
        display: grid;
    }

    .destination-content {
        width: 79.17vw;
        height: 53.13vw;
    }

    .destination-content-h2 {
        font-size: 10.4167vw;
        line-height: 10.4167vw;
    }

    .destination-content-p {
        font-size: 1.6667vw;
        line-height: 1.6667vw;
        letter-spacing: 0.4vw;
        width: 26.5625vw;
        height: 2.5vw;
        font-weight: 300;
        text-wrap-mode: nowrap;
    }

    .des-but-cont {
        width: max-content;
        gap: 0.5208vw;
        height: 3.8125vw;
        max-width: 52vw;
        overflow: hidden;
        max-height: 3.8125vw;
        justify-content: space-between;
        margin-top: 2.0833vw;
    }

    .destinations .des-but-cont {
        justify-content: start;
        gap: 1vw;
        max-width: 50vw;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .btn-sm,
    .btn-sm.active {
        height: 3.125vw;
        max-height: 3.125vw;
        padding: 0 1.04167vw;
        margin: 0;
        gap: 1vw;
        box-sizing: border-box;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .btn-sm p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        width: max-content;
        font-weight: 500;
    }

    .destination-items-container {
        width: 100%;
        justify-content: space-between;
    }

    .destination-item {
        height: 26.3542vw;
        width: 18.6458vw;
    }

    .destination-item:hover {
        height: 26.3542vw;
        width: 18.6458vw;
        background-color: var(--hnp-white);
        box-shadow: 5px 20px 50px 0px #0000000D;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .destination-item img {
        height: 20.8333vw;
        width: 100%;
        transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .destination-item:hover img {
        height: 18.9583vw;
        width: 16.1458vw;
        margin-top: 0.5208vw;
    }

    .destination-item-cap {
        width: 16.1458vw;
        max-width: 16.1458vw;
        transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-top: 1.5625vw;
    }

    .destination-item:hover .destination-item-cap {
        width: 16.1458vw;
        max-width: 16.1458vw;
        display: flex;
        margin-top: 1.5625vw;
    }

    .destination-name {
        font-size: 1.6667vw;
        line-height: 2.0833vw;
    }

    .destination-packages {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .destination-item .btn-round-primary {
        width: 0;
        height: 0;
        transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .destination-item:hover .btn-round-primary {
        width: 3.854vw;
        height: 3.854vw;
    }

    .destination-content .btn-outline-primary {
        max-width: 14.79vw;
        width: 14.79vw;
        height: 3.229vw;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .destination-content .btn-outline-primary p {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    /* === FEATURES SECTION === */
    .features-section {
        height: 20.833vw;
    }

    .features {
        width: 85.4167vw;
        height: 11.4583vw;
    }

    .feature-item {
        height: 11.1458vw;
        width: 14.69vw;
    }

    .item-icon {
        height: 3.5417vw;
        width: 3.5417vw;
    }

    .icon-image {
        width: 2.6042vw;
        height: 2.6042vw;
    }

    .item-t {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .item-p {
        font-size: 0.833vw;
        line-height: 1.25vw;
    }

    /* === PACKAGES SECTION === */
    .packages-section {
        height: 57.8125vw;
    }

    .packages-content {
        width: 79.17vw;
        height: 48.65vw;
    }

    .packages-contain h4 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
    }

    .package-des p {
        font-size: 1.04vw;
        line-height: 1.5625vw;
    }

    .package-des .button {
        font-size: 1.04vw;
        line-height: 1.5625vw;
    }

    .package-item {
        width: 18.75vw;
        height: 39.90vw;
    }

    .package-item img {
        height: 39.90vw;
    }

    .package-item-gradient {
        bottom: 0;
        height: 19.17vw;
        width: 100%;
        background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
    }

    .package-item-no {
        font-size: 2.0833vw;
        line-height: 2.604vw;
        left: 15.10vw;
        top: 1.56vw;
    }

    .package-item-item-h5 {
        font-size: 1.6667vw;
        line-height: 2.0833vw;
        bottom: 1.56vw;
    }

    .package-item.active {
        width: 58.85vw;
        height: 39.90vw;
    }

    .package-item.active img {
        height: 28.125vw;
    }

    .package-item-active-item-no {
        font-size: 2.0833vw;
        line-height: 2.604vw;
        top: 1.5625vw;
        right: 1.528vw;
        color: #000000;
    }

    .package-item-h3 {
        font-size: 5vw;
        line-height: 5vw;
    }

    .package-item-p {
        font-size: 1.04vw;
        line-height: 1.5625vw;
    }

    .package-item-cta {
        width: 11.77vw;
        height: 3.125vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .package-item-cta-p {
        font-size: 1.04vw;
        line-height: 1.5625vw;
    }

    /* === PROCESS SECTION === */
    .process-section {
        height: 53.125vw;
    }

    .process-content-h2 {
        font-size: 10.4167vw;
        line-height: 10.4167vw;
    }

    .process-content-p {
        font-size: 1.6667vw;
        line-height: 1.6667vw;
        letter-spacing: 0.4167vw;
    }

    .process-wrap {
        width: 82.71vw;
        height: 25.94vw;
    }

    .process-line {
        width: 59.90vw;
        left: 13.125vw;
        top: 4.306vw;
    }

    .process-item-1,
    .process-item-2,
    .process-item-3 {
        width: 15.10vw;
        max-height: 18.75vw;
    }

    .process-item-1 {
        top: 3.125vw;
        left: 6.77vw;
        width: 13.54vw;
    }

    .process-item-2 {
        left: 25.10vw;
        top: 8.54vw;
        width: 15.10vw;
    }

    .process-item-3 {
        top: 0;
        right: 23.23vw;
    }

    .process-item-4 {
        width: 16.6667vw;
        max-height: 17.29vw;
        top: 8.44vw;
        right: 3.125vw;
    }

    .process-item-1 .process-icon-circle,
    .process-item-2 .process-icon-circle,
    .process-item-3 .process-icon-circle,
    .process-item-4 .process-icon-circle {
        height: 8.54vw;
        width: 8.54vw;
        margin: 0;
        flex-shrink: 0;
    }

    .process-icon-img {
        width: 4.1667vw;
        height: 4.1667vw;
        color: var(--hnp-dark-brown);
    }
    .process-icon-circle.active  .process-icon-img {
        color: var(--hnp-white);
    }

    .process-text-container {
        row-gap: 0.6vw;
    }

    .process-title {
        font-size: 1.6667vw;
        line-height: 2.0833vw;
    }

    .process-description {
        font-size: 0.75vw;
        line-height: 1.25vw;
    }

    /* === FAQ SECTION === */
    .faq-section {
        height: 43.02vw;
    }

    .faq-content {
        width: 79.17vw;
        height: 33.65vw;
    }

    .faq-left-column {
        width: 25.83vw;
    }

    .faq-h3 {
        font-size: 5.21vw;
        line-height: 5.21vw;
    }

    .faq-intro-text {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        opacity: 75%;
    }

    .faq-ornament {
        height: 6.25vw;
        width: 7.8125vw;
    }

    .faq-right-column {
        width: 51.35vw;
        align-items: center;
    }

    .faq-item {
        width: 48.23vw;
        height: 2.6042vw;
    }

    .faq-item.expanded {
        height: max-content;
        box-shadow: 5px 20px 50px 0px #0000000D;
        border-radius: 1.3021vw;
        justify-content: center;
        width: 100%;
        gap: 2.0833vw;
        padding: 0.9375vw 0;
    }

    .faq-question-container {
        display: flex;
        flex-direction: column;
        row-gap: 1.0417vw;
        width: 43.75vw;
    }

    .faq-question {
        font-size: 1.6667vw;
        line-height: 2.0833vw;
        margin: 0;
    }

    .faq-answer {
        font-size: 0.8333vw;
        line-height: 1.25vw;
    }

    .faq-item .faq-icon,
    .faq-item.expanded .faq-icon {
        width: 2.6042vw;
        height: 2.6042vw;
    }

    /* === TESTIMONIAL SECTION === */
    .testimonial-section {
        height: 33.3333vw;
    }

    .testimonial-content {
        width: 79.17vw;
        height: 23.9583vw;
    }

    .testimonial-header {
        display: flex;
        flex-direction: column;
    }

    .testimonial-title {
        font-size: 2.0833vw;
        line-height: 2.604;
    }

    .testimonial-subtitle {
        font-size: 1.04vw;
        line-height: 1.5625vw;
    }

    .testimonial-ornament {
        height: 6.25vw;
        width: 7.8125vw;
        bottom: 0;
    }

    .testimonial-slider {
        width: 51.389vw;
        height: 24.028vw;
    }

    .testimonial-card {
        width: 48.96vw;
        height: 22.40vw;
        box-shadow: 0.26vw 1.0417vw 2.60vw 0px #0000000D;
        top: 0;
        display: none;
        flex-direction: column;
        justify-content: center;
        row-gap: 2.083vw;
        align-items: center;
    }

    .testimonial-card.active {
        display: flex;
    }

    .testimonial-text {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        width: 42.5vw;
        margin: 0;
    }

    .testimonial-author {
        width: 42.5vw;
        column-gap: 1.0417vw;
    }

    .author-avatar {
        height: 4.1667vw;
        width: 4.1667vw;
        background-color: #d9d9d9;
    }

    .author-name {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .author-location {
        font-size: 0.8333vw;
        line-height: 0.8333vw;
    }

    .testimonial-arrows {
        bottom: 0;
        height: 6.25vw;
    }

    .testimonial-arrows .arrow-container {
        height: 2.5vw;
        width: 2.5vw;
    }

    /* === BLOG SECTION === */
    .blog-section {
        height: 67.71vw;
    }

    .blog-content {
        width: 79.17vw;
        height: 58.33vw;
    }

    .blog-section-title {
        font-size: 2.0833vw;
        line-height: 2.6042vw;
        color: var(--hnp-black);
    }

    .blog-subheader {
        top: 3.125vw;
    }

    .blog-description {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        opacity: 75%;
    }

    .blog-see-more__text {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .blog-posts {
        top: 6.77vw;
        gap: 0;
    }

    .blog-featured {
        width: 48.96vw;
        height: 51.56vw;
    }

    .blog-card {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: 12px;
    }

    .blog-card__image {
        height: 39.27vw;
    }

    .blog-card__category {
        font-size: 0.8333vw;
        line-height: 1.5625vw;
    }

    .blog-card__title {
        font-size: 2.0833vw;
        line-height: 2.60vw;
    }

    .blog-author {
        column-gap: 1.0417vw;
    }

    .blog-author__avatar {
        height: 3.3333vw !important;
        width: 3.3333vw !important;
        border-radius: 50% !important;
        background: #d9d9d9;
    }

    .blog-author__name {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }

    .blog-author__date {
        font-size: 0.8333vw;
        line-height: 1.5625vw;
    }

    .blog-sidebar {
        width: 28.65vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }



    .blog-sidebar__image {
        height: 15.73vw;
    }

    .blog-card__title--small {
        font-size: 2.0833vw;
        line-height: 2.60vw;
    }

    /* === DESCRIPTION SECTION === */
    .description-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.56vw 0;
    }

    .description-content {
        display: flex;
        width: 79.71vw;
        justify-content: space-between;
    }

    .description-content p {
        width: 38.80vw;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        text-align: justify;
    }


    /* === ACTIVITIES SECTION === */
    .activities-section {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 37.19vw;
    }

    .activities-content {
        width: 79.17vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .activities-content h4 {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
    }

    .activities-content .activities {
        width: 100%;
        display: flex;
        gap: 1.4583vw;
        overflow-x: scroll;
        scroll-behavior: smooth;
        align-items: center;
        scroll-snap-type: x mandatory;
    }

    .activity-card {
        width: 25.42vw;
        height: 23.96vw;
        background: #d9d9d9;
        border-radius: 1.3021vw;
        position: relative;
        flex-shrink: 0;
    }

    .activity-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1.3021vw;
    }

    .activity-card .gradient {
        background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: 0;
        border-bottom-left-radius: 1.302084vw;
        border-bottom-right-radius: 1.302084vw;
        display: none;
    }

    .activity-card .activity-name {
        position: absolute;
        bottom: 1.5625vw;
        left: 1.5625vw;
        background: transparent;
        backdrop-filter: blur(5px);
        border-radius: 1.3021vw;
        padding: 0.2604vw;
    }

    .activity-name p {
        color: var(--hnp-white);
        font-size: 1.67vw;
        line-height: 2.0833vw;
    }

    .activities-content .activities-pagination {
        height: 2.8125vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5208vw;
    }

    .activities-pagination .pag-arrow {
        width: 2.8125vw;
        height: 2.8125vw;
        border-radius: 50%;
        font-size: 2.0833vw;
        line-height: 2.0833vw;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'PoppinsRegular';
        font-weight: 300;
        cursor: pointer;
        user-select: none;
    }

    .pag-arrow.prev {
        color: #000000;
        border: 1px solid gray;
        opacity: 65%;
    }

    .pag-arrow.next {
        color: var(--hnp-white);
        background-color: var(--hnp-dark-brown);
    }

    .activities-pagination .dot {
        width: 0.5208vw;
        height: 0.5208vw;
        border-radius: 50%;
        background-color: #d9d9d9;
    }

    .dot.active {
        background-color: var(--hnp-dark-brown);
    }

    /* === DESTINATION DETAIL BOOKING SECTION === */
    .destination-detail .booking-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--hnp-white);
        overflow: visible;
        height: 63.75vw;
    }

    .destination-detail .booking-content {
        width: 79.17vw;
        display: flex;
        height: 54.38vw;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .booking-content .message {
        width: 100%;
        gap: 1vw;
        height: max-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .message textarea {
        height: 11.88vw;
        background: #F6F6F6;
        border-radius: 0.78125vw;
        border: none;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-weight: 400;
        padding: 1.5625vw;
        font-family: 'PoppinsRegular';
        box-sizing: border-box;
    }

    /* === NEWSLETTER SECTION === */
    .newsletter-section {
        height: 34.27vw;
    }

    .newsletter-content {
        width: 77.81vw;
        height: 24.90vw;
        justify-content: space-between;
    }

    .newsletter-header {
        margin: 0;
    }

    .newsletter-title-bg {
        font-size: 10.4167vw;
        line-height: 10.4167vw;
    }

    .newsletter-title {
        font-size: 1.6667vw;
        line-height: 1.6667vw;
        letter-spacing: 0.416666vw;
        width: 1020.18px;
        font-weight: 300;
    }

    .newsletter-description {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        margin: 0;
    }

    .newsletter-form {
        width: 63.02vw;
        height: 5.9375vw;
        justify-content: start;
        gap: 24vw;
        border-radius: 1.3021vw;
    }

form.newsletter-form.success {
    transition: all 0.8s ease;
    background: transparent;
    box-shadow: none;
    justify-content: center;
}

    .newsletter-input {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        color: #acacac;
        margin-left: 2.3438vw;
    }
    .newsletter-input:autofill {
        -webkit-text-fill-color: #acacac;
        -webkit-box-shadow: inset 0px 0px 0px 1000px #ffffff !important;
         /* Royal blue border */
    }

input.newsletter-input.success {
    width: 0vw;
    transition: all 0.8s ease;
    margin: 0;
    display: none;
}

    .newsletter-button {
        margin-right: 0;
        width: 10.4167vw;
        height: 4.1667vw;
    }

button.newsletter-button.success {
    transition: all 0.8s ease;
    width: 30vw;
}

    .newsletter-button__text {
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        text-align: center;
    }

    /* === FOOTER SECTION === */
    .footer-section {
        height: 17.40vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 0;
    }

    .footer-content {
        padding: 0;
        width: 79.17vw;
        margin: 0;
        height: 10.94vw;
    }

    .footer-logo {
        top: 0;
        width: 5.833vw;
        height: 5.833vw;
    }

    .footer-logo__image {
        width: 5.833vw;
        height: 5.833vw;
    }

    .footer-nav {
        width: 29.17vw;
        height: 1.25vw;
        left: 50%;
        justify-content: space-between;
        top: 2.0833vw;
        transform: translate(-50%, -50%);
    }

    .footer-nav__link {
        font-size: 0.8333vw;
        line-height: 1.25vw;
    }

    .footer-social {
        width: 11.25vw;
        column-gap: 0;
        justify-content: space-between;
        top: 12px;
        right: 0;
    }

    .footer-social__icon--facebook,
    .footer-social__icon--twitter,
    .footer-social__icon--instagram {
        width: 2.9167vw;
        height: 2.9167vw;
    }

    .footer-bottom {
        padding: 0;
        top: 5.73vw;
        align-items: center;
        height: 2.6042vw;
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.833vw;
        line-height: 1.25vw;
    }

    .footer-legal {
        font-size: 0.833vw;
        line-height: 1.25vw;
    }
            /* File Upload Styles */
    .file-upload-container {
        margin: 2vw 0;
        padding: 2vw;
        background: #f8f9fa;
        border-radius: 1.5vw;
        border: 2px dashed #ddd;
    }
    
    .file-upload-box {
        text-align: center;
        padding: 1vw;
    }
    
    .file-upload-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1vw;
        cursor: pointer;
        padding: 2vw;
        border-radius: 1.5vw;
        background: white;
        transition: all 0.3s;
    }
    
    .file-upload-label:hover {
        background: #fc950624;
    }
    
    .upload-icon {
        font-size: 5vw;
        color: var(--hnp-dark-brown);
    }
    
    .upload-text h4 {
        margin: 0 0 10px 0;
        color: #2c3e50;
    }
    
    .upload-text p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
    }
    
    .file-requirements {
        margin-top: 15px;
        font-size: 0.85rem;
        color: #666;
    }
    
    .file-preview-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1vw;
        margin-top: 2vw;
    }
    
    .file-preview {
        position: relative;
        border-radius: 1.5vw;
        overflow: hidden;
        border: 2px solid #e0e0e0;
    }
    
    .file-preview img {
        width: 100%;
        height: 15vw;
        object-fit: cover;
    }
    
    .file-info {
        padding: 1vw;
        background: white;
        font-family: 'PoppinsRegular';
        font-size: 1.0417vw;
        line-height: 1.5625vw;
    }
    
    .file-name {
        font-size: 0.9rem;
        color: #2c3e50;
        margin-bottom: 5px;
        word-break: break-all;
    }
    
    .file-size {
        font-size: 0.8rem;
        color: #666;
    }
    
    .remove-file {
        position: absolute;
        top: 5px;
        right: 5px;
        background: var(--hnp-dark-brown);
        color: white;
        border: none;
        border-radius: 50%;
        width: 25px;
        height: 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Service Type Selector */
    .service-type-selector {
        display: flex;
        gap: 10px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
    
    .service-type-btn {
        flex: 1;
        min-width: 150px;
        padding: 15px;
        border: 2px solid #ddd;
        background: white;
        border-radius: 10px;
        cursor: pointer;
        text-align: center;
        transition: all 0.3s;
    }
    
    .service-type-btn.active {
        background: #6c3015;
        color: white;
        border-color: #6c3015;
    }
    
    .service-type-icon {
        font-size: 2vw;
        margin-bottom: 1vw;
    }
    
    .service-type-btn h4 {
        margin: 0 0 1vw 0;
        font-size: 1rem;
    }
    
    .service-type-btn p {
        margin: 0;
        font-size: 0.85rem;
        opacity: 0.9;
    }
    

    
    /* Form Sections */
    .form-section {
        animation: fadeIn 0.5s ease;
    }

    #bookingContent .form-section {
        display: none;
    }
    
    .form-section.active {
        display: flex;
    }
    #bookingContent .form-section.active {
        display: flex;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    /* Form Navigation */
    .form-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
    }
    
    .form-btn {
        padding: 1vw 2vw;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        border-radius: 1vw;
        font-weight: 600;
        cursor: pointer;
        border: none;
        transition: all 0.3s;
        box-sizing: border-box;
    }
    
    .btn-prev {
        background-color: var(--hnp-white);
        border: 0.2vw solid var(--hnp-dark-brown);
        color: var(--hnp-dark-brown);
    }
    
    .btn-next {
        background: #6c3015;
        color: white;
    }
    
    .btn-submit {
        background: var(--hnp-dark-brown);
        color: white;
    }
    
    .form-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Additional Features */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin: 20px 0;
    }
    

    .feature-item input[type="checkbox"] {
        margin: 0;
    }
    
    /* Location Fields */
    .location-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    
    /* Price Summary */
    .price-summary {
        background: #f8f9fa;
        padding: 2vw;
        border-radius: 1.5vw;
        margin: 2vw 0;
    }
    
    .price-row {
        display: flex;
        justify-content: space-between;
        padding: 1vw 0;
        border-bottom: 1px solid #e0e0e0;
        font-family: 'PoppinsRegular';
    }
    
    .price-row.total {
        font-weight: bold;
        font-size: 1.2rem;
        border-bottom: none;
        color: var(--hnp-black);
    }
    
    /* Progress Bar */
    .progress-bar {
        height: 0.4vw;
        background: #f6f6f6;
        border-radius: 1vw;
        margin: 0;
        overflow: hidden;
        width: 100%;
    }
    
    .progress-fill {
        height: 100%;
        background: var(--hnp-dark-brown);
        border-radius: 5px;
        transition: width 0.5s ease;
    }
    

    /* Existing styles remain... */
    .custom-dropdown {
        position: absolute;
        background-color: #f6f6f6db;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        border-radius: 0.625vw;
        position: absolute;
        top: 7.8vw;
        width: 100%;
        height: 20vw;
        width: 40vw;
        height: 25vw;
        z-index: 3;
        display: flex;
        gap: 0.5208vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%);
        flex-direction: column;
        overflow: auto;
        scrollbar-width: none;
        border: 1px solid #DFE1E7;
        box-shadow: 0px 0.8333vw 1.6667vw -0.0521vw #80889733;
        position: absolute;
        top: 7.8vw;
        width: 100%;
        height: 20vw;
    }

.dropbox-item {
    font-family: 'PoppinsRegular';
    font-size: 1.04167vw;
    line-height: 1.56vw;
    text-align: center;
    padding: 1vw;
    border-bottom: 1px solid #DFE1E7;
}
    
    .booking-popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 90000;
    }
    
    .booking-popup-box {
        background: white;
        padding: 2vw;
        width: 36vw;
        border-radius: 1.5208vw;
        text-align: center;
        animation: show .25s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1vw;
    }
        .product-detail-container {
        padding: 6vw 0 0 0;
        width: 79.2vw;
        justify-self: center;
    }
    
    .product-breadcrumbs {
        margin-bottom: 2vw;
        font-size: 1.4167vw;
        color: #666;
    }
    
    .product-breadcrumbs a {
        color: #6c3015;
        text-decoration: none;
    }
    
    .product-breadcrumbs a:hover {
        text-decoration: underline;
    }
    
    .product-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4vw;
        margin-bottom: 3vw;
    }
    

    
    /* Product Gallery */
    .product-gallery {
        position: sticky;
        top: 1vw;
    }
    
    .main-image {
        width: 100%;
        height: 40vw;
        border-radius: 0.78125vw;
        margin-bottom: 1vw;
        background: var(--hnp-light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s;
    }
    
    .main-image img:hover {
        transform: scale(1.08);
    }
    
    .gallery-thumbnails {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1vw;
    }
    
    .gallery-thumbnail {
        width: 100%;
        height: 8vw;
        border-radius: 0.5vw;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s;
        background: #f8f9fa;
    }
    
    .gallery-thumbnail.active {
        border-color: #6c3015;
    }
    
    .gallery-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Product Info */
    .product-info h1 {
        font-size: 28px;
        margin-bottom: 10px;
        color: #333;
    }
    
    .product-meta {
        display: flex;
        align-items: center;
        gap: 1vw;
        margin: 2vw 0;
        font-size: 1.4167vw;
        color: #666;
    }
    
    .product-category {
        background: #f0f0f0;
        padding: 0.5vw 1vw;
        border-radius: 1vw;
    }
    
    .product-sku {
        color: #999;
    }
    
    .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .stars {
        color: #f39c12;
        font-size: 16px;
    }
    
    .review-count {
        color: #666;
        font-size: 14px;
        margin-left: 5px;
    }
    
    .product-price {
        margin-bottom: 1vw;
    }
    
    .current-price {
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        font-weight: 600;
        color: var(--hnp-dark);
        margin-right: 1vw;
    }
    
    .original-price {
        font-size: 1vw;
        line-height: 2.0833vw;
        color: var(--hnp-gradient-black);
        text-decoration: line-through;
    }
    
    .discount-badge {
        background: var(--hnp-orange);
        color: white;
        padding: 0.5vw 1vw;
        border-radius: 0.5vw;
        font-size: 1.04167vw;
        font-weight: 600;
        margin-left: 1vw;
    }
    
    .product-description {
        margin-bottom: 3vw;
        line-height: 1.6;
        color: #555;
    }
    
    .product-stock {
        display: flex;
        align-items: center;
        gap: 1vw;
        margin-bottom: 2vw;
        border-radius: 0.5vw;
    }
    
    .stock-status {
        font-weight: 400;
    }
    
    .stock-status.in-stock {
        color: var(--hnp-dark-brown);
    }
    
    .stock-status.low-stock {
        color: #f39c12;
    }
    
    .stock-status.out-of-stock {
        color: #e74c3c;
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 1vw;
        margin-bottom: 2vw;
    }
    
    .quantity-btn {
        width: 3.125vw;
        height: 3.125vw;
        border: 1px solid #ddd;
        background: white;
        border-radius: 0.5vw;
        font-size: 1.5vw;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'PoppinsRegular';
    }
    
    .quantity-input {
        width: 6vw;
        height: 3.125vw;
        border: 1px solid #ddd;
        border-radius: 0.5vw;
        text-align: center;
        font-family: 'PoppinsRegular';
        font-size: 1.5vw;
    }
    
    .product-actions {
        display: flex;
        gap: 3vw;
        margin-bottom: 3vw;
        justify-content: flex-start;
    }
    
    .add-to-cart-btn, .buy-now-btn {
        height: 3.125vw;
        padding: 1vw;
        border: none;
        border-radius: 0.5vw;
        font-size: 1.0417vw;
        line-height: 1.5625vw;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1vw;
        transition: all 0.3s;
        box-sizing: border-box;
    }
    
    .add-to-cart-btn {
        background: var(--hnp-dark-brown);
        color: white;
    }
    
    .add-to-cart-btn:hover {
        transform: scale(1.04);
    }
    
    .buy-now-btn {
        background: var(--hnp-orange);
        color: white;
    }
    
    .buy-now-btn:hover {
        transform: scale(1.04);
    }
    
    .btn-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .product-features {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .feature-item i {
        color: #6c3015;
        font-size: 18px;
    }
    
    /* Tabs Section */
    .product-tabs {
        margin: 3vw 0;
    }
    
    .tabs-header {
        display: flex;
        border-bottom: 1px solid #ddd;
        margin-bottom: 3vw;
    }
    
    .tab-btn {
        padding: 0.5vw 2vw;
        background: none;
        border: none;
        border-bottom: 0.1vw solid transparent;
        font-size: 1.5625vw;
        line-height: 2.0833vw;
        font-weight: 600;
        color: var(--hnp-gradient-white);
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .tab-btn.active {
        color: #6c3015;
        border-bottom-color: #6c3015;
    }
    
    .tab-content {
        display: none;
        animation: fadeIn 0.3s ease;
    }
    
    .tab-content.active {
        display: block;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .specifications-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .specifications-table tr {
        border-bottom: 1px solid #eee;
    }
    
    .specifications-table td {
        padding: 12px 15px;
    }
    
    .specifications-table td:first-child {
        font-weight: 600;
        width: 30%;
        color: #333;
    }
    
    .specifications-table td:last-child {
        color: #666;
    }
    
    /* Reviews */
    .reviews-section {
        margin-top: 30px;
    }
    
    .review-item {
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 20px;
        background: white;
    }
    
    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .reviewer-name {
        font-weight: 600;
        color: #333;
    }
    
    .review-date {
        color: #999;
        font-size: 14px;
    }
    
    .review-title {
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .review-text {
        color: #555;
        line-height: 1.6;
    }
    
    /* Related Products */
    .related-products {
        margin-top: 4vw;
    }
    
    .section-title {
        font-size: 2vw;
        line-height: 10vw;
        color: var(--hnp-black);
        text-align: center;
        margin: 0;
    }
    
    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(19vw, 0fr));
        gap: 1vw;
        padding: 0 0 2vw 0;
    }
    .related-grid .detail-card {
      width: 19vw;
      box-shadow: 0.2604vw 1.0417vw 2.6042vw 0px #0000000D;
      border-radius: 1.302084vw;
    }
  .related-grid .detail-card:hover {
    transform: scale3d(1.06, 1.04, 1.06);
}
    .related-grid .detail-card .gear-photo {
    width: 100%;
    border-radius: unset;
    border-top-left-radius: 1.302084vw;
    border-top-right-radius: 1.302084vw;
}
.related-grid .detail-card .gear-photo img {
  width: 100%;
}
    .related-grid .detail-card .gear-detail {
    width: 100%;
    height: 10vw;
    padding: 0 0 0.5vw 0.8vw;
    box-sizing: border-box;
}
        .order-details-container {
        padding: 6vw 2vw 0 2vw;
        font-family: "PoppinsRegular";
    }
    
    .order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3vw;
        padding-bottom: 1vw;
        border-bottom: 1px solid #eee;
    }
        .checkout-container {
        justify-self: center;
        width: 79.2vw;
        padding: 6vw 0 0 0;
    }

    .order-summary {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 10px;
        height: fit-content;
        position: sticky;
        top: 20px;
    }
    
    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .summary-item.total {
        font-weight: 600;
        font-size: 18px;
        border-bottom: none;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid #ddd;
    }
    
    .order-items {
        margin: 20px 0;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .order-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .order-item img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
    }
    
    .order-item-info {
        flex: 1;
    }
    
    .order-item-name {
        font-weight: 500;
    }
    
    .order-item-meta {
        font-size: 14px;
        color: #666;
    }
    
    .btn-checkout {
        width: 100%;
        padding: 15px;
        background: #2ecc71;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .btn-checkout:hover {
        background: #27ae60;
    }
    
    .btn-checkout:disabled {
        background: #95a5a6;
        cursor: not-allowed;
    }
    
    .error-message {
        background: #fee;
        color: #c33;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 20px;
        border-left: 4px solid #c33;
    }
    @media (max-width: 768px) {
        .order-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
    }
    

    
    .order-meta {
        color: #666;
        font-size: 1.74vw;
    }
    
    .order-actions {
        display: flex;
        gap: 10px;
    }
    
    .order-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3vw;
    }
    
    @media (max-width: 992px) {
        .order-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .order-card {
        background: white;
        border-radius: 1vw;
        padding: 2vw;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        margin-bottom: 2vw;
    }
    
    .order-card h3 {
        margin-bottom: 1vw;
        color: #333;
        padding-bottom: 1vw;
        font-size: 3vw;
        line-height: 3vw;
    }
    
    /* Status Badge */
    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 1vw;
        padding: 1vw;
        border-radius: 2.04167vw;
        font-weight: 600;
        font-size: 1.7292vw;
        box-sizing: border-box;
        max-height: 3.8125vw;
    }
    
    .status-badge i {
        font-size: 12px;
    }
    
    /* Order Items */
    .order-items-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .order-items-table th {
        text-align: left;
        padding: 1vw;
        background: #f8f9fa;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #eee;
    }
    
    .order-items-table td {
        padding: 1vw;
        border-bottom: 1px solid #eee;
    }
    
    .order-items-table tr:last-child td {
        border-bottom: none;
    }
    
    .product-cell {
        display: flex;
        align-items: center;
        gap: 1vw;
    }
    
    .product-image {
        width: 7vw;
        height: 7vw;
        border-radius: 0.5208vw;
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .product-info h4 {
        margin-bottom: 1.5vw;
        font-weight: 500;
    }
    
    .product-info p {
        color: #666;
        font-size: 1vw;
    }
    
    /* Summary Sidebar */
    .summary-card {
        top: 1vw;
    }
    
    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1vw;
        padding-bottom: 1vw;
    }
    
    .summary-item.total {
        font-size: 2vw;
        font-weight: 700;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid #eee;
        border-bottom: none;
        color: #6c3015;
    }
    
    .summary-label {
        color: #666;
    }
    
    .summary-value {
        font-weight: 600;
        color: #333;
    }
    
    /* Address Section */
    .address-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(30vw, 1fr));
        gap: 2vw;
        margin-top: 1vw;
    }
    
    .address-box {
        padding: 1vw;
        background: #f8f9fa;
        border-radius: 1.04167vw;
    }
    
    .address-box h4 {
        margin-bottom: 15px;
        color: #333;
    }
    
    .address-box p {
        margin-bottom: 5px;
        color: #555;
        line-height: 1.5;
    }
    
    /* Timeline */
    .timeline {
        position: relative;
        padding-left: 2vw;
        margin-top: 2vw;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #eee;
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 3vw;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-item:before {
        content: '';
        position: absolute;
        left: -2.6vw;
        top: 0.5vw;
        width: 1.4vw;
        height: 1.4vw;
        border-radius: 50%;
        background: #ddd;
    }
    
    .timeline-item.completed:before {
        background: var(--hnp-orange);
        box-shadow: 0 0 0 3px #fc95064d;
    }
    
    .timeline-item.active:before {
        background: #3498db;
        box-shadow: 0 0 0 3px #3498db30;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 #3498db50; }
        70% { box-shadow: 0 0 0 10px #3498db00; }
        100% { box-shadow: 0 0 0 0 #3498db00; }
    }
    
    .timeline-date {
        font-size: 1.6vw;
        color: #666;
        margin-bottom: 0.5vw;
    }
    
    .timeline-content {
        font-weight: 500;
        color: #333;
    }
    
    .timeline-note {
        font-size: 1.6vw;
        color: #666;
        margin-top: 0.5vw;
    }
    
    /* Action Buttons */
    .action-buttons {
        display: flex;
        gap: 1vw;
        margin-top: 2vw;
        flex-wrap: wrap;
    }
    
    @media (max-width: 768px) {
        .action-buttons {
            flex-direction: column;
        }
        
        .action-buttons .btn {
            width: 100%;
            text-align: center;
        }
    }
    
    /* Print Styles */
    @media print {
        .navbar, .footer, .order-actions, .action-buttons {
            display: none !important;
        }
        
        .order-details-container {
            padding: 0;
            max-width: none;
        }
        
        .order-card {
            box-shadow: none;
            border: 1px solid #ddd;
            page-break-inside: avoid;
        }
    }
    
    /* Loading State */
    .loading {
        text-align: center;
        padding: 1vw 2vw;
        color: var(--hnp-light-gray);
    }
    
    .loading i {
        font-size: 32px;
        margin-bottom: 15px;
        color: #6c3015;
    }
    /* Messages */
    .shop-message {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        border-radius: 6px;
        z-index: 10000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        animation: slideIn 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .shop-message.success {
        background: #2ecc71;
        color: white;
    }
    
    .shop-message.error {
        background: #e74c3c;
        color: white;
    }
    
    @keyframes slideIn {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    @keyframes slideOut {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(100%); opacity: 0; }
    }




        /* Safari Overlay Styles */
        .wilderness-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.05);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 4vw 0 0 0;
            backdrop-filter: blur(1vw);
        }

        .safari-message-panel {
            background-color: #f6f6f6d9;
            backdrop-filter: blur(5px);
            width: 50vw;
            height: 70vh;
            border-radius: 1.3021vw;
            overflow: hidden;
            animation: wildernessAppear 0.5s ease-out;
            box-shadow: 0.2604vw 1.0417vw 2.6042vw 0px #0000000D;
            box-sizing: border-box;
            padding: 0 1vw;
        }

        @keyframes wildernessAppear {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tribe-welcome-header {
            color: var(--hnp-black);
            padding: 2vw 0 0 0;
            text-align: center;
        }


        .safari-message-title {
            margin-bottom: 1vw;
        }

        .wilderness-message-body {
            text-align: center;
        }

        .safari-icon {
            margin-bottom: 1vw;
        }

        .new-explorer-icon {
            color: #2d8c47;
        }

        .existing-traveler-icon {
            height: 14vw;
            object-fit: contain;
            margin-bottom: 2vw;
        }

        .trail-message {
            margin-bottom: 1vw;
        }

        .kenyan-salutation {
            font-family: "PoppinsRegular";
            color: var(--hnp-dark-brown);
            font-size: 1.5625vw;
            line-height: 2.0833vw;
            font-weight: 700;
            margin: 1vw 0;
        }

        .message-footer {
            display: flex;
            text-align: center;
            justify-content: center;
        }

        .journey-continue-btn {
            background: var(--hnp-dark-brown);
            border: none;
            border-radius: 0.5vw;
            cursor: pointer;
            transition: background 0.3s;
            height: 3.125vw;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1vw;
            color: var(--hnp-white);
        }

        .journey-continue-btn:hover {
        }
.hnp-loader {
    position: fixed;
    top: 6vw;
    z-index: 10;
    width: 100vw;
    height: calc(100vh - 6vw);
    display: none;
    align-items: center;
    justify-content: center;
    background: #f6f6f6d9;
    backdrop-filter: blur(0.5vw);
}
.hnp-loader.show {
  display: flex;
}
/* From Uiverse.io by mrhyddenn */ 
.loader {
  position: relative;
  width: 40vw;
  font-family: 'PoppinsMedium';
  user-select: none;
}

.hnp-loader .loader {
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader span {
  position: absolute;
  color: #fff;
  transform: translate(-50%, -50%);
  font-size: 3VW;
  letter-spacing: 0.2VW;
}

.hnp-loader .loader span {
    font-size: 8VW;
    line-height: 8vw;
    letter-spacing: 0.5VW;
    transform: unset;
}

.loader span:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 0.1vw #6c3015;
}

.loader span:nth-child(2) {
  color: #6c3015;
  -webkit-text-stroke: 0.1vw #6c3015;
  animation: uiverse723 3s ease-in-out infinite;
}

@keyframes uiverse723 {
  0%, 100% {
    clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 
     54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }

  50% {
    clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 
     51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
.grid-c {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
        /* Custom Dropdown */
        .dropd {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0.78vw;
        }

.dropd label {
    font-family: "PoppinsRegular";
    letter-spacing: 0%;
    text-decoration: none;
    font-size: 1.0417vw;
    line-height: 1.5625vw;
    font-weight: 500;
}

        .dropd-selected {
            background: #F6F6F6;
            border: none;
            outline: none;
            border-radius: 0.78125vw;
            padding-left: 2.6042vw;
            padding-right: 1.4vw;
            font-size: 1.0417vw;
            line-height: 1.5625vw;
            font-family: PoppinsRegular;
            transition: 0.3s ease-in-out;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 5.2083vw;
            box-sizing: border-box;
        }

        .dropd-selected:hover {
            border-color: #999;
        }

        .dropd-selected.active {
            border-color: #007bff;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .selected-txt {
            color: #333;
        }

        .selected-txt.placeholder {
            color: #999;
        }

        .arraw {
            transition: transform 0.3s;
        }

        .dropd-selected.active .arraw {
            transform: rotate(180deg);
        }

        .dropd-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #f6f6f6a1;
            border: 0.2vw solid #f6f6f6;
            border-top: none;
            border-radius: 0 0 0.78125vw 0.78125vw;
            max-height: 18vw;
            overflow-y: auto;
            display: none;
            z-index: 2;
            backdrop-filter: blur(0.5vw);
        }

        .dropd-options.show {
            display: block;
        }

        .dropd-option {
            padding: 12px 15px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .dropd-option:hover {
            background: #fc9506;
        }

        .dropd-option.selected {
            background: #6c3015;
            color: white;
        }

        .dropd-option:first-child {
            color: #999;
            border-bottom: 1px solid #eee;
        }

        .dropd-option:first-child:hover {
            background: #ffebee;
            color: #dc3545;
        }
.region-label {
    padding: 0.5vw 1vw;
    background: #f6f6f6;
    color: #6c3015;
    font-size: 0.8vw;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #fc9506;
}

.region-label:first-of-type {
    margin-top: 0;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #6c3015, transparent);
    margin: 10px 0;
}

.dropd-option.priority {
    font-weight: 600;
}

.dropd-option.priority:hover {
}

.dropd-option.priority.selected {
    background: #6c3015;
    color: white;
}
       
/* Large phones / small tablets (481px - 600px) */
@media (max-width: 768px) {
  h5 {
            font-size: 4.0506vw;
        line-height: 6.076vw;
  }
  p {
        font-size: 4.0506vw;
        line-height: 6.076vw;
  }
  /* ===== NAVIGATION ===== */
  .nav-links {
    position: absolute;
    top: 14.1176vw;
    left: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 6.0759vw;
    padding: 5.86vw 0;
    background-color: #f6f6f6db;
    box-shadow: 0px 3.125vw 6.25vw -0.195vw #80889733;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    justify-content: flex-start;
  }
  
  .nav-links.active {
    transform: translateX(0);
    left: 0;
    overflow: auto;
    padding-bottom: 16vw;
    box-sizing: border-box;
  }
  
  .nav-links .link {
    width: 91.8vw;
    font-size: 4.69vw;
    line-height: 6.25vw;
    color: var(--hnp-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-cta {
    display: none;
  }
  
  .navlinks-cta {
    width: 93.6709vw;
    height: 15.1899vw;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.5316vw;
    flex-shrink: 0;
  }
  
  .navlinks-cta.btn-primary p {
    font-size: 4.69vw;
    line-height: 6.25vw;
  }
  
  .cart-link {
    position: absolute;
    right: 11.72vw;
    width: 9.77vw;
    height: 5.86vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5.86vw;
    background-color: #ffffff61;
    color: #000000;
  }

.cart-icon .cart-count {
    font-size: 2vw;
    width: 3vw;
    height: 3vw;
    color: var(--hnp-white);
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}

.cart-icon i {font-size: 4.0506vw;line-height: 4.0506vw;}
  
  .navbar-toggle {
    display: block;
    width: 7.81vw;
    height: 7.81vw;
    margin-right: 3.1373vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .navbar-toggle i {
    font-size: 4.69vw;
  }
  
  .toggle-icon {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .toggle-icon.bars {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  
  .toggle-icon.times {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
    position: absolute;
  }
  
  .navbar-toggle.active .toggle-icon.bars {
    opacity: 0;
    transform: scale(0) rotate(90deg);
  }
  
  .navbar-toggle.active .toggle-icon.times {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  
  .drop {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-dropdown-toggle {
    width: 91.8vw;
    font-size: 4.69vw;
    line-height: 6.25vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--hnp-dark);
    font-family: "PoppinsRegular";
    font-weight: 400;
    letter-spacing: 0%;
  }
  
    .mobile-dropdown-menu {
        width: 83.98vw;
        max-height: 0;
        display: flex;
        flex-direction: column;
        gap: 2.34vw;
        border: none;
        border-radius: 0;
        box-sizing: border-box;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        opacity: 1; /* Always visible when open */
        padding: 0;
        position: relative;
        top: 0;
    }
    
    /* ACTIVE STATE - Fixed */
    .mobile-dropdown-toggle.active + .mobile-dropdown-menu,
    .mobile-dropdown-menu.active {
        max-height: 91.8vw !important;
        /* No background, blur, or border on mobile */
        background-color: transparent !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        position: relative;
        top: 4.0506vw;
        /* Ensure smooth transition */
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    
    /* Hide hover effects on mobile - touch devices don't have hover */
    .mobile-dropdown-toggle:hover + .mobile-dropdown-menu {
        max-height: 0; /* Keep it closed unless .active is applied */
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
        
    }
    
    /* Completely override desktop hover/active styles on mobile */
    .mobile-dropdown-menu:hover,
    .mobile-dropdown-toggle:hover + .mobile-dropdown-menu,
    .mobile-dropdown-toggle.active + .mobile-dropdown-menu:hover,
    .mobile-dropdown-menu.active:hover {
        background-color: transparent !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    /* Style the items inside for smooth appearance */
    .mobile-dropdown-menu a,
    .mobile-dropdown-menu button,
    .mobile-dropdown-menu .dropdown-item {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
        pointer-events: none;
    }
    
    /* ACTIVE STATE ITEMS - Fixed */
    .mobile-dropdown-toggle.active + .mobile-dropdown-menu a,
    .mobile-dropdown-toggle.active + .mobile-dropdown-menu button,
    .mobile-dropdown-toggle.active + .mobile-dropdown-menu .dropdown-item,
    .mobile-dropdown-menu.active a,
    .mobile-dropdown-menu.active button,
    .mobile-dropdown-menu.active .dropdown-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s !important;
        pointer-events: auto;
    }

  
  .mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
  }
  
  a.mobile-dropdown-item {
    width: 83.98vw;
  }
  
  .navbar {
    width: 100%;
    max-width: 100%;
    height: 14.1176vw;
  }
  
  .logo {
    width: 9.8039vw;
    height: 9.8039vw;
    margin-left: 3.1373vw;
  }
  
  /* ===== CART MODAL ===== */
  .cart-modal {
    position: absolute;
    top: 14.06vw;
    left: -100%;
    width: 100%;
    height: calc(100vh - 14.1176vw);
    background-color: #f6f6f6db;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .cart-modal.show {
    left: 0;
    position: fixed;
  }
  
  .cart-modal-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-modal-header h4 {
    font-size: 5.86vw;
    line-height: 7.81vw;
    margin-left: 3.91vw;
  }
  
  .cart-close {
    font-size: 7.81vw;
    line-height: 7.81vw;
    margin-right: 3.91vw;
  }
  
  .cart-modal-body {
    width: 89.84vw;
    justify-self: center;
  }

.cart-empty {
    width: 50vw;
}
  
  .cart-item {
    height: 19.53vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-item img {
    width: 11.72vw;
    height: 11.72vw;
    object-fit: contain;
    border-radius: 3.125vw;
    background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  }
  
  .cart-item-details {
    width: 100%;
    margin: 0 1.95vw;
  }
  
  .cart-item-details .p4 {
    font-size: 3.91vw;
    line-height: 5.86vw;
    font-family: 'PoppinsMedium';
    font-weight: bold;
  }
  
  .cart-item-remove {
    width: 7.81vw;
    height: 7.81vw;
    font-size: 6.64vw;
    line-height: 5.86vw;
    border: 1px solid var(--hnp-dark-brown);
    border-radius: 50%;
    background: transparent;
    font-family: 'PoppinsMedium';
  }
  
  .cart-modal-footer {
    position: absolute;
    bottom: 10vw;
    width: 89.84vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: 2.34vw;
  }
  
  .cart-total {
    width: 100%;
    font-size: 3.91vw;
    line-height: 5.86vw;
    font-family: 'PoppinsMedium';
    font-weight: bold;
  }
  
  .cart-total strong {
    display: flex;
    justify-content: space-between;
  }
  
  #cartTotal {
    font-family: 'OswaldBold';
  }
  
  #checkoutBtn {
    width: 89.84vw;
    height: 13.67vw;
    font-size: 3.91vw;
    line-height: 5.86vw;
    border-radius: 3.91vw;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'PoppinsRegular';
  }
  
  /* ===== HERO SECTIONS ===== */
  .hero .gradient {
    height: 14.1176vw;
  }
  
  /* Home Hero */
  .home .hero {
    height: 177.2152vw;
    margin-bottom: 6.25vw;
    background-color: var(--hnp-white);
    overflow: visible;
  }
  
  .hero-image {
    height: 177.2152vw;
  }
  
  .home .hero-content {
    top: 89.6203vw;
    left: 50%;
  }
  
  .hero-content-p {
    width: 100%;
    font-size: 3.038vw;
    line-height: 4.0506vw;
    letter-spacing: 1.0127vw;
    margin-bottom: 4.0506vw;
    opacity: 90%;
    font-weight: 400;
  }
  
  .hero-content-h2 {
    margin: 0;
    font-size: 20.2532vw;
    line-height: 30.3797vw;
    font-family: "OswaldRegular";
    font-weight: 400;
    letter-spacing: 1.0127vw;
  }
  
  .hero-content-p2 {
    display: none;
  }
  
  /* About Us Hero */
  .about-us .hero {
    height: 126.5823vw;
    margin-bottom: 0;
    background-color: var(--hnp-white);
    overflow: visible;
  }
  
  .about-us .hero .hero-image {
    height: 126.5823vw;
  }
  
  .about-us .hero-content {
    top: 50%;
    width: 91.41vw;
  }
  
  /* Services Hero */
  .services .hero {
    height: 126.5823vw;
  }
  
  .services .hero .hero-image,
  .services .hero .hero-overlay {
    height: 126.5823vw;
  }
  
  .services .hero-content {
    width: 68vw;
    height: max-content;
    top: 63.28vw;
    justify-content: space-between;
    gap: 4.0506vw;
  }
  
  .services .hero-content-h2 {
    width: 100%;
    font-size: 12.1519vw;
    line-height: 15.1899vw;
    letter-spacing: 0.6076vw;
    margin: 0;
  }
  
  .services .nav-hero {
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.9266vw;
  }
  
  .services .nav-hero a {
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Flight Booking Hero */
  .flight-booking .hero {
    height: 126.5823vw;
  }
  
  .flight-booking .hero .hero-image,
  .flight-booking .hero .hero-overlay {
    height: 126.5823vw;
  }
  
  .flight-booking .hero-content {
    width: 47.27vw;
    height: 39.06vw;
    top: 63.28vw;
    justify-content: space-between;
  }
  
  .flight-booking .hero-content-h2 {
    width: 100%;
    font-size: 12.3vw;
    line-height: 15.23vw;
    letter-spacing: 0.47vw;
    margin: 0;
  }
  
  .flight-booking .nav-hero {
    width: 39.84vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .flight-booking .nav-hero a {
    font-size: 3.52vw;
    line-height: 4.69vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Shop Hero */
  .shop .hero {
    height: 126.95vw;
  }
  
  .shop .hero .hero-image,
  .shop .hero .hero-overlay {
    height: 126.95vw;
  }
  
  .shop .hero-content {
    height: 29.3vw;
    top: 62.5vw;
    justify-content: space-between;
  }
  
  .shop .hero-content-h2 {
    width: 100%;
    font-size: 15.63vw;
    line-height: 17.58vw;
    letter-spacing: 0.59vw;
    margin: 0;
  }
  
  .shop .nav-hero {
    width: 33.2vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .shop .nav-hero a {
    font-size: 3.125vw;
    line-height: 4.69vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Booking Hero */
  .booking .hero {
    height: 132.03vw;
  }
  
  .booking .hero .hero-image,
  .booking .hero .hero-overlay {
    height: 132.03vw;
  }
  
  .booking .hero-content {
    width: 89.84vw;
    height: 56.64vw;
    top: 65.63vw;
    justify-content: space-between;
  }
  
  .booking .hero-content-h2 {
    width: 100%;
    font-size: 16.21vw;
    line-height: 23.44vw;
    letter-spacing: 0.59vw;
    margin: 0;
  }
  
  .booking .nav-hero {
    width: 41.02vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .booking .nav-hero a {
    font-size: 3.91vw;
    line-height: 5.47vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Tour Packages Hero */
  .tour-packages .hero {
    height: 126.5823vw;
  }
  
  .tour-packages .hero .hero-image,
  .tour-packages .hero .hero-overlay {
    height: 126.5823vw;
  }
  
  .tour-packages .hero-content {
    width: 100%;
    height: max-content;
    top: 65.63vw;
    justify-content: space-between;
  }
  
  .tour-packages .hero-content-h2 {
    font-size: 11.72vw;
    line-height: 13.67vw;
    letter-spacing: 0.59vw;
    margin: 0;
  }
  
  .tour-packages .nav-hero {
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .tour-packages .nav-hero a {
    font-size: 3.91vw;
    line-height: 5.47vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Destinations Hero */
  .destinations .hero {
    height: 101.17vw;
  }
  
  .destinations .hero .hero-image,
  .destinations .hero .hero-overlay {
    height: 101.17vw;
  }
  
  .destinations .hero-content {
    height: 29.3vw;
    top: 49.02vw;
    justify-content: space-between;
  }
  
  .destinations .hero-content-h2 {
    width: 100%;
    font-size: 15.63vw;
    line-height: 17.58vw;
    letter-spacing: 0.59vw;
    margin: 0;
  }
  
  .destinations .nav-hero {
    width: 40.63vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .destinations .nav-hero a {
    font-size: 4.1vw;
    line-height: 5.86vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Blog Hero */
  .blog .hero {
    height: 101.17vw;
  }
  
  .blog .hero .hero-image,
  .blog .hero .hero-overlay {
    height: 101.17vw;
  }
  
  .blog .hero-content {
    height: 23.63vw;
    top: 49.22vw;
    justify-content: space-between;
  }
  
  .blog .hero-content-h2 {
    width: 100%;
    font-size: 12.11vw;
    line-height: 13.67vw;
    letter-spacing: 0.59vw;
    margin: 0;
  }
  
  .blog .nav-hero {
    width: 16.8vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .blog .nav-hero a {
    font-size: 2.93vw;
    line-height: 4.49vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Blog Detail Hero */
  .blog-detail .hero {
    height: 111.33vw;
  }
  
  .blog-detail .hero .hero-image,
  .blog-detail .hero .hero-overlay {
    height: 101.17vw;
  }
  
  .blog-detail .hero-content {
    height: 78.13vw;
    top: 69.53vw;
    gap: 3.91vw;
  }
  
  .blog-detail .hero-content-h2 {
    width: 100%;
    height: 42.19vw;
    font-size: 8.59vw;
    line-height: 10.55vw;
    letter-spacing: 0.2vw;
    margin: 0;
  }
  
  .blog-detail .nav-hero {
    width: 20.9vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .blog-detail .nav-hero a {
    font-size: 3.71vw;
    line-height: 5.08vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* Contact Us Hero */
  .contact-us .hero {
    height: 126.5823vw;
  }
  
  .contact-us .hero .hero-image,
  .contact-us .hero .hero-overlay {
    height: 126.5823vw;
  }
  
  .contact-us .hero .hero-content {
    top: 63.2911vw;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.52vw;
    text-align: center;
    color: white;
    z-index: 2;
  }
  
  .contact-us .hero .nav-hero {
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 1.0127vw;
  }
  
  .contact-us .hero .nav-hero a {
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    color: var(--hnp-white);
  }
  
  .contact-us .hero .hero-content-h2 {
    margin: 0 0 0 0.39vw;
    font-size: 15.1899vw;
    line-height: 22.7848vw;
    font-family: "OswaldRegular";
    font-weight: 400;
    letter-spacing: 0.7595vw;
  }
  
  /* Destination Detail Hero */
  .destination-detail .hero {
    height: 125.78vw;
  }
  
  .destination-detail .hero .hero-image,
  .destination-detail .hero .hero-overlay {
    height: 125.78vw;
  }
  
  .destination-detail .hero-content {
    height: 35.16vw;
    top: 52.93vw;
    justify-content: space-between;
  }
  
  .destination-detail .hero-content-h2 {
    width: 100%;
    font-size: 21.09vw;
    line-height: 23.05vw;
    letter-spacing: 0.59vw;
    margin: 0;
  }
  
  .destination-detail .nav-hero {
    width: 50.78vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .destination-detail .nav-hero a {
    font-size: 3.125vw;
    line-height: 4.69vw;
    color: var(--hnp-white);
    font-weight: 400;
  }
  
  /* ===== SEARCH FORM ===== */
  .home .search-form {
    width: 92.1519vw;
    max-width: 92.1519vw;
    height: 85.6667vw;
    position: absolute;
    top: 35.443vw;
    z-index: 2;
    flex-direction: column;
    border-radius: 4.902vw;
    box-shadow: 0.98vw 3.91vw 9.77vw 0px #0000001a;
    padding: 4.0506vw;
    justify-content: space-between;
    box-sizing: border-box;
  }
  
  .search-form .des {
    width: 84.0506vw;
    height: 17.2152vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .des p {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    margin: 0;
    font-weight: 400;
  }
  
  .despi {
    display: none !important;
  }
  
  .des .sp {
    height: 9.1139vw;
    padding: 0px 3.038vw;
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    border-radius: 2.0253vw;
    color: var(--hnp-gradient-black);
    background: #F3F3F5;
    opacity: 50%;
  }
  
  .sp .despi2 {
    display: inline-block !important;
  }
  
  .sp.expanded .despi2 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  
  .search-form .line {
    display: none;
  }
  
  .search-form .destination-options,
  .search-form .experience-options {
    display: none;
    width: 84.0506vw;
    height: auto;
  }

.search-form #experience-picker.expanded  .experience-options {
    display: flex !important;
}
.search-form .experience-options.expanded, #experience-picker:hover .experience-options {
    max-height: max-content;
    background-color: #f6f6f6;
}

.search-form .destination-options.expanded, #destination-picker:hover .destination-options {
    max-height: 96.625vw;
    background-color: #f6f6f6;
}

.search-form #destination-picker.expanded .destination-options {
    display: flex !important;
}
  
  .search-form .destination-options.expanded,
  .search-form .experience-options.expanded {
    position: absolute;
    width: 84.1vw;
    height: 76vw;
    display: flex;
    flex-direction: column;
    gap: 1.95vw;
    border-radius: 2.93vw;
    background-color: #f6f6f6;
    overflow: scroll;
    z-index: 2;
  }
  
  .search-form .destination-option,
  .search-form .experience-option {
    width: 76.17vw;
    height: 10.94vw;
    display: flex;
    align-items: center;
    padding: 0 3.91vw;
    gap: 3.91vw;
    border-radius: 2.93vw;
    background: #f6f6f6;
    flex-shrink: 0;
  }
  
  .destination-option .destination-icon,
  .experience-option .experience-icon {
    font-size: 3.52vw;
    line-height: 5.08vw;
    color: var(--hnp-dark-brown);
  }
  
  .destination-option .destination-text,
  .experience-option .experience-text {
    font-size: 3.52vw;
    line-height: 5.08vw;
    font-family: 'PoppinsRegular';
    color: #222222;
  }
  
  .search-form .btn-primary {
    width: 84.0506vw;
    height: 14.1772vw;
    margin: 0;
    padding: 0;
    border-radius: 2.5316vw;
    justify-content: flex-start;
  }
  
  .search-form .btn-primary p {
    margin-left: 8.1013vw;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
  }
  
  /* ===== JOURNEY SECTION ===== */
  .journey-section {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: visible;
    padding: 12.1519vw 0;
    box-sizing: border-box;
  }
  
  .journey-content {
    width: 92.1519vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12.1519vw;
    height: 100%;
  }
  
  .journey-content h4 {
    font-size: 10.16vw;
    line-height: 12.11vw;
    font-weight: 600;
    margin: 0;
  }
  
  .journey {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 92.1519vw;
    gap: 12.1519vw;
  }
  
  .journey .j1,
  .journey .j3 {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 4.0506vw;
  }
  
  .journey .j2,
  .journey .j4 {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4.0506vw;
  }
  
  .journey .j3 {
    height: max-content;
  }
  
  .journey .j4 {
    height: max-content;
  }
  
  .elip {
    width: 5.0633vw;
    height: 5.0633vw;
    border-radius: 50%;
    background-color: var(--hnp-orange);
  }
  
  .j1 .jtem, .j2 .jtem, .j3 .jtem, .j4 .jtem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5.86vw;
  }
  
  .j1 .jtem,
  .j3 .jtem {
    justify-content: flex-start;
  }
  
  .j2 .jtem,
  .j4 .jtem {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  
  .jtem h1 {
    font-size: 12.1519vw;
    line-height: 18.2278vw;
    margin: 0;
    color: #E6E9EA;
    font-weight: 600;
  }

  .jdes {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: space-between;
  }

  .j1 .jdes {
    height: max-content;
    width: 100%;
    gap: 4.0506vw;
  }

  .j2 .jdes {
    height: max-content;
    width: 100%;
    gap: 4.0506vw;
  }

  .j3 .jdes {
    height: max-content;
    gap: 4.0506vw;
    width: 100%;
  }

  .j4 .jdes {
    height: max-content;
    gap: 4.0506vw;
    width: 100%;
  }

  .jdes h5 {
    font-size: 5.0633vw;
    line-height: 7.5949vw;
  }

  .jdes p {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
  }

  .rect-line {
    display: none;
  }

  /* ===== BOOKING SECTION ===== */
  .booking-section {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: visible;
    padding: 0;
  }
  
  .booking-content {
    width: 92.1519vw;
    height: max-content;
    display: flex;
    gap: 3.91vw;
    position: relative;
    overflow: visible;
    align-items: center;
    justify-content: center;
    padding: 4vw 0;
  }
  
  .booking-content h4 {
    width: max-content;
    font-size: 4.0506vw;
    line-height: 6.076vw;
    font-family: 'OswaldRegular';
    font-weight: 500;
  }
  
  .booking-content .first-name,
  .booking-content .last-name,
  .booking-content .email-address,
  .booking-content .phone-number {
    width: 89.84vw;
    height: 29.3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

.form-ban {
    width: 100%;
}

.form-ban img {}

.booking-content p {
    font-size: 4.0506vw;
    line-height: 6.076vw;
}
  
  .booking-content .start-date,
  .booking-content .duration,
  .booking-content .car-type {
    width: 89.84vw;
    height: 28vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

.custom-dropdown {
    position: absolute;
    top: 27.8vw;
    width: 100%;
    height: 72vw;
}

.car-details {
    width: 89.84vw;
}
  
  .booking p {
    font-size: 4.0506vw;
    line-height: 6.076vw;
  }
  
  .first-name input,
  .last-name input,
  .email-address input,
  .phone-number input {
    width: 100%;
    height: 19.53vw;
    padding-left: 5.86vw;
    padding-right: 5.86vw;
    font-size: 4.3vw;
    line-height: 6.25vw;
    border: none;
    outline: none;
    border-radius: 2.93vw;
    background: #F6F6F6;
    font-family: 'PoppinsRegular';
    color: #717182;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
  }
  
  .first-name input:focus,
  .last-name input:focus,
  .email-address input:focus,
  .phone-number input:focus {
    border: 1px solid #d9d9d9;
    padding-left: 7.81vw;
    font-size: 3.52vw;
    line-height: 5.47vw;
  }
  
  .first-name input::placeholder,
  .last-name input::placeholder,
  .email-address input::placeholder,
  .phone-number input::placeholder {
    color: var(--hnp-gradient-black);
    opacity: 1;
  }
  
  .start-date .date {
    display: flex;
    justify-content: space-between;
    gap: 3.91vw;
  }
  
  .date .day,
  .date .month,
  .date .year {
    width: 100%;
    height: 19.53vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.93vw;
    background: #F6F6F6;
  }
  
  .start-date p,
  .day p,
  .month p,
  .year p {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .duration .days,
  .car-type .type {
    width: 100%;
    height: 19.53vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.93vw;
    background: #F6F6F6;
    box-sizing: border-box;
  }
.dropdown-menu {
    max-height: 50vw;
    bottom: 20vw;
}
.dropdown-menu .dropdown-item {
    font-size: 3.125vw;
    line-height: 4.69vw;
    padding: 1vw;
}

.dropbox-item {
    font-size: 4.0506vw;
    line-height: 6.076vw;
    padding: 4vw;
}
  
  .days p,
  .type p {
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .booking-content .message {
    width: 100%;
    height: 33.2vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .message textarea {
    height: 24vw;
    padding: 3.91vw;
    font-size: 3.125vw;
    line-height: 4.69vw;
    border: none;
    border-radius: 2.93vw;
    background: #F6F6F6;
    font-family: 'PoppinsRegular';
  }
  
  .booking-content .submit-btn {
    width: 58.59vw;
    height: 15.63vw;
    font-size: 4.3vw;
    line-height: 5.86vw;
    border-radius: 2.93vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hnp-dark-brown);
    color: #ffffff;
    font-family: 'PoppinsRegular';
  }
  
  .destination-detail .booking-section {
    height: max-content;
    padding: 6vw 0;
  }
  
  .destination-detail .booking-content {
    height: max-content;
  }
  
  /* ===== DATE PICKER ===== */
  .date-picker-container {
    width: 84.0506vw;
    padding: 2.91vw;
    margin-top: 0;
    border-radius: 1.95vw;
    box-shadow: 0 0.98vw 3.91vw rgba(0, 0, 0, 0.15); /* 0 5px 20px */
    display: none;
    position: absolute;
    z-index: 4;
    top: 18vw;
    left: 0;
    background-color: #f6f6f6;
  }
  
  .date-picker-calendar {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.5vw 0;
    font-family: 'PoppinsRegular';
    font-size: 3vw;
    line-height: 6vw;
  }

.date-picker-calendar td {
    padding: 1.6vw 0;
    border-radius: 1vw;
}
  
  .date-picker-header h3 {
    font-size: 4.86vw;
    line-height: 5.86vw;
  }

.date-picker-header button {
    font-size: 4.051vw;
    padding: 1.6457vw 2.53165vw;
    line-height: 4.051vw;
}
      /* Progress Bar */
    .progress-bar {
        height: 0.8vw;
    }
  /* ===== CAR HIRE SECTION ===== */
  .carhire-section {
    padding: 12.1519vw 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: hidden;
  }
  
  .carhire-content {
    width: 92.1519vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6.0759vw;
  }
  
  .carhire-content-bar {
    width: 89.84vw;
    height: max-content;
    margin-bottom: 10.1266vw;
    gap: 4.0506vw;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-around;
  }
  
  .carhire-content-bar-title {
    display: flex;
    justify-content: space-between;
  }
  
  .carhire-content-bar-title h4 {
    margin: 0;
    font-size: 4.69vw;
    line-height: 6.25vw;
    color: var(--hnp-dark);
    font-family: 'OswaldRegular';
    font-weight: 400;
  }
  
  .carhire-content-bar-title .search-bar {
    position: absolute;
    width: 89.84vw;
    height: 10.1266vw;
    top: 24.3038vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid var(--hnp-gradient-black);
  }
  
  .carhire-content-bar-title .search-bar input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .carhire-content-bar-title .search-bar input:focus {
    border-bottom: 1px solid var(--hnp-gradient-black);
  }
  
  .carhire-content-bar-title .search-bar i {
    font-size: 4.69vw;
    line-height: 4.69vw;
  }
  
  .carhire-content-bar-selector {
    width: 100vw;
    position: relative;
    left: -3.8986vw;
    display: flex;
    justify-content: start;
  }
  
  .carhire-content-bar-selector .des-but-cont {
    margin: 0;
    gap: 1.95vw;
    max-height: 15.1899vw;
    max-width: 100vw;
    scrollbar-width: thin;
  }
  
  .carhire-content-bar-selector .view-select {
    display: none;
  }
  
  .view-select .btn-sm,
  .view-select .btn-sm.active {
    width: 100%;
    padding: 0;
    justify-content: center;
    gap: 1.95vw;
  }
  
  .view-select .btn-sm i {
    font-size: 3.91vw;
    line-height: 3.91vw;
  }
  
  .carhire-content-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5.86vw;
  }
  
  .car-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5.86vw;
    justify-content: space-between;
  }
  
  .car-grid .detail-card {
    width: 92.1519vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: var(--hnp-white);
    border-radius: 4.88vw;
    box-shadow: 4.69vw 4.3vw 13.67vw -0.59vw #00000014;
    padding: 0;
    overflow: visible;
  }
  
  .car-photo {
    width: 92.1519vw;
    height: 82.5316vw;
    position: relative;
    border-radius: unset;
    border-top-left-radius: 6.0759vw;
    border-top-right-radius: 6.0759vw;
    background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  }
  
  .car-photo .loca {
    position: absolute;
    top: 4.0506vw;
    left: 4.0506vw;
    width: max-content;
    height: 10.55vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.0253vw;
    padding: 0 3.5443vw;
    border-radius: 9.6203vw;
    background: #FFFFFF66;
  }
  
  .car-photo .loca i {
    font-size: 5.0633vw;
    line-height: 5.0633vw;
  }
  
  .car-photo .loca p {
    font-size: 4.0506vw;
    line-height: 5.86vw;
    color: var(--hnp-white);
  }
  
  .car-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transform: scale(1.097);
    transition: transform 6s ease-out;
  }
  
  .car-detail {
    width: 92.1519vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 6.0759vw;
    box-sizing: border-box;
  }
  
  .car-detail .des {
    width: 100%;
    height: max-content;
    gap: 2.0253vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .car-detail .des h5 {
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
  }
  
  .car-detail .des p {
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 600;
  }
  
  .car-detail .det {
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.0253vw;
  }
  
  .car-detail .det .points {
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.0253vw;
  }
  
  .det .points p {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    text-align: start;
    align-items: baseline;
  }
  
  .det .points p i {
    font-size: 3.125vw;
    line-height: 3.125vw;
    color: var(--hnp-orange);
    border: 2px solid var(--hnp-orange);
    border-radius: 50%;
  }
  
  .car-detail .det .book-btn {
    width: 78.13vw;
    height: 10.94vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 7.42vw;
    background-color: var(--hnp-orange);
  }
  
  .det .book-btn p {
    font-size: 3.91vw;
    line-height: 4.69vw;
    color: var(--hnp-white);
  }
  
  .carhire-content-main .pagination {
    width: 78.13vw;
    height: 7.81vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.91vw;
  }

      /* === CAR BANNER SECTION - MOBILE === */
    
    .car-banner {
        padding: 8vw 5vw;
        height: auto;
    }
    
    .banner-card {
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 85vw;
        border-radius: 4vw;
        padding: 5vw 0 0 0;
        position: relative;
        overflow: hidden;
    }
    
    .tyre-trend {
        width: 95vw;
        top: 57vw;
        left: -6vw;
        transform: rotate3d(1, 1, 1, 
-20deg);
    }
    
    .shield {
        width: 16vw;
        top: 4vw;
        left: 8vw;
    }
    
    .vip {
        width: 12vw;
        top: 50vw;
        left: 2vw;
    }
    
    .ad {
        width: 100%;
        padding: 0 5vw;
        gap: 3vw;
        order: 2;
        position: relative;
        z-index: 2;
    }
    
    .ad h4 {
        font-size: 4.0506vw;
        line-height: 6.076vw;
        text-align: center;
    }
    
    .ad h5 {
        font-size: 4.0506vw;
        line-height: 6.076vw;
        text-align: center;
        margin-top: -1vw;
    }
    
    .ad .points {
        gap: 2vw;
    }
    
    .ad .points p {
        gap: 2vw;
        align-items: baseline;
    }
    
    .ad .points p i {
        padding: 0.8vw;
        flex-shrink: 0;
    }
    
    .ad .book-btn {
        width: 60%;
        height: 10vw;
        border-radius: 8vw;
        padding: 0 6vw;
        margin: 5vw auto 6vw auto;
    }
    
    .ad .book-btn p {
        font-size: 4vw;
    }
    
    .banner {
        width: 100%;
        order: 1;
        z-index: 1;
    }
    
    .banner-photo {
        width: 100%;
        object-fit: contain;
    }
  /* ===== DESTINATIONS SECTION ===== */
  .destinations-section {
    height: max-content;
    padding: 11.13vw 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: hidden;
  }
  
  .destinations-content {
    width: 92.1519vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5.86vw;
  }
  
  .destinations-content-bar {
    width: 89.84vw;
    height: 51.56vw;
    margin-bottom: 7.03vw;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-around;
  }
  
  .destinations .destinations-content-bar {
    height: 27.34vw;
  }
  
  .destinations-content-bar-title {
    display: flex;
    justify-content: space-between;
  }
  
  .destinations-content-bar-title h4 {
    margin: 0;
    font-size: 4.69vw;
    line-height: 6.25vw;
    color: var(--hnp-dark);
    font-family: 'OswaldRegular';
    font-weight: 300;
  }
  
  .destinations-content-bar-title .search-bar {
    position: absolute;
    width: 89.84vw;
    height: 6.25vw;
    top: 45.31vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--hnp-gradient-black);
  }
  
  .destinations .destinations-content-bar-title .search-bar {
    top: 27.34vw;
  }
  
  .destinations-content-bar-title .search-bar input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .destinations-content-bar-title .search-bar input:focus {
    border-bottom: 1px solid var(--hnp-gradient-black);
  }
  
  .destinations-content-bar-title .search-bar i {
    font-size: 5.86vw;
    line-height: 5.86vw;
  }
  
  .destinations-content-bar-selector {
    width: 100vw;
    position: relative;
    left: -3.8986vw;
    display: flex;
    justify-content: center;
  }
  
  .destinations-content-bar-selector .des-but-cont {
    margin: 0;
  }
  
  .destinations .destinations-content-bar-selector .des-but-cont {
    max-height: unset;
    width: 100vw;
    max-width: 100vw;
    scrollbar-width: thin;
  }
  
  .destinations-content-bar-selector .view-select {
    display: none;
  }
  
  .destinations-content-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5.86vw;
  }
  
  .destination-grid {
    width: 92.1519vw;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5.86vw;
    justify-content: space-between;
  }
  
  .destination-grid .desti-card {
    width: 92.1519vw;
    height: 113.28vw;
    position: relative;
    border-radius: 6.3291vw;
    background: #d9d9d9;
  }
  
  .desti-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 6.3291vw;
  }
  
  .desti-card-gradient {
    width: 100%;
    height: 30%;
    top: unset;
    bottom: 0;
    position: absolute;
    border-radius: 4.88vw;
    background: linear-gradient(
0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  }
  
  .desti-info {
    position: absolute;
    bottom: 5.86vw;
    left: 5.86vw;
    width: 78.13vw;
    min-height: 31%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3.91vw;
  }
  
  .desti-card h5 {
    margin: 0;
    font-size: 4.69vw;
    line-height: 6.64vw;
    color: var(--hnp-white);
  }
  
  .desti-card .desti-des {
    display: flex;
    gap: 3.91vw;
    color: var(--hnp-white);
  }
  
  .desti-des .desti-location p,
  .desti-des .desti-price p {
    font-size: 3.52vw;
    line-height: 5.08vw;
    display: flex;
    gap: 1.95vw;
    align-items: center;
  }

.desti-des .desti-location p i, .desti-des .desti-price p i {
    width: 3.5443vw;
    height: 3.5443vw;
}
  
  .desti-card .desti-desc {
    display: none;
  }
  
  .desti-card:hover .desti-desc {
    display: block;
  }
  
  .desti-card .desti-desc p {
    font-size: 3.52vw;
    line-height: 5.08vw;
    color: var(--hnp-white);
    opacity: 75%;
  }
  
  .desc-cta {
    display: none;
  }

.tour-card.square.active .desc-cta, .tour-card.square:hover .desc-cta {
    display: flex;
    width: 28vw;
    border: 1px solid var(--hnp-white);
    border-radius: 1vw;
    height: 12vw;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
  
  .destinations-content-main .pagination {
    width: 89.84vw;
    height: 9.77vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ===== TOUR PACKAGES SECTION ===== */
  .tourpack-section {
    height: max-content;
    padding: 12.1519vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: hidden;
  }
  
  .tourpack-content {
    width: 92.1519vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6.0759vw;
  }
  
  .tourpack-content-bar {
    width: 89.84vw;
    height: 28vw;
    margin-bottom: 10.1266vw;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
  }
  
  .tourpack-content-bar-title {
    display: flex;
    justify-content: space-between;
  }
  
  .tourpack-content-bar-title h4 {
    margin: 0;
    font-size: 4.69vw;
    line-height: 6.25vw;
    color: var(--hnp-dark);
    font-family: 'OswaldRegular';
    font-weight: 300;
  }
  
  .tourpack-content-bar-title .search-bar {
    position: absolute;
    width: 89.84vw;
    height: 10.1266vw;
    top: 27.8481vw;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--hnp-gradient-black);
    justify-content: flex-end;
  }
  
  .tourpack-content-bar-title .search-bar input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
  }
  
  .tourpack-content-bar-title .search-bar i {
    font-size: 6.0759vw;
    line-height: 6.0759vw;
  }
  
  .tourpack-content-bar-selector {
    width: 100vw;
    position: relative;
    left: -3.8986vw;
    display: flex;
    justify-content: space-between;
  }
  
  .tourpack-content-bar-selector .des-but-cont {
    margin: 0;
    max-height: unset;
    width: 100vw;
    max-width: 100vw;
    scrollbar-width: thin;
  }
  
  .tourpack-content-bar-selector .view-select {
    display: none;
  }
  
  .tourpack-content-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5.86vw;
  }
  
  .tours-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5.86vw;
    justify-content: space-between;
    width: 100%;
  }
  
  .tours-grid .tour-card {
    width: 100%;
    height: 116.4557vw;
    position: relative;
    border-radius: 6.3291vw;
    background: #d9d9d9;
  }
  
  .tour-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 6.3291vw;
  }
  
  .tour-card-gradient {
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    top: unset;
    border-radius: 6.3291vw;
    background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  }

.tour-card.square:hover .tour-card-gradient {
    border-radius: 6.3291vw;
}
  
  .tour-info {
    position: absolute;
    bottom: 5.86vw;
    left: 5.86vw;
    width: 78.13vw;
    min-height: 31%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3.91vw;
  }
  
  .tour-card h5 {
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    color: var(--hnp-white);
  }
  
  .tour-card .tour-des {
    display: flex;
    gap: 0;
    color: var(--hnp-white);
  }
  
  .tour-des .tour-location p,
  .tour-des .tour-price p,
  .tour-des .tour-duration p {
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    display: flex;
    gap: 1.2658vw;
    align-items: center;
  }



.tour-des .tour-location p i, .tour-des .tour-price p i, .tour-des .tour-duration p i {width: 3.5443vw;height: 3.5443vw;}
  
  .tour-card .tour-desc {
    display: block;
  }
  
  .tour-card.square .tour-desc {
    display: none;
  }
  
  .tour-card .tour-desc p {
    font-size: 3.125vw;
    line-height: 5.08vw;
    color: var(--hnp-white);
    opacity: 75%;
  }
  
  .tourpack-content-main .pagination {
    width: 100%;
    height: 10.1266vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.0506vw;
  }
  
  /* ===== SHOP SECTION ===== */
  .shop-section {
    padding: 5.86vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: hidden;
  }
  
  .shop-content {
    width: 92.152vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5.86vw;
    justify-self: center;
  }
  
  .shop-content-bar {
    width: 92.152vw;
    height: 33.2vw;
    margin-bottom: 7.03vw;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-around;
  }
  
  .shop-content-bar-title {
    display: flex;
    justify-content: space-between;
  }
  
  .shop-content-bar-title h4 {
    margin: 0;
    font-size: 4.69vw;
    line-height: 6.25vw;
    color: var(--hnp-dark);
    font-family: 'OswaldRegular';
    font-weight: 300;
  }
  
  .shop-content-bar-title .search-bar {
    position: absolute;
    width: 89.84vw;
    height: 6.25vw;
    top: 33.2vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--hnp-gradient-black);
  }
  
  .shop-content-bar-title .search-bar input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .shop-content-bar-title .search-bar i {
    font-size: 5.86vw;
    line-height: 5.86vw;
  }
  
  .shop-content-bar-selector {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .shop-content-bar-selector .des-but-cont {
    margin: 0;
    max-height: unset;
  }
  
  .shop-content-bar-selector .view-select {
    display: none;
  }
  
  .shop-content-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5.86vw;
  }
  
  .gear-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5.86vw;
    justify-content: space-between;
  }
  
  .gear-grid .detail-card {
    width: 92.152vw;
    height: 113.28vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: var(--hnp-white);
    border-radius: 6.076vw;
    box-shadow: 4.69vw 4.3vw 13.67vw -0.59vw #00000014;
  }
  
  .gear-photo {
    width: 92.152vw;
    height: 82.28vw;
    position: relative;
    background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
    border-top-left-radius: 6.076vw;
    border-top-right-radius: 6.076vw;
  }
  
  .gear-photo .loca {
    position: absolute;
    top: 5vw;
    left: 5vw;
    width: 20vw;
    height: 10.1266vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.98vw;
    border-radius: 6vw;
    background: #FFFFFF61;
    color: var(--hnp-white);
  }

.related-grid .detail-card .gear-photo .loca {
    position: absolute;
    top: 2vw;
    left: 2vw;
    width: 10vw;
    height: 5.1266vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45vw;
    border-radius: 6vw;
    background: #FFFFFF61;
    color: var(--hnp-white);
}
  .gear-photo .loca p {
    font-size: 4.0506vw;
    line-height: 6.076vw;
}

.related-grid .detail-card .gear-photo .loca p {
    font-size: 1.8334vw;
    line-height: 2.14584vw;
}
  .gear-photo img {
    width: 89.84vw;
    height: 80.08vw;
    object-fit: contain;
    border-top-left-radius: 4.88vw;
    border-top-right-radius: 4.88vw;
  }
  
  .gear-detail {
    width: 82vw;
    height: 30.47vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  
  .gear-detail .des {
    width: 100%;
    height: 13.67vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

.related-grid .detail-card .gear-detail .des {
    width: 100%;
    height: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
  
  .gear-detail .des h5 {
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.076vw;
  }

.related-grid .detail-card .gear-detail .des h5 {
    margin: 0;
    font-size: 2.8vw;
    line-height: 4vw;
}
  
  .gear-detail .des p {
    margin: 0;
    font-size: 3.544vw;
    line-height: 5.063vw;
    font-weight: 300;
    color: #AA8265;
  }

.related-grid .detail-card .gear-detail .des p {
    margin: 0;
    font-size: 2vw;
    line-height: 2vw;
    font-weight: 300;
    color: #AA8265;
}
  
  .gear-detail .deta {
    height: 9.38vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

.related-grid .detail-card .gear-detail .deta {
    height: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
  
  .gear-detail .deta .prices {
    width: 35.16vw;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

.related-grid .detail-card .gear-detail .deta .prices {
    width: 35.16vw;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
  
  .deta .prices .prices-h7 {
    font-size: 4.0506vw;
    line-height: 6.076vw;
  }

.related-grid .detail-card .gear-detail .deta .prices .prices-h7 {
    font-size: 3vw;
    line-height: 4vw;
}
  
  .deta .prices .prices-h8 {
    font-size: 3.125vw;
    line-height: 4.69vw;
    color: var(--hnp-dark-brown);
    text-decoration: line-through;
  }

.related-grid .detail-card .gear-detail .deta .prices .prices-h8 {
    font-size: 2vw;
    line-height: 3vw;
    color: var(--hnp-dark-brown);
    text-decoration: line-through;
}
  
  .deta .book-btn {
    width: 29.3vw;
    height: 10.1266vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 7.42vw;
    background-color: var(--hnp-dark-brown);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .deta .book-btn p {
    font-size: 3.91vw;
    line-height: 5.86vw;
    color: var(--hnp-white);
  }
  
  .flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
  }
  
  .flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 6.076vw;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front,
  .flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 6.076vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .flip-card-front {
    background-color: var(--hnp-white);
    color: #000000;
    box-shadow: 4.69vw 4.3vw 13.67vw -0.59vw #00000014; /* 24px 22px 70px -3px */
  }
  
  .flip-card-back {
    background: linear-gradient(135deg, #6c3015 66.19%, rgba(34, 34, 34, 0) 100%);
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
    background: linear-gradient(180deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  }
  
  .product-back-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .product-back-content h4 {
    font-size: 4.69vw;
    line-height: 6.64vw;
    margin-top: 5.86vw;
  }
  
  .product-back-image {
    width: 100%;
    height: 113.28vw;
    border-radius: 3.125vw;
    overflow: hidden;
  }
  
  .product-back-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3.125vw;
  }
  
  .product-back-actions {
    width: 78.32vw;
    height: 8.98vw;
    position: absolute;
    bottom: 5.86vw;
    left: 5.86vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    justify-self: center;
  }
  
  .product-back-actions .product-back-price {
    text-shadow: -0.39vw 0.39vw 0px rgb(34 34 34);
  }
  
  .product-back-actions .book-btn {
    width: 29.3vw;
    height: 9.38vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 7.42vw;
    background-color: var(--hnp-dark-brown);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .shop-content-main .pagination {
    width: 54.69vw;
    height: 7.81vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
          .product-detail-container {
        padding: 14.1176vw 0 0 0;
        width: 92.152vw;
        justify-self: center;
    }
    .product-detail {
  font-size: 4.0506vw;
  line-height: 6.076vw;
}
    .product-breadcrumbs {
        margin-bottom: 2vw;
        font-size: 3vw;
        line-height: 4vw;
        color: #666;
    }
    
    .product-breadcrumbs a {
        color: #6c3015;
        text-decoration: none;
    }
    
    .product-breadcrumbs a:hover {
        text-decoration: underline;
    }
    
    .product-main {
        display: flex;
        gap: 4vw;
        margin-bottom: 3vw;
        flex-direction: column;
    }
    

    
    /* Product Gallery */
    .product-gallery {
        position: relative;
        top: 1vw;
    }
    
    .main-image {
        width: 100%;
        height: 70vw;
        border-radius: 0.78125vw;
        margin-bottom: 1vw;
        background: var(--hnp-light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    
    .main-image img:hover {
        transform: scale(1.08);
    }
    
    .gallery-thumbnails {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1vw;
    }
    
    .gallery-thumbnail {
        width: 100%;
        height: 20vw;
        border-radius: 0.5vw;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s;
        background: #f8f9fa;
    }
    
    .gallery-thumbnail.active {
        border-color: #6c3015;
    }
    
    .gallery-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Product Info */
    .product-info h1 {
        font-size: 28px;
        margin-bottom: 10px;
        color: #333;
    }
    
    .product-meta {
        display: flex;
        align-items: center;
        gap: 1vw;
        margin: 4vw 0;
        font-size: 4.0506vw;
        line-height: 6.076vw;
        color: #666;
    }
    
    .product-category {
        background: #f0f0f0;
        padding: 0.5vw 1vw;
        border-radius: 1vw;
    }
    
    .product-sku {
        color: #999;
    }
    
    .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .stars {
        color: #f39c12;
        font-size: 16px;
    }
    
    .review-count {
        color: #666;
        font-size: 14px;
        margin-left: 5px;
    }
    
    .product-price {
        margin-bottom: 4vw;
    }
    
    .current-price {
        font-size: 4.0506vw;
        line-height: 6.076vw;
        font-weight: 600;
        color: var(--hnp-dark);
        margin-right: 1vw;
    }
    
    .original-price {
        font-size: 3vw;
        line-height: 5vw;
        color: var(--hnp-gradient-black);
        text-decoration: line-through;
    }
    
    .discount-badge {
        background: var(--hnp-orange);
        color: white;
        padding: 0.5vw 2vw;
        border-radius: 1.5vw;
        font-size: 4.0506vw;
        line-height: 6.076vw;
        font-weight: 600;
        margin-left: 1vw;
    }
    
    .product-description {
        margin-bottom: 4vw;
        line-height: 1.6;
        color: #555;
    }
    
    .product-stock {
        display: flex;
        align-items: center;
        gap: 1vw;
        margin-bottom: 4vw;
        border-radius: 0.5vw;
        width: max-content;
    }
    
    .stock-status {
        font-weight: 600;
    }
    
    .stock-status.in-stock {
        color: var(--hnp-dark-brown);
    }
    
    .stock-status.low-stock {
        color: #f39c12;
    }
    
    .stock-status.out-of-stock {
        color: #e74c3c;
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 1vw;
        margin-bottom: 4vw;
    }
    
    .quantity-btn {
        width: 10.1266vw;
        height: 10.1266vw;
        border: 1px solid #ddd;
        background: white;
        border-radius: 1.5vw;
        font-size: 4.0506vw;
        line-height: 6.076vw;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'PoppinsRegular';
    }
    
    .quantity-input {
        width: 18vw;
        height: 10.1266vw;
        border: 1px solid #ddd;
        border-radius: 1.5vw;
        text-align: center;
        font-family: 'PoppinsRegular';
        font-size: 4.0506vw;
        line-height: 6.076vw;
    }
    
    .product-actions {
        display: flex;
        gap: 3vw;
        margin-bottom: 6vw;
        justify-content: flex-start;
    }
    
    .add-to-cart-btn, .buy-now-btn {
        height: 10.1266vw;
        padding: 0 3vw;
        border: none;
        border-radius: 1.5vw;
        font-size: 4.0506vw;
        line-height: 6.076vw;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1vw;
        transition: all 0.3s;
        box-sizing: border-box;
    }
    
    .add-to-cart-btn {
        background: var(--hnp-dark-brown);
        color: white;
    }
    
    .add-to-cart-btn:hover {
        transform: scale(1.04);
    }
    
    .buy-now-btn {
        background: var(--hnp-orange);
        color: white;
    }
    
    .buy-now-btn:hover {
        transform: scale(1.04);
    }
    
    .btn-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .product-features {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    
    .features-grid {
        display: flex;
        gap: 1vw;
        margin-top: 1vw;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .feature-item i {
        color: #6c3015;
        font-size: 18px;
    }
    
    /* Tabs Section */
    .product-tabs {
        margin: 3vw 0;
    }
    
    .tabs-header {
        display: flex;
        border-bottom: 1px solid #ddd;
        margin-bottom: 3vw;
    }
    
    .tab-btn {
        padding: 1.5vw 3vw;
        background: none;
        border: none;
        border-bottom: 0.1vw solid transparent;
        font-size: 4.0506vw;
        line-height: 6.076vw;
        font-weight: 600;
        color: var(--hnp-gradient-white);
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .tab-btn.active {
        color: #6c3015;
        border-bottom-color: #6c3015;
    }
    
    .tab-content {
        display: none;
        animation: fadeIn 0.3s ease;
    }
    
    .tab-content.active {
        display: block;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .specifications-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .specifications-table tr {
        border-bottom: 1px solid #eee;
    }
    
    .specifications-table td {
        padding: 12px 15px;
    }
    
    .specifications-table td:first-child {
        font-weight: 600;
        width: 30%;
        color: #333;
    }
    
    .specifications-table td:last-child {
        color: #666;
    }
    
    /* Reviews */
    .reviews-section {
        margin-top: 30px;
    }
    
    .review-item {
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 20px;
        background: white;
    }
    
    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .reviewer-name {
        font-weight: 600;
        color: #333;
    }
    
    .review-date {
        color: #999;
        font-size: 14px;
    }
    
    .review-title {
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .review-text {
        color: #555;
        line-height: 1.6;
    }
    
    /* Related Products */
    .related-products {
        margin-top: 4vw;
    }
    
    .section-title {
        font-size: 4.0506vw;
        line-height: 10.076vw;
        color: var(--hnp-black);
        text-align: center;
        margin: 0;
    }
    
    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(45vw, 0fr));
        gap: 2vw;
        padding: 0 0 2vw 0;
    }
    .related-grid .detail-card {
      width: 45vw;
      box-shadow: 0.2604vw 1.0417vw 2.6042vw 0px #0000000D;
      border-radius: 1.302084vw;
      height: 50vw;
    }
  .related-grid .detail-card:hover {
    transform: scale3d(1.06, 1.04, 1.06);
}
    .related-grid .detail-card .gear-photo {
    width: 100%;
    height: 30vw;
    border-radius: unset;
    border-top-left-radius: 1.302084vw;
    border-top-right-radius: 1.302084vw;
}
.related-grid .detail-card .gear-photo img {
  width: 100%;
  height: 30vw;
}
    .related-grid .detail-card .gear-detail {
    width: 100%;
    height: 20vw;
    padding: 0 0 0.5vw 0.8vw;
    box-sizing: border-box;
}
  /* ===== FLIGHT BOOKING SECTION ===== */
  .flight-booking-section {
    height: max-content;
    padding: 7.81vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .flight-booking-container {
    width: 89.84vw;
  }
  
  .airline-logos {
    width: 89.84vw;
    padding: 3.91vw 0;
    display: flex;
    justify-content: center;
    gap: 5.86vw;
    flex-wrap: nowrap;
    justify-self: center;
  }
  
  .airline-logo {
    height: 6.72vw;
  }
  .package-details-grid {
    display: flex;
    color: var(--hnp-black);
    gap: 2vw;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2vw 0;
    flex-direction: column;
}

.package-detail-item {
    font-size: 4.0506vw;
    line-height: 6.076vw;
    display: flex;
    gap: 2vw;
    align-items: center;
}
  .booking-steps {
    height: 36vw;
    display: flex;
    justify-content: center;
    gap: 3.91vw;
    margin-bottom: 7.81vw;
    flex-wrap: nowrap;
    margin-left: 0vw;
  }
  
  .booking-step {
    min-width: 100%;
    height: 24vw;
    flex: 1;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

.booking-step.active {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4vw;
}
  
  .step-number {
    width: 9.77vw;
    height: 9.77vw;
    font-size: 4.69vw;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hnp-dark-brown);
    color: white;
    font-family: 'OswaldRegular';
  }
  
  .booking-form-container {
    display: flex;
    flex-direction: column;
    gap: 3.91vw;
  }
  .service-type-selector {
    display: flex;
    gap: 1vw;
    margin: 4vw 0;
}

.service-type-btn {
    min-width: 32vw;
    box-sizing: border-box;
    padding: 1vw;
    border-radius: 2vw;
    border: 0.2vw solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-btn {
    font-size: 4.0506vw;
    line-height: 6.076vw;
    font-weight: 400;
    font-family: 'PoppinsRegular';
}

.service-type-icon {
    font-size: 8vw;
}
  #bookingContent .form-section {
    display: none;
}

#bookingContent .form-section.active {
    display: flex;
}
  .form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3.91vw;
    width: 100%;
  }


  
  .form-section-header {
    display: flex;
    align-items: center;
    gap: 2.93vw;
  }
  
  .section-icon {
    width: 7.81vw;
    height: 7.81vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hnp-dark-brown);
    color: white;
  }
  
  .trip-type-selector {
    display: flex;
    gap: 1.95vw;
    flex-direction: column;
  }
  
  .trip-type-btn {
    flex: 1;
    padding: 2.93vw;
    font-size: 2.73vw;
    font-weight: 500;
    border: 0.39vw solid #f6f6f6;
    border-radius: 1.56vw;
    background: #f6f6f6;
    font-family: 'PoppinsRegular';
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
  }
  
  .trip-type-btn.active {
    border-color: var(--hnp-dark-brown);
    background: var(--hnp-dark-brown);
    color: white;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.91vw;
  }
  
  .form-group {
    width: 89.84vw;
    display: flex;
    flex-direction: column;
    gap: 1.95vw;
  }
  
  .form-group label {
    display: block;
    font-size: 3.52vw;
    line-height: 5.47vw;
    font-weight: 400;
    font-family: 'PoppinsRegular';
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 1.95vw;
  }
  
  .form-control {
    width: 100%;
    height: 19.53vw;
    padding-left: 5.86vw;
    padding-right: 5.86vw;
    font-size: 4.3vw;
    line-height: 6.25vw;
    border: none;
    outline: none;
    border-radius: 2.93vw;
    background: rgb(246, 246, 246);
    font-family: PoppinsRegular;
    color: #717182;
    transition: 0.3s ease-in-out;
    box-sizing: border-box;
  }
  .choices {
    gap: 1vw 2vw;
}

.choice {
    width: 100%;
    gap: 2vw;
    padding: 2vw 3vw;
    border-radius: 1vw;
}

.opt {
    width: 5vw;
    height: 5vw;
    border-radius: 0.5vw;
}
  .popular-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.95vw; /* 10px */
  }
  
  .route-tag {
    padding: 1.56vw 2.93vw;
    font-size: 2.34vw;
    border-radius: 1.95vw;
    background: #f6f6f6;
    font-family: 'PoppinsRegular';
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .swap-btn {
    position: absolute;
    right: 1.95vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.125vw;
    background: none;
    border: none;
    color: var(--hnp-dark-brown);
    cursor: pointer;
  }
  
  .passenger-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.93vw;
  }
  
  .passenger-counter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.91vw;
    padding: 0;
    border-radius: 2.93vw;
    background: rgb(246, 246, 246);
    box-sizing: border-box;
    height: 19.53vw;
  }
  
  .counter-btn {
    width: 8vw;
    height: 8vw;
    font-size: 3.52vw;
    border: 0.2vw solid #d9d9d9;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .counter-btn.plus {
    border: none;
    background: var(--hnp-dark-brown);
    color: var(--hnp-white);
  }
  
  .form-control#special_requests {
    height: 20vw;
    padding: 3.91vw;
    font-size: 3.125vw;
    line-height: 4.69vw;
    border: none;
    border-radius: 2.93vw;
    background: #F6F6F6;
    font-family: 'PoppinsRegular';
  }
  
  .info-note {
    width: 100%;
    height: max-content;
    padding: 2vw;
    font-size: 3.125vw;
    line-height: 4.69vw;
    color: #717182;
    border-radius: 2.93vw;
    background: rgb(246, 246, 246);
    font-family: 'PoppinsRegular';
  }

.quick-facts {
    width: 90vw;
}
  
  .info-note i {
    margin-right: 1.56vw;
    color: var(--hnp-orange);
  }
  
  .form-actions {
    padding-bottom: 5.86vw;
    border-bottom: 0.39vw solid #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.93vw;
  }
  
  .btn-can,
  .btn-sub {
    padding: 0.52vw;
    font-size: 3.52vw;
    line-height: 5.47vw;
    border-radius: 1.56vw;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'PoppinsRegular';
  }
  
  .btn-can {
    height: 14vw;
    padding: 0 4vw;
    justify-content: center;
    gap: 3.91vw;
    border: none;
  }
  
  .btn-sub {
    height: 14vw;
    padding: 0 2vw;
    justify-content: center;
    gap: 3.91vw;
    border: none;
  }
  
  /* ===== GALLERY SECTION ===== */
  .gallery-section {
    width: 100%;
    overflow: hidden;
  }
  
  .gallery-content {
    max-width: 100%;
  }
  
  .gallery-wrapper {
    width: 100%;
    height: 33.2vw;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
  }
  
  .gallery-track {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    gap: 2.93vw;
    flex-shrink: 0;
  }
  
  .gallery-slide {
    flex: 0 0 27.34vw;
    height: 25.39vw;
    border-radius: 1.56vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.59vw 1.95vw rgba(0, 0, 0, 0.2);
    opacity: 0.7;
    transition: all 0.4s ease;
  }
  
  .gallery-slide.active {
    flex: 0 0 40.63vw;
    height: 25.39vw;
    opacity: 1;
    box-shadow: 0 1.17vw 2.93vw rgba(0, 0, 0, 0.4); /* 0 6px 15px */
  }
  
  .gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* ===== ITINERARY SECTION ===== */
  .itinerary-section {
    width: 89.84vw;
    display: flex;
    flex-direction: column;
    justify-self: center;
  }
  
  .itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.91vw;
  }
  
  .itinerary-title {
    margin: 0;
    font-size: 3.52vw;
    line-height: 5.08vw;
    font-weight: bold;
  }
  
  .itinerary-more {
    font-size: 2.73vw;
    font-weight: 500;
    color: var(--hnp-dark-brown);
    text-decoration: none;
    border-bottom: 0.2vw solid var(--hnp-dark-brown);
  }
  
  .itinerary-cards {
    display: flex;
    gap: 3.125vw;
    overflow-x: auto;
    padding-bottom: 1.56vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .itinerary-cards::-webkit-scrollbar {
    display: none;
  }
  
  .itinerary-card {
    width: 54.69vw;
    height: 50.78vw;
    flex-shrink: 0;
    position: relative;
    border-radius: 3.125vw;
    overflow: hidden;
    background: #f6f6f6;
  }
  
  .itinerary-img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 3.125vw;
  }
  
  .itinerary-card .gradient {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    border-bottom-left-radius: 3.125vw;
    border-bottom-right-radius: 3.125vw;
    background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
    transition: height 0.3s ease;
  }
  
  .itinerary-card:hover .gradient {
    height: 65%;
  }
  
  .itinerary-content {
    width: 100%;
    position: absolute;
    bottom: 3.125vw;
    display: flex;
    flex-direction: column;
    gap: 1.56vw;
    color: #fff;
  }
  
  .itinerary-name {
    margin-left: 3.125vw;
    font-size: 3.52vw;
    line-height: 4.69vw;
    font-weight: 400;
  }
  
  .itinerary-meta {
    margin-left: 3.125vw;
    display: flex;
    align-items: center;
    gap: 0.78vw;
  }
  
  .itinerary-meta .icon {
    width: 2.34vw;
    height: 2.34vw;
  }
  
  .itinerary-meta p {
    font-size: 2.34vw;
    line-height: 3.125vw;
    font-weight: 400;
  }
  
  .itinerary-desc {
    width: 85%;
    margin-left: 3.125vw;
    font-size: 2.34vw;
    line-height: 3.125vw;
    color: #d9d9d9;
    display: none;
    transition: display 0.3s ease;
  }
  
  .itinerary-card:hover .itinerary-desc {
    display: block;
  }
  
  .itinerary-btn {
    width: 7.03vw;
    height: 7.03vw;
    position: absolute;
    bottom: 1.56vw;
    right: 3.125vw;
    border-radius: 50%;
    background: var(--hnp-dark-brown);
    color: var(--hnp-white);
    font-size: 6.25vw;
    line-height: 6.25vw;
    display: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-family: monospace, 'PoppinsRegular';
    transition: display 0.3s ease;
  }
  
  .itinerary-card:hover .itinerary-btn {
    display: flex;
  }
  
  .itinerary-btn p {
    font-size: 7.81vw;
    line-height: 4.69vw;
  }
  
  /* ===== PACKAGE INCLUSIONS ===== */
  .package-inclusions {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .inclusions-wrapper {
    width: 89.84vw;
    display: flex;
    flex-direction: column;
    gap: 3.91vw;
    border-radius: 1.56vw;
  }
  
  .inclusion-box {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .inclusion-title {
    margin: 0 0 2.34vw 0;
    font-size: 3.52vw;
    line-height: 5.08vw;
    font-weight: bold;
  }
  
  .inclusion-list {
    padding-left: 3.91vw;
    font-size: 2.73vw;
    line-height: 3.91vw;
    font-family: 'PoppinsRegular';
    list-style-type: disc;
  }
  
  .inclusion-list li {
    margin-bottom: 1.56vw;
  }
  
  /* ===== CONTACT INFO SECTION ===== */
  .contact-info-section {
    height: max-content;
    padding: 12.1519vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--hnp-white);
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .contact-info-content {
    width: 92.1519vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8.1013vw;
  }
  
  .contact-h4 {
    width: 100%;
    margin-top: 0;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-family: 'OswaldRegular';
    font-weight: 400;
  }
  
  .contact-phone,
  .contact-email,
  .contact-address {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
  }
  
  .contact-phone {
    height: max-content;
    gap: 4.0506vw;
  }
  
  .contact-email {
    height: max-content;
    gap: 4.0506vw;
  }
  
  .contact-address {
  height: max-content;
  gap: 4.0506vw;
  }
  
  .contact-phone h6,
  .contact-email h6,
  .contact-address h6 {
    margin: 0;
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    letter-spacing: 1.0127vw;
    color: var(--hnp-dark-brown);
  }
  
  .contact-phone p,
  .contact-email p,
  .contact-address p {
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .contact-cta-btn {
    width: 45.0633vw;
    height: 15.1899vw;
    flex-shrink: 0;
    border-radius: 2.5316vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hnp-dark-brown);
  }
  
  .contact-cta-btn p {
    font-size: 4.557vw;
    line-height: 7.0886vw;
    color: var(--hnp-white);
  }
  
  .contact-location-map {
    width: 92.1519vw;
    height: 101.2658vw;
    margin-bottom: 0;
    border-radius: 6.3291vw;
  }
  
  .contact-location-map iframe {
    width: 92.1519vw;
    height: 101.2658vw;
    border-radius: 6.3291vw;
  }
  
  /* ===== DESCRIPTION SECTION ===== */
  .description-section {
    padding: 5.86vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .description-content {
    width: 89.84vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 3.91vw;
  }
  
  .description-content p {
    width: 100%;
    font-size: 3.52vw;
    line-height: 4.69vw;
  }
  
  /* ===== ACTIVITIES SECTION ===== */
  .activities-section {
    height: 148.44vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .activities-content {
    width: 89.84vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .activities-content h4 {
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .activities-content .activities {
    width: 89.84vw;
    height: 128.91vw;
    display: flex;
    gap: 4.88vw;
    align-items: center;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  
  .activity-card {
    width: 89.84vw;
    height: 113.28vw;
    flex-shrink: 0;
    position: relative;
    border-radius: 4.88vw;
    background: #d9d9d9;
    scroll-snap-align: start;
  }
  
  .activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4.88vw;
  }
  
  .activity-card .gradient {
    width: 100%;
    height: 30%;
    position: absolute;
    bottom: 0;
    border-bottom-left-radius: 4.88vw;
    border-bottom-right-radius: 4.88vw;
    background: linear-gradient(0deg, #222222 66.19%, rgba(34, 34, 34, 0) 100%);
  }
  
  .activity-card .activity-name {
    position: absolute;
    bottom: 5.86vw;
    left: 5.86vw;
  }
  
  .activity-name p {
    font-size: 3.91vw;
    line-height: 5.86vw;
    color: var(--hnp-white);
  }
  
  .activities-content .activities-pagination {
    width: 32.42vw;
    height: 8.2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .activities-pagination .pag-arrow {
    width: 7.81vw;
    height: 7.81vw;
    font-size: 5.86vw;
    line-height: 7.81vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'PoppinsRegular';
    font-weight: bold;
  }
  
  .pag-arrow.prev {
    border: 0.2vw solid gray;
    color: #000000;
    opacity: 65%;
  }
  
  .pag-arrow.next {
    background-color: var(--hnp-dark-brown);
    color: var(--hnp-white);
  }
  
  .activities-pagination .dot {
    width: 1.95vw;
    height: 1.95vw;
    border-radius: 50%;
    background-color: #d9d9d9;
  }
  
  .dot.active {
    background-color: var(--hnp-dark-brown);
  }
  
  /* ===== BLOGS SECTION ===== */
  .blogs-section {
    height: max-content;
    padding: 7.81vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .blogs-content {
    width: 92.1519vw;
    display: flex;
    flex-direction: column-reverse;
    gap: 5.86vw;
    position: relative;
  }
  
  .blogs-side {
    width: 100%;
    height: 316.41vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: static;
  }
  
  .blogs-side .search-blogs {
    width: 89.84vw;
    height: 10.1266vw;
    position: absolute;
    top: 0;
    font-size: 4.69vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--hnp-gradient-black);
  }
  
  .search-blogs input {
    width: 82.03vw;
    border: none;
    outline: none;
    font-size: 3.52vw;
    line-height: 5.86vw;
  }
  
  .search-blogs button.search-icon-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 6.0759vw;
    line-height: 6.0759vw;
  }
  
  h4 {
    font-size: 4.0506vw;
    line-height: 6.076vw;
  }
  
  .tag-blogs {
    position: absolute;
    top: 9.77vw;
    flex-direction: initial;
  }
  
  .tag-but-cont {
    width: 88.84vw;
    height: 13.67vw;
    margin-top: 1.95vw;
    display: flex;
    justify-content: flex-start;
    gap: 2.34vw;
    overflow-x: auto;
    scrollbar-width: none;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  .btn-tag {
    height: 10.94vw;
    padding: 0 6.25vw;
    margin: 0;
    flex-shrink: 0;
    border-radius: 1.56vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--hnp-dark);
    background-color: var(--hnp-light-gray);
  }
  
  .btn-tag.active {
    color: var(--hnp-white);
    background-color: var(--hnp-dark-brown);
  }
  
  .btn-tag p {
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .popular-line {
    width: 100%;
    height: 0.2vw;
    background-color: #d9d9d9;
  }
  
  .popular-blogs {
    height: 305.47vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5.86vw;
  }
  
  .popular-blog {
    width: 89.84vw;
    height: 70.31vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .popular-blog img {
    width: 100%;
    height: 37.11vw;
    border-radius: 4.88vw;
    object-fit: cover;
    background-color: #d9d9d9;
  }
  
  .popular-details {
    display: flex;
    flex-direction: column;
    gap: 3.125vw;
  }
  
  p.details-title {
    font-size: 3.52vw;
    line-height: 4.69vw;
    color: var(--hnp-dark-brown);
  }
  
  p.details-sub {
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  p.details-date {
    font-size: 3.125vw;
    line-height: 4.69vw;
  }
  
  .blogs-main {
    width: 92.1519vw;
    margin-top: 35.25vw;
    display: flex;
    flex-direction: column;
    gap: 5.86vw;
  }
  
  .blogs-main h4 {
    width: 100%;
  }
  
  .blogs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 7.42vw;
  }
  
  .blog-main {
    width: 92.1519vw;
    display: flex;
    flex-direction: column;
    gap: 5.86vw;
  }
  
  .blog-main img {
    width: 100%;
    height: 116.8vw;
    border-radius: 4.88vw;
    object-fit: cover;
    background-color: #d9d9d9;
  }
  
  .blogs-details {
    display: flex;
    flex-direction: column;
    gap: 1.95vw;
  }
  
  .blogs-details h5 {
    font-size: 4.49vw;
    line-height: 6.25vw;
  }
  
  .blogs-details .blog-author__avatar {
    margin: 0;
    width: 14.45vw;
    height: 14.45vw;
    border-radius: 50%;
    background-color: #d9d9d9;
  }
  
  .blogs-details .blog-author__name {
    font-size: 3.91vw;
    line-height: 5.47vw;
    color: var(--hnp-dark);
    font-weight: 400;
  }
  
  .blogs-details .blog-author__date {
    font-size: 3.52vw;
    line-height: 5.08vw;
    color: var(--hnp-dark);
    font-weight: 400;
  }
  
  .blog-mini {
    width: 92.1519vw;
    height: 74.22vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .blog-mini img {
    width: 100%;
    height: 49.61vw;
    border-radius: 4.88vw;
    object-fit: cover;
    background-color: #d9d9d9;
  }
  
  .blogs-content .pagination {
    width: 100%;
    height: 8.1266vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.86vw;
  }
  
  /* ===== ARTICLES SECTION ===== */
  .articles-section {
    height: max-content;
    padding: 3.91vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .articles-content {
    width: 89.84vw;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 5.86vw;
    position: relative;
  }
  
  .articles-main {
    width: 89.84vw;
    margin-top: 33.2vw;
    display: flex;
    flex-direction: column;
    gap: 5.86vw;
  }
  
  .articles-main p {
    width: 100%;
    font-size: 3.91vw;
    line-height: 5.86vw;
  }
  
  .articles-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.91vw;
  }
  
  .article {
    width: 89.84vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3.91vw;
  }
  
  .article-title {
    display: flex;
  }
  
  .article-title p {
    width: fit-content;
    font-size: 5.47vw;
    line-height: 7.03vw;
    color: var(--hnp-dark-brown);
  }
  
  .article-title h5 {
    font-size: 5.47vw;
    line-height: 7.03vw;
  }
  
  .article img {
    width: 100%;
    height: 61.72vw;
    border-radius: 4.88vw;
    background-color: #d9d9d9;
  }
  
  .article-details {
    display: flex;
    flex-direction: column;
    gap: 1.95vw;
  }
  
  .article-quote {
    width: 89.84vw;
    height: 50.78vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 5.86vw;
    border-radius: 4.88vw;
    background: var(--hnp-light-gray);
  }
  
  .article-quote h4 {
    width: 76.17vw;
    font-size: 5.08vw;
    line-height: 6.64vw;
  }
  
  .quote-icon {
    width: 6.64vw;
    margin-left: -66.41vw;
  }
  
  .article-player {
    width: 100%;
    height: 7.81vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .article-play {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .article-play p {
    width: fit-content;
  }
  
  .aticle-play.next {
    width: 19.53vw;
  }
  
  .aticle-play.prev {
    width: 25.39vw;
  }
  
  /* ===== BLOGA ===== */
  .bloga {
    width: 89.84vw;
    height: 20.12vw;
    margin-top: 13.67vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.91vw;
    border-radius: 4.88vw;
    background-color: #ffffff;
    box-shadow: 0.98vw 3.91vw 9.77vw 0px #0000001A;
  }
  
  .bloga-avatar {
    width: 12.5vw;
    height: 12.5vw;
    border-radius: 50%;
    background-color: #d9d9d9;
  }
  
  .bloga-details {
    width: 66.41vw;
    font-size: 3.52vw;
    line-height: 4.69vw;
    color: var(--hnp-dark);
    text-align: start;
  }
  
  /* ===== DESTINATION COMPONENT ===== */
  .destination {
    height: max-content;
    padding: 16vw 0;
    overflow: hidden;
    z-index: 0;
  }
  
  .destination-content {
    width: 92.1519vw;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
    justify-self: center;
    height: max-content;
    justify-content: flex-start;
    gap: 12.1519vw;
  }
  
  .destination-content .btn-outline-primary {
    height: 14.6835vw;
    width: 63.7975vw;
    max-width: 63.7975vw;
    border-radius: 2.5316vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .destination-content .btn-outline-primary p {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
  }
  
  .destination-content-p {
    width: 100%;
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    letter-spacing: 1.0127vw;
    height: max-content;
  }
  
  .destination-content-h2 {
    font-size: 20.2532vw;
    line-height: 30.3797vw;
    font-family: "OswaldRegular";
    font-weight: 400;
    letter-spacing: 0;
  }
  
  .des-but-cont {
    width: 100%;
    height: 15.1899vw;
    margin-top: 11.72vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1.95vw;
  }
  
  .des-but-cont .btn-sm {
    height: max-content;
    max-height: 12.152vw;
    padding: 4vw 7.25vw;
    border-radius: 2.54vw;
  }
  
  .services .des-but-cont .btn-sm {
    padding: 3.125vw 8.2vw;
  }
  
  .des-but-cont .btn-sm p {
    font-size: 4.3vw;
    line-height: 5.86vw;
    font-family: 'PoppinsMedium';
  }
  
  .destinations .des-but-cont .btn-sm p {
    width: max-content;
  }
  
  .destination-items-container {
    width: 92.1519vw;
    display: flex;
    flex-direction: column;
    row-gap: 6.0759vw;
  }
  
  .destination-item {
    width: 91.41vw;
    height: 128.1013vw;
    position: relative;
    border-radius: 6.3291vw;
    padding: 0;
    margin: 0;
    box-shadow: 1.2658vw 5.0633vw 12.6582vw 0px rgba(0, 0, 0, 0.05);
  }

.destination-item:hover {
    height: 128.1013vw;
    width: 91.41vw;
    background-color: var(--hnp-white);
    box-shadow: 1.2658vw 5.0633vw 12.6582vw 0px rgba(0, 0, 0, 0.05);
    padding: 0;
    display: block;
    flex-direction: column;
    align-items: start;
}
  
  .destination-item.active {
    width: 91.41vw;
    height: 128.52vw;
    position: relative;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  
  .destination-item img,
  .destination-item.active img {
    width: 100%;
    height: 100%;
    border-radius: 6.3291vw;
  }

.destination-item:hover img {
    width: 100%;
    height: 100%;
}
  
  .destination-item-cap {
    width: 80vw;
    max-width: 80vw;
    height: 18.7342vw;
    position: absolute;
    bottom: 6.0759vw;
    left: 6.0759vw;
    margin: 0;
    padding: 0;
    z-index: 8;
    display: flex;
  }

.destination-item:hover .destination-item-cap {
    width: 80vw;
    max-width: 80vw;
}

.destination-item-cap .btn-round-primary {
    width: 18.7342vw;
    height: 18.7342vw;
}

.destination-item:hover .btn-round-primary {
    width: 18.7342vw;
    height: 18.7342vw;
}

.btn-round-primary i {
    font-size: 6.3291vw;
    line-height: 6.3291vw;
}
  
  .destination-item.active .destination-item-cap {
    width: 85.16vw;
    height: 35.16vw;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 3.91vw;
    z-index: 8;
    display: flex;
    align-items: center;
  }
  
  .destination-name {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
    color: var(--hnp-white);
  }
  
  .destination-item.active .destination-item-cap .btn-round-primary {
    width: 18.36vw;
    height: 18.36vw;
    margin-right: 3.91vw;
    margin-top: 3.52vw
  }
  
  .destination-packages {
    margin-left: 0;
    margin-top: 6.0759vw;
    font-size: 4.69vw;
    line-height: 6.25vw;
    color: var(--hnp-white);
  }
  
  .destination-packages i {
    color: var(--hnp-white);
    font-size: 5.0633vw;
    line-height: 5.0633vw;
    width: 5.0633vw;
    height: 5.0633vw;
  }
  
  /* ===== FEATURES SECTION ===== */
  .features {
    width: 92.1519vw;
    height: 46.0759vw;
    max-height: none;
    flex-direction: column;
    gap: 6.0759vw;
  }
  
  .feature-item {
    width: 92.1519vw;
    height: 50.78vw;
    row-gap: 5vw;
  }
  
  .item-icon {
    width: 17.2152vw;
    height: 17.2152vw;
    box-shadow: 2.8684vw 2.8684vw 7.7468vw 0px rgba(171, 92, 14, 0.43);
  }
  .item-icon .icon {
      width: 12.6582vw;
      height: 12.6582vw;
  }
  .icon-image {
    width: 15.63vw;
    height: 15.63vw;
  }
  
  .item-t {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
  }
  
  .item-p {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    color: #000000bf;
  }
  
  .features-section {
    height: 230.8861vw;
  }

.features-content {
    height: 206.5823vw;
}
  
  /* ===== PACKAGES SECTION ===== */
  .packages-section {
    height: 389.8734vw;
    padding: 4.0506vw 0;
    box-sizing: border-box;
  }
  
  .packages-content {
    width: 94.53vw;
    margin-left: 0;
    top: 50%;
    height: 381.7722vw;
    display: flex;
    gap: 4.0506vw;
    flex-direction: column;
  }
  
  .package-des {
    flex-direction: column;
    row-gap: 4.0506vw;
    margin: 0;
  }
  
  .package-des p {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
  }
  
  .package-des .button {
    width: max-content;
    font-size: 4.056vw;
    line-height: 6.0759vw;
  }
  
  .packages-contain h4 {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-family: 'OswaldRegular';
    font-weight: 400;
    margin-bottom: 4.0506vw;
  }
  
  .packages-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 3.91vw;
  }
  
  .package-item {
    width: 100%;
    height: 130.08vw;
  }
  
  .package-item.active {
    width: 100%;
    height: 126.5823vw;
    margin-right: 0;
  }
  
  .package-item img,
  .package-item.active img {
    height: 126.5823vw;
    border-radius: 6.3291vw;
    object-fit: cover;
  }
  
  .package-item-item-h5 {
    position: absolute;
    top: 102.7848vw;
    left: 6.0759vw;
    width: 49.3671vw;
    font-size: 5.0633vw;
    line-height: 6.3291vw;
    font-weight: 400;
    font-family: "PoppinsRegular";
    height: max-content;
  }
  
  .package-item-no {
    position: absolute;
    top: 102.7848vw;
    right: 6.25vw;
    font-size: 5.0633vw;
    line-height: 7.0886vw;
    color: #FFFFFF99;
    text-align: end;
    font-family: "OswaldRegular";
  }
  
  .package-item-active-item-no {
    display: none;
  }
  
  .package-item-gradient {
    display: none;
  }
  
  .package-item-h3 {
    width: 46.88vw;
    font-size: 9.77vw;
    line-height: 11.72vw;
    font-family: "OswaldRegular";
    font-weight: 400;
  }
  
  .package-item-p {
    font-size: 4.3vw;
    line-height: 5.86vw;
    color: #000000;
    font-weight: 400;
    font-family: "PoppinsRegular";
    opacity: 100%;
  }
  
  .package-item-cta {
    width: max-content;
    padding: 5.08vw 8.2vw;
    border-radius: 3.52vw;
    background-color: var(--hnp-dark-brown);
  }
  
  .package-item-cta-p {
    font-size: 4.3vw;
    line-height: 5.86vw;
    color: var(--hnp-white);
  }
  
  .package-item-des-wrapper {
    margin-top: 7.81vw;
    padding: 0 3.91vw;
    flex-direction: column;
    row-gap: 3.91vw;
  }
  
  .package-item-des-title {
    width: 100%;
  }
  
  .package-item-des {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 5.86vw;
  }
  
  /* ===== PROCESS SECTION ===== */
  .process-section {
    height: 366.5823vw;
  }
  
  .process-content {
    width: 91.41vw;
    gap: 16.2025vw;
  }
  
  .process-content-h2 {
    font-size: 20.2532vw;
    line-height: 30.3797vw;
    font-family: "OswaldRegular";
    font-weight: 400;
  }
  
  .process-content-p {
    width: max-content;
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    letter-spacing: 1.0127vw;
    font-family: "PoppinsRegular";
    font-weight: 400;
  }
  
  .process-wrap {
    height: 295.6962vw;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .process-line {
    display: none;
  }
  
  .process-item-1,
  .process-item-2,
  .process-item-3,
  .process-item-4 {
    width: 100%;
    max-height: unset;
    height: 67.97vw;
    position: relative;
    left: 0;
    top: 0;
  }
  
  .process-icon-margin-72,
  .process-icon-margin-32 {
    margin-left: 0;
  }
  
  .process-item-1 .process-icon-circle, .process-item-2 .process-icon-circle, .process-item-3 .process-icon-circle, .process-item-4 .process-icon-circle {
    width: 41.519vw;
    height: 41.519vw;
    box-shadow: 0.98vw 3.91vw 9.77vw 0px #0000000d;
  }
  
  .process-icon-img {
    width: 20.2532vw; /* 110px */
    margin: 0;
    height: 20.2532vw;
  }
  
  .process-text-container {
    margin-top: 7.81vw;
    row-gap: 2.73vw;
  }
  
  .process-title {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
  }
  
  .process-description {
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    font-weight: 400;
    color: #000000bf;
  }
  
  /* ===== FAQ SECTION ===== */
  .faq-section {
    min-height: 188vw;
    height: unset;
    max-height: unset;
    padding: 8.0759vw 0;
  }
  
  .faq-content {
    width: 92.1519vw;
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    height: max-content;
  }
  
  .faq-left-column {
    width: 100%;
    padding: 4.0506vw;
    display: flex;
    row-gap: 6.0759vw;
    flex-direction: column;
  }
  
  .faq-h3 {
    font-size: 10.1266vw;
    line-height: 12.6582vw;
    font-family: "OswaldRegular";
    font-weight: 400;
  }
  
  .faq-intro-text {
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    color: #000000bf;
  }
  
  .faq-ornament {
    display: none !important;
  }
  
  .faq-right-column {
    width: 100%;
    height: auto;
    row-gap: 6.64vw;
    margin-bottom: 0;
  }
  
  .faq-item {
    padding: 6.0759vw;
    border-radius: 4.88vw;
    background-color: var(--hnp-white);
    box-shadow: 0.98vw 3.91vw 9.77vw 0px #0000000d;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    box-sizing: border-box;
    height: max-content;
  }
  
  .faq-item.expanded {
    padding: 6.0759vw;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    border-radius: 6.3291vw;
    justify-content: space-between;
  }
  
  .faq-question-container {
    width: 61.2658vw;
  }
  .faq-item.expanded .faq-question-container {
    row-gap: 6.0759vw;
  }
  
  .faq-question-container-sm {
    width: 49.22vw;
  }
  
  .faq-question {
    font-size: 4.557vw;
    line-height: 6.0759vw;
    font-weight: 400;
    font-family: 'PoppinsRegular';
  }
  
  .faq-answer {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    color: #000000bf;
  }
  
  .faq-icon {
    width: 12.1519vw;
    height: 12.1519vw;
  }
  
  .faq-item.expanded .faq-icon {
    width: 12.1519vw;
    height: 12.1519vw;
  }
  .faq-item .faq-icon, .faq-item.expanded .faq-icon {
    width: 12.1519vw;
    height: 12.1519vw;
  }
  .faq-icon i {
    font-size: 4.69vw;
    line-height: 4.69vw;
  }
  
  /* ===== TESTIMONIAL SECTION ===== */
  .testimonial-section {
    min-height: 196vw;
    height: max-content;
    box-sizing: border-box;
    padding: 12.1519vw 0;
  }
  
  .testimonial-content {
    width: 100%;
    height: max-content;
    flex-direction: column;
    row-gap: 0;
  }
  
  .testimonial-header {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 4.0506vw;
    width: 100%;
    padding: 0 4.0506vw;
  }
  
  .testimonial-title {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
    font-family: "OswaldRegular";
  }
  
  .testimonial-subtitle {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    color: #000000bf;
  }
  
  .testimonial-ornament {
    display: none !important;
  }
  
  .testimonial-slider {
    width: 100%;
    height: 138vw;
    position: relative;
    top: 0;
    left: 0;
    gap: 4.0759vw;
    padding: 4.0506vw;
    flex-direction: row;
    box-sizing: border-box;
  }
  
  .testimonial-card {
    width: 92.1519vw;
    height: max-content;
    position: relative;
    top: 0;
    left: 0;
    padding: 6.0759vw;
    border-radius: 4.88vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    box-shadow: 0.98vw 3.91vw 9.77vw 0px #0000000d; /* 5px 20px 50px 0px */
    gap: 6.0759vw;
  }
  
  .testimonial-text {
    width: 100%;
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.5823vw;
    color: #000000bf;
  }
  
  .testimonial-author {
    margin: 0;
    width: 100%;
    column-gap: 6.0759vw;
  }
  
  .author-avatar {
    width: 19.53vw;
    height: 19.53vw;
    background-color: #d9d9d9;
  }
  
  .author {
    width: 53.52vw;
  }
  
  .author-name {
    font-size: 4.0506vw;
    line-height: 6.5823vw;
    font-weight: 400;
  }
  
  .author-location {
    font-size: 3.5443vw;
    line-height: 5.0633vw;
  }
  
  .testimonial-arrows {
    width: 100%;
    height: 12.1519vw;
    position: relative;
    bottom: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 7.81vw;
  }
  
  .arrow-container {
    rotate: -90deg;
  }
  
  .arrow-container.prev {
    width: 12.1519vw;
    height: 12.1519vw;
    border: 0.2vw solid #d9d9d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9d9d9;
  }
  
  .arrow-container.next {
    width: 12.1519vw;
    height: 12.1519vw;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hnp-dark-brown);
  }
  
  .arrow-img {
    width: 5.86vw;
  }

  .next .arrow-img {
    filter: brightness(20);
  }
  .testimonial-slider {
        /* overflow-x: auto; */
        /* overflow-y: hidden; */
        /* scroll-snap-type: x mandatory; */
        /* scroll-behavior: smooth; */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .testimonial-slider::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-card {
        scroll-snap-align: center;
        flex: 0 0 auto;
    }
  /* ===== BLOG SECTION ===== */
  .blog-section {
    height: 408vw;
    padding: 12.1519vw 0;
    box-sizing: border-box;
  }
  
  .blog-content {
    width: 92.1519vw;
    height: max-content;
    display: flex;
    row-gap: 4.0506vw;
    flex-direction: column;
  }
  
  .blog-header {
  position: relative;
  }
  
  .blog-section-title {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
    font-family: "OswaldRegular";
    color: var(--hnp-dark);
  }
  
  .blog-subheader {
    top: 0;
    flex-direction: column;
    row-gap: 4.0506vw;
    align-items: flex-start;
    position: relative;
  }
  
  .blog-description {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 400;
    color: #000000bf;
  }
  
  .blog-see-more__text {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
  }
  
  .blog-posts {
    top: 0;
    flex-direction: column;
    row-gap: 3.91vw;
    position: relative;
  }
  
  .blog-featured {
    width: 100%;
    height: max-content;
    padding: 4.0506vw 0;
  }
  
  .blog-card {
    margin-bottom: 0;
  }
  
  .blog-card__image {
    height: 76.962vw;
    border-radius: 6.3291vw;
  }
  
  .blog-card .blog-card__category {
    display: block;
  }
  
  .blog-card .blog-card__title {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 7.0886vw;
    line-height: 8.8608vw;
    color: var(--hnp-black);
    font-weight: 400;
    font-family: "OswaldRegular";
  }
  
  .blog-card .blog-author {
    position: relative;
    top: 0; /* 636px */
    left: 0;
    width: 85.16vw; /* 436px */
    padding: 0; /* 16px */
    column-gap: 4.0506vw;
  }
  
  .blog-author__avatar {
    width: 16.2025vw !important;
    height: 16.2025vw !important;
    margin: 0;
    background-color: #d9d9d9;
  }
  
  .blog-author__name {
    font-size: 4.0506vw; /* 20px */
    line-height: 6.0759vw;
    color: var(--hnp-black);
    font-weight: 400;
  }
  
  .blog-author__date {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    color: var(--hnp-black);
    font-weight: 400;
  }
  
  .blog-sidebar {
    width: 100%;
    gap: 4.0506vw;
  }
  .blog-sidebar__post {
    height: 106.3291vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
  .blog-sidebar__image {
    height: 76.962vw;
    border-radius: 6.3291vw;
  }
  
  .blog-card__category {
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    letter-spacing: 0.3544vw;
  }
  
  .bsp1 .blog-card__title--small {
    width: 78.52vw;
    font-size: 7.42vw;
    line-height: 8.98vw;
    font-weight: 400;
    font-family: "OswaldRegular";
  }
  
  .bsp2 .blog-card__title--small {
    width: 89.84vw;
    font-size: 7.03vw;
    line-height: 8.59vw;
    font-weight: 400;
    font-family: "OswaldRegular";
  }
  
  /* ===== NEWSLETTER SECTION ===== */
  .newsletter-section {
    height: 105.3165vw;
  }

.wilderness-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 4vw 0 0 0;
}

.safari-message-panel {
    background-color: #f6f6f6d9;
    backdrop-filter: blur(5px);
    width: 90vw;
    height: max-content;
    border-radius: 1.3021vw;
    overflow: hidden;
    animation: wildernessAppear 0.5s ease-out;
    box-shadow: 0.2604vw 1.0417vw 2.6042vw 0px #0000000D;
    box-sizing: border-box;
    padding: 0 2vw 4vw 2vw;
}

.tribe-welcome-header {
    color: var(--hnp-black);
    padding: 2vw 0 0 0;
    text-align: center;
}

.safari-message-title {
    margin-bottom: 1vw;
}

.existing-traveler-icon {
    height: 24vw;
    object-fit: contain;
    margin-bottom: 2vw;
}

.kenyan-salutation {
    font-family: "PoppinsRegular";
    color: var(--hnp-dark-brown);
    font-size: 4.5625vw;
    line-height: 5.0833vw;
    font-weight: 700;
    margin: 1vw 0;
}

.journey-continue-btn {
    background: var(--hnp-dark-brown);
    border: none;
    border-radius: 1.5vw;
    cursor: pointer;
    transition: background 0.3s;
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 9vw;
    color: var(--hnp-white);
}
  
  .newsletter-content {
    width: 95.1899vw;
    height: 81.0127vw;
  }
  
  .newsletter-title-bg {
    font-size: 20.2532vw;
    line-height: 30.3797vw;
    font-weight: 400;
    font-family: "OswaldRegular";
    color: #FC950633;
  }
  
  .newsletter-title {
    top: 5.0633vw;
    width: max-content;
    font-size: 3.5443vw;
    line-height: 5.0633vw;
    letter-spacing: 0.78vw;
    color: var(--hnp-dark-brown);
    font-weight: 400;
  }
  
  .newsletter-description {
    top: 12vw;
    width: 83.54vw;
    font-size: 4.0506vw;
    line-height: 6.076vw;
    color: #000000bf;
    position: absolute;
  }
  
  .newsletter-form {
    width: 92.1519vw;
    height: 38.481vw;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0.98vw 3.91vw 9.77vw 0px #0000000d; /* 5px 20px 50px 0px */
    padding: 4.0506vw;
    box-sizing: border-box;
    border-radius: 6.3291vw;
    gap: 4vw;
  }
  
  .newsletter-input {
    width: 100%;
    height: 12.1519vw;
    margin: 0;
    padding-left: 4.0506vw;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  .newsletter-button {
    width: 100%;
    height: 14.1772vw;
    margin: 0;
    border-radius: 2.5316vw;
    justify-content: flex-start;
    padding: 0;
    flex-shrink: 0;
  }
  
  .newsletter-button__text {
    margin-left: 8.1013vw;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    letter-spacing: 0;
    text-transform: math-auto;
    font-family: "PoppinsRegular";
    font-weight: 400;
  }
  
  /* ===== FOOTER SECTION ===== */
  .footer-section {
    height: 113.9241vw;
  }
  
  .footer-content {
    width: 92.1519vw;
    height: 100%;
    padding: 0;
  }
  
  .footer-logo {
    position: relative;
    top: 3.91vw;
    left: 0;
    width: 12.6582vw;
    height: 12.6582vw;
  }

.footer-logo img {
    width: 12.6582vw;
    height: 12.6582vw;
}
  
  .footer-nav {
    position: relative;
    top: 36vw;
    left: 50%;
    flex-direction: column;
    justify-content: space-between;
    width: 92.1519vw;
    height: 54.6835vw;
  }
  
  .footer-nav__link {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 300;
  }
  
  .footer-social {
    position: relative;
    right: auto;
    top: 14vw;
    column-gap: 5.86vw;
    width: 30vw;
  }
  
  .footer-social__icon {
    width: 6.0759vw !important;
    height: 6.0759vw !important;
  }
  
  .footer-bottom {
    position: relative;
    top: 19vw;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 1.95vw;
    height: 20.7595vw;
    align-items: self-start;
  }
  
  .footer-copyright {
    width: max-content;
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 300;
  }
  
  .footer-legal {
    font-size: 4.0506vw;
    line-height: 6.0759vw;
    font-weight: 300;
  }
  
  /* ===== PAGINATION ===== */
  .pagination-arrow-container {
    display: flex;
    height: 8.1266vw;
    width: 8.1266vw;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }
  
  .pagination-arrow-img {
    width: 80%;
    transition: all 0.3s ease;
  }
  
  .page-link {
    width: max-content;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.0506vw;
  }
  
  .page-link .page-link-no {
    margin: 0;
    font-size: 4.0506vw;
    line-height: 6.076vw;
    color: #000000;
    opacity: 10%;
  }
  
  .page-link .page-link-no.active {
    opacity: 1;
  }
  
  .shop-content-main .pagination .pagination-arrow-container {
    height: 10.127vw;
    width: 10.127vw;
    border-radius: 50%;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
  }
  
  .pagination-arrow-container.prev {
    border: 0.2vw solid #d9d9d9;
  }
  
  .pagination-arrow-container.next {
    border: 0.2vw solid var(--hnp-dark-brown);
  }
  
  .shop-content-main .pagination .page-link {
    width: max-content;
    height: 6.25vw;
    gap: 1.95vw;
  }
  
  /* ===== MISCELLANEOUS ===== */
  .packad-section {
    display: none;
  }
  
  .partners-section {
    display: none;
  }
  .hnp-loader {
    top: 14.1176vw;
    height: calc(100vh - 14.1176vw);
  }
  .hnp-loader .loader {
    width: 72vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hnp-loader .loader span {
    font-size: 12VW;
    line-height: 12vw;
    letter-spacing: 0.5VW;
    transform: unset;
  }

}