@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary-color: #f5821f;
  --dark-color: #1d1d1b;
  --cream-light: #fff1d3;
  --black-color: #000;
  --white-color: #ffffff;
  --gray-color: #f2f2f2;
  --primary-font: 'Inter', sans-serif;
  --transition: ease all 0.6s;
  --bs-border-color: #f2f2f2;
}

body {
  font-size: 15px;
  font-family: var(--primary-font);
  color: var(--dark-color);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

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

h1 {
  font-size: 34px;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

figure {
  margin-bottom: 0;
}

.block {
  padding: 50px 0;
}

.sm-body-text {
  font-size: 15px;
}

.md-body-text {
  font-size: 16px;
}

.lg-body-text {
  font-size: 17px;
}

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

.section-head h2 {
  font-size: 26px;
}

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

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li:before {
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.single-content ul {
  margin-bottom: 20px;
}

.bullet-list li,
.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

.bullet-list li:before,
.single-content ul li:before {
  content: '';
  position: absolute;
    top: 5px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 8px 11px 8px;
    border-color: transparent transparent var(--primary-color) transparent;
}

.bullet-list li:last-child,
.check-list li:last-child {
  margin-bottom: 0;
}

.bullet-list ul li::marker,
.single-content ul li::marker {
  font-size: 16px;
}

.bullet-list ul li {
  margin-bottom: 2px;
}
.bullet-list ul li:last-child {
  margin-bottom: 10px;
}

.sticky {
  position: sticky;
  top: 100px;
}

.view-link svg {
  font-size: 12px;
}

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

.view-link:hover {
  color: var(--secondary-color);
}

.view-link svg {
  font-size: 12px;
  transition: var(--transition);
}

.view-link:hover svg {
  transform: translateX(5px);
}

.card {
  border: none;
  border-radius: 25px;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(184, 38, 49, 0.06);
}

.card.hover-shadow-card:hover {
  border-color: transparent;
  box-shadow: 8px 0 35px rgba(184, 38, 49, 0.15);
}

.card-body {
  padding: 30px;
}

.card-body .icon {
  margin-bottom: 30px;
}

.card-body .icon img {
  height: 60px;
  object-fit: contain;
}

.card-body h3 {
  font-size: 20px;
}

.sticky-section {
  position: sticky;
  top: 100px;
}

/* ---------------------
Colors
--------------------- */

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

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

.bg-gray {
  background-color: #f5f5f5;
}

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

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

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

.table-primary {
  --bs-table-bg: var(--primary-color) !important;
  --bs-table-color: var(--white-color);
}

.table-secondary {
  --bs-table-bg: var(--secondary-color) !important;
  --bs-table-color: var(--white-color);
}

.table > :not(caption) > * > * {
  padding: 15px;
}

/* ---------------------
Forms
--------------------- */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='file'],
input[type='date'],
input[type='tel'],
select {
  height: 50px;
  border-radius: 8px;
}

select {
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0);
  padding: 10px 24px;
  padding-right: 40px;
  text-transform: uppercase;
  height: 50px;
  background: url(./../img/icon-select.svg) no-repeat calc(100% - 22px) center;
  color: #888;
}

textarea {
  height: 100px;
  border-radius: 8px;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
input[type='file'],
.form-select,
textarea,
textarea.form-control {
  padding-left: 20px;
  border-color: #d0d0d0;
}

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

select:focus-visible {
  border: 1px solid var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  color: var(--white-color);
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 5;
  background-image: none;
  opacity: 1;
}

.offcanvas .btn-close {
  position: unset;
}

.btn-close:hover {
  color: var(--white-color);
  opacity: 1;
}

.custom-badge {
  display: inline-block;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  padding: 0 10px;
  border-radius: 200px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--white-color);
  backdrop-filter: blur(5px);
}

/* ---------------------
Buttons
--------------------- */
.btn {
  position: relative;
  font-size: 16px;
  padding: 12px 15px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  transition: var(--transition);
}

.btn-lg {
  font-size: 16px;
  font-weight: 500;
  padding-top: 13px;
  padding-bottom: 13px;
}

.btn .fa-arrow-right {
  font-size: 14px;
  transition: var(--transition);
}

.btn:hover .fa-arrow-right {
  transform: translateX(5px);
}

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-dark {
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
  background-color: var(--white-color);
}

.btn-light {
  color: var(--dark-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.btn:after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    to bottom,
    rgba(229, 172, 142, 0),
    rgba(255, 255, 255, 0.4) 50%,
    rgba(229, 172, 142, 0)
  );
  transform: rotateZ(60deg) translate(-5em, 10em);
}
/*This activates the sheen once the button has been hovered*/
.btn:hover::after {
  animation: sheen 1.5s forwards;
}
@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

/* Swiper Button */

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: auto;
  height: 10px;
}

.swiper-button-prev {
  left: 15px;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--secondary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'Fontawesome';
  font-size: 14px;
  color: var(--white-color);
}

.swiper-button-prev:after {
  content: '\f053';
}

.swiper-button-next:after {
  content: '\f054';
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}

/* ---------------------
Page Banner
--------------------- */

.page-banner {
  position: relative;
  isolation: isolate;
  color: var(--white-color);
}

.page-banner.overlay figure {
  position: relative;
}

.page-banner.overlay figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,000000+100&0+0,0.9+100 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.page-banner .banner-img img {
  width: 100%;
}

.page-head {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 50px 10px;
}

.page-banner h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

/* Full Width Banner */

.full-width-img-banner,
.page-banner.floating-title {
  padding: 30px 0;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.full-width-img-banner .banner-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

/* Half Col Banner */

.half-col-img-content {
  position: relative;
  background-color: var(--primary-color);
  height: 300px;
  overflow: hidden;
}

.half-col-img-content .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 0;
}

.half-col-img-content figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.half-col-img-content figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb-wrap {
  background-color: var(--dark-color);
  padding: 8px 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  font-size: 12px;
  color: var(--white-color);
  margin-top: 3px;
}

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

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

/* ---------------------
Header
--------------------- */

/* Header Top */
.header-top {
  padding: 12px 0;
  background-color: var(--dark-color);
}

.header-top * {
  color: var(--white-color);
}

.header-top .lft a {
  margin-right: 30px;
}

.header-top .lft a:last-child {
  margin-right: 0;
}

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

/* Header Main*/

.header-main {
  padding: 10px 0;
}

.site-logo {
  width: 110px;
}

.offcanvas-body {
  padding: 0;
}

.slicknav_menu {
  padding: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 0;
}

.slicknav_nav .slicknav_row:hover a {
  color: var(--white-color);
}

.slicknav_nav .slicknav_row:hover > a {
  background-color: transparent;
}

.main-navigation {
  display: none;
  font-family: var(--primary-font);
  width: auto;
}

.main-navigation ul.menu > li {
	padding:10px 0;
  margin-right: 25px;
}

.main-navigation ul.menu > li li{
	padding
}

.main-navigation ul.menu > li:last-child {
  margin-right: 0;
}

.main-navigation a {
  font-size: 16px;
  font-weight: 500;
}

.current_page_item > a,
.menu-item > a:hover {
  color: var(--white-color);
}

.sub-menu > .current-menu-parent > a,
.sub-menu a:hover,
.current-menu-parent .slicknav_row > a,
.sub-menu > .current-menu-parent > .sub-menu > .current-menu-item > a{
	color:var(--white-color);
	background-color:var(--primary-color);
}

.slicknav_menu {
  background-color: transparent;
}

.slicknav_nav a {
  color: var(--dark-color);
}

.si-wrap a {
  color: var(--white-color);
  margin-right: 15px;
}

.si-wrap a:last-child {
  margin-right: 0;
}

.si-wrap a:hover i,
.si-wrap a:hover svg,
.si-wrap a:hover path {
  color: var(--primary-color);
}

.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  border-bottom: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: smoothScroll 1s forwards;
  z-index: 999;
}

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

.site-header.fixed-header .header-top {
  display: none;
}

/* -------------------------------------------------------
                     Trip Card
------------------------------------------------------- */

.trip-card figure {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
	transition:var(--transition);
	isolation:isolate;
}

.trip-card figure:before{
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:55%;
	transition:var(--transition);
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+99 */
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 99%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.trip-card:hover figure{
	box-shadow:0 5px 25px rgba(0, 0, 0, 0.25);
}

.trip-card:hover figure:before{
	height:100%;;
}

.trip-card .card-badge {
  position: absolute;
  top: 15px;
  right: 20px;
}

.custom-badge {
  cursor: pointer;
}

.custom-badge svg {
  transition:
    fill 0.3s ease,
    transform 0.2s ease;
}

.custom-badge.active svg {
  color: #e60023; /* red */
  transform: scale(1.15);
}

.trip-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 415 / 275;
  object-fit: cover;
}

.trip-card figure .card-head {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: var(--white-color);
/*   backdrop-filter: blur(1.7px); */
}

.trip-card figure .card-head .title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0;
}

.trip-card figure .card-head .title:hover a {
  color: var(--primary-color);
}

.trip-card figure .card-head .price {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
}

.trip-card figure .card-head .price span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
}

.trip-card .trip-card-body {
  padding-top: 20px;
}

.trip-card .trip-card-body .trip-feature {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.trip-card .trip-card-body .trip-feature .item {
  position: relative;
  padding: 0 15px;
}

.trip-card .trip-card-body .trip-feature .item:after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  right: 0;
  background-color: #dddddd;
}

.trip-card .trip-card-body .trip-feature .item:last-child:after {
  position: unset;
}

.trip-card .trip-card-body .trip-feature .item:first-child {
  padding-left: 0;
}

.trip-card .trip-card-body .trip-feature .item:last-child {
  padding-right: 0;
}

.trip-card .trip-card-body .trip-feature .item h5 {
  margin-bottom: 0;
}

.trip-card .trip-card-body .trip-feature .item {
  font-size: 14px;
}

/* -------------------------------------------------------
                     Destination Card
------------------------------------------------------- */
.destination-item a {
  display: block;
}

.destination-card {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
	transition:var(--transition);
}

.destination-card:hover{
	box-shadow:0 5px 25px rgba(0, 0, 0, 0.25);
}

.destination-card figure,
.destination-item a {
  width: 100%;
  height: 100%;
}

.destination-card figure {
  position: relative;
}

.destination-card figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0.3+100 */
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.destination-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 100 / 60;
  object-fit: cover;
}

.destination-card .destination-card-body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
}

.destination-card .destination-card-body .title {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 0;
}

/* -------------------------------------------------------
                     Blog Card
------------------------------------------------------- */

.blog-card .blog-card-img img {
  width: 100%;
  aspect-ratio: 13 / 8;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card .blog-card-body {
  padding-top: 20px;
}

.blog-card .blog-card-body .meta-tags {
  margin-bottom: 10px;
}

.blog-card .blog-card-body .title {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

/* -------------------------------------------------------
                     Hero Section
------------------------------------------------------- */

.hero-section {
  position: relative;
  text-align: center;
  color: var(--white-color);
  padding: 150px 0 100px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-section h1 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 0;
}

.hero-section p {
  font-size: 20px;
  max-width: 850px;
  margin: 0 auto;
}

/* -------------------------------------------------------
                     Intro Section
------------------------------------------------------- */

.intro-section {
  position: relative;
  background-color: var(--cream-light);
  isolation: isolate;
}

.intro-section.block {
  padding-bottom: 350px;
}

.intro-section:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/gears.svg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: -1;
}

/* -------------------------------------------------------
                     Destination Section
------------------------------------------------------- */

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'item-1 item-3'
    'item-2 item-2'
    'item-4 item-5';
  gap: 10px;
}

.destination-item.item-1 {
  grid-area: item-1;
}
.destination-item.item-2 {
  grid-area: item-2;
}
.destination-item.item-3 {
  grid-area: item-3;
}
.destination-item.item-4 {
  grid-area: item-4;
}
.destination-item.item-5 {
  grid-area: item-5;
}

/* -------------------------------------------------------
              Most Popular Trips Section
------------------------------------------------------- */

.most-popular-trips-section {
  background-color: #f5f5f5;
}

.depature-item {
  display: flex;
	flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
	gap:8px;
  padding: 10px 15px;
  margin-bottom: 10px;
  border: 1px solid #c5c5c5;
  border-radius: 8px;
	transition:var(--transition);
}

.depature-item:hover{
	border-color:var(--white-color);
	box-shadow:0 5px 25px rgba(0, 0, 0, 0.15);
}

.depature-item:last-child {
  margin-bottom: 0;
}

.depature-item .title h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.depature-item .meta span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 6px;
  border-radius: 50px;
}

.depature-item .meta span.group {
  color: #2563eb;
  background-color: #eaf2ff;
}

.depature-item .meta span.seat {
  color: #ee2728;
  background-color: #ffd5d5;
}

.depature-item .date p {
  margin-bottom: 0;
}

.depature-item .date p span {
  color: var(--primary-color);
}

.depature-item .price {
	color:var(--primary-color);
  font-size: 22px;
  font-weight: 700;
}

.depature-item .price .currency,
.depature-item .price .regular-price {
	color:var(--dark-color);
  font-size: 14px;
  font-weight: 500;
}

.depature-item .price .regular-price {
  color: #898989;
  text-decoration: line-through;
  text-decoration-color: red;
}

.level {
  font-size: 13px;
  font-weight: 500;
}

.progress {
  margin-bottom: 5px;
}

.depature-item .date,
.depature-item .title,
.depature-item .button-wrap{
	width:100%;
}

.depature-item .level,
.depature-item .price{
	width:calc(50% - 5px)
}


.testimonials-section {
  background-color: #fbf8f1;
}

.testimonials-swiper {
  overflow: visible;
}

.testimonials-card {
  padding: 20px;
  background-color: var(--white-color);
  border: 1px solid #e7eaec;
}

.testimonials-card .client-area .client-img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.testimonials-card .client-area .client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-card .client-area h4 {
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonials-card .client-area p {
  font-size: 14px;
  font-weight: 500;
  color: #9b9b9b;
}

.nav-pills {
  justify-content: center;
  border: none;
}

.nav-pills .nav-link {
  color: var(--dark-color);
  border: none;
  border-bottom: 2px solid var(--black-color);
  border-radius: 0;
  background-color: transparent;
}

.nav-pills .nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}
.nav-pills .nav-link.active,
.nav-pills .nav-link:focus,
.nav-pills .nav-link:hover {
  border: none;
  border-bottom: 2px solid var(--primary-color);
  background-color: transparent;
}

/* Gallery */

.gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'item-1 item-2'
    'item-3 item-3'
    'item-4 item-5'
    'item-6 item-6'
    'item-7 item-8'
    'item-9 item-9';
  gap: 10px;
}

.gallery-container .gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-container .gallery-item.item-1 {
  grid-area: item-1;
}
.gallery-container .gallery-item.item-2 {
  grid-area: item-2;
}
.gallery-container .gallery-item.item-3 {
  grid-area: item-3;
}
.gallery-container .gallery-item.item-4 {
  grid-area: item-4;
}
.gallery-container .gallery-item.item-5 {
  grid-area: item-5;
}
.gallery-container .gallery-item.item-6 {
  grid-area: item-6;
}
.gallery-container .gallery-item.item-7 {
  grid-area: item-7;
}
.gallery-container .gallery-item.item-8 {
  grid-area: item-8;
}
.gallery-container .gallery-item.item-9 {
  grid-area: item-9;
}
.gallery-container .gallery-item.item-10 {
  grid-area: item-10;
}

.cta-section {
  position: relative;
  color: var(--white-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.cta-section h2 {
  font-size: 30px;
  line-height: 1.3;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* -------------------------------------------------------
                     FAQS Section
------------------------------------------------------- */

.accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #eaecf0;
  overflow: hidden;
}
.accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.accordion-button {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--secondary-font);
  padding: 25px 0;
  background-color: transparent;
}

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

.faq-wrap .accordion-body {
  font-weight: 500;
  padding: 0 0 25px 0;
}

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

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

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

.get-in-touch {
  text-align: center;
  background-color: #fff3df;
  padding: 50px 20px;
  margin-top: 50px;
  border-radius: 8px;
}

.avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.avatar-wrap .avatar img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white-color);
}

.avatar-wrap .avatar:nth-child(2) img {
  transform: scale(1.3);
}

.get-in-touch p {
  font-size: 18px;
}

.newsletter-section {
  padding: 50px 0 30px 0;
  background-color: var(--dark-color);
}

.newsletter-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.newsletter-inner {
  padding: 20px 40px;
  border: 1px solid #616161;
  border-radius: 8px;
}

.site-footer {
  color: var(--white-color);
  background-color: var(--dark-color);
}

.footer-top {
  padding: 30px 0 40px 0;
}

.footer-logo {
  margin-bottom: 30px;
}

.contact-wrap {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 10px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item a {
  color: var(--white-color);
}
.contact-item .icon {
  color: var(--white-color);
  float: left;
  margin-right: 10px;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-menu li {
  margin-bottom: 10px;
}

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

.footer-menu li a {
  color: #a2a2a2;
}

.footer-menu li.current-menu-item a,
.footer-menu li a:hover {
  color: var(--white-color);
}

.footer-bottom {
  padding-bottom: 25px;
}

.copyright-text {
  font-size: 14px;
}

.copyright-text a {
  font-weight: 700;
  color: var(--primary-color);
}

/* -------------------------------------------------------
                About Page
------------------------------------------------------- */

.about-intro-section{
	background-color:#FFF9F5;
}

.icon-box{
	padding:20px;
	border-radius:8px;
	background-color:var(--white-color);
	box-shadow:0 4px 25px rgba(0, 0, 0, 0.1);
}

.icon-box.horzontal{
	display:flex;
	gap:25px;
	align-items:center;
	margin-bottom:20px;
}

.icon-box.horzontal:last-child{
	margin-bottom:0;
}

.icon-box .icon{
	width:70px;
	height:70px;
	line-height:70px;
	text-align:center;
	border-radius:8px;
	background-color:#FFE6D1;
	margin-bottom:20px;
}

.icon-box.horzontal .icon{
	flex-shrink:0;
	margin-bottom:0;
}

.icon-box .icon img{
	max-width:40px;
	max-height:40px;
}

.mv-sction .icon-box{
	background-color:#FFF4EC;
}

.mv-sction .icon-box .icon{
	background-color:#F26A2F;
}

.gallery-swiper .swiper-slide img{
	width:100%;
	aspect-ratio:4/5.5;
	object-fit:cover;
	border-radius:8px;
}

/* -------------------------------------------------------
                Contact Page
------------------------------------------------------- */

.contact-box{
	position:relative;
	padding:50px 40px;
	border-radius:8px;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	color:var(--white-color);
	isolation:isolate;
	overflow:hidden;
}

.contact-box:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#000;
	opacity:0.4;
	z-index:-1;
}

.contact-box .contact-item{
	display: flex;
	align-items:center;
	padding:15px 20px;
	background-color:rgba(0, 0, 0, 0.3);
	border-radius:8px;
	transition:var(--transition);
}

.contact-box .contact-item:hover{
	box-shadow:0 4px 25px rgba(255, 255, 255, 0.2);
}

.contact-box .contact-item i,
.contact-box .contact-item svg{
	color:var(--primary-color);
	font-size:20px;
}

/* -------------------------------------------------------
                Destination Page
------------------------------------------------------- */

.intro-img-container figure {
  width: 50%;
}

.intro-img-container figure.img-secondary {
  margin-left: auto;
  margin-top: -100px;
}

.intro-img-container figure img {
  border-radius: 8px;
  border: 4px solid var(--white-color);
}

.member-item {
  margin-bottom: 30px;
}

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

.member-item figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.member-item .content {
  padding-top: 20px;
}

.member-item .content .name {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
}

.banner-slider-item {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.banner-slider-item figure img {
  width: 100%;
}

.banner-slider-item .banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.blog-head {
  text-align: center;
  margin-bottom: 40px;
}

.blog-meta {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.blog-meta .meta-item i,
.blog-meta .meta-item svg {
  color: var(--primary-color);
}

.hero-img {
  margin-bottom: 30px;
}

.hero-img img {
  width: 100%;
}

/* -------------------------------------------------------
                  Single Activity
------------------------------------------------------- */

.top-masonary-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    'item-1 item-1'
    'item-2 item-3';
}

.top-masonary-grid .item-1 {
  grid-area: item-1;
}
.top-masonary-grid .item-2 {
  grid-area: item-2;
}
.top-masonary-grid .item-3 {
  grid-area: item-3;
}

.top-masonary-grid figure img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.top-masonary-grid .item-1 img {
  height: 250px;
}

.top-masonary-grid .item-2 img,
.top-masonary-grid .item-3 img {
  aspect-ratio: 4/3.5;
}

.view-img-card {
  position: relative;
}

.view-img-card img {
  width: 100%;
  aspect-ratio: 4/2.8;
  object-fit: cover;
  border-radius: 8px;
}

.view-img-card .btn-wrap {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.view-img-card .btn-wrap .view-all-btn {
  color: var(--white-color);
  padding: 8px 15px;
  background-color: rgba(205, 191, 191, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.review-card-wrap {
  text-align: center;
	font-size:14px;
	line-height:1.5;
  padding: 20px;
  margin-top: 20px;
  background-color: #ffefe2;
  border-radius: 8px;
}

.review-card-wrap .content{
	height:155px;
	overflow-y:scroll;
}

.review-card-wrap .client-img{
	width:30px;
	height:30px;
	border-radius:50%;
	overflow:hidden;
	margin:15px auto 7px auto;
}

.review-card-wrap h5{
	margin-bottom:3px;
}

.trip-detail-item {
  margin-bottom: 40px;
}

.trip-detail-item .title {
  font-size: 36px;
  margin-bottom: 20px;
}
.description h1{
	font-size:30px;
font-weight:700;
}

.description h2{
	font-size:28px;
}

.trip-detail-item h3,
.description h3{
	font-size:24px;
}
.trip-detail-item h4,
.description h4{
	font-size:22px;
}
.trip-detail-item h5,
.description h5{
	font-size:18px;
}

.trip-overview-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.trip-overview-item .icon {
  float: left;
  margin-right: 10px;
}

.trip-overview-item .icon img{
	filter: brightness(0) saturate(100%) invert(63%) sepia(83%) saturate(1792%) hue-rotate(350deg) brightness(100%) contrast(92%);
}

.trip-overview-item .content {
  overflow: hidden;
}

.trip-overview-item .content h5 {
  margin-bottom: 3px;
}

.trip-overview-item .content p {
  color: #323637;
  font-size: 14px;
}

.trip-hightlight ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.trip-hightlight ul li:last-child {
  margin-bottom: 0;
}

.trip-hightlight ul li:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 8px 11px 8px;
  border-color: transparent transparent var(--primary-color) transparent;
}

.visit-season {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  padding: 15px 10px;
  border-radius: 8px;
  background-color: #ffefe2;
}

.visit-season .month {
	text-align:center;
	font-size:12px;
	width:calc(16.6% - 5px);
  font-weight: 500;
  background-color: #fff;
  padding: 7px 10px;
  border-radius: 50px;
}

.visit-season .month.average {
  color: var(--dark-color);
  background-color: #b9b9b9;
}

.visit-season .month.good {
  color: var(--white-color);
  background-color: var(--black-color);
}

.visit-season .month.best {
  color: var(--white-color);
  background-color: var(--primary-color);
}
.visit-season .month.avoid {
  color: var(--white-color);
  background-color: #ef0000;
}

.season-indicator .indicator {
  margin-bottom: 10px;
  font-weight: 500;
}

.season-indicator .indicator:last-child {
  margin-bottom: 0;
}

.season-indicator .indicator span {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border-radius: 50%;
}

.season-indicator .indicator.best span {
  background-color: var(--primary-color);
}

.season-indicator .indicator.good span {
  background-color: var(--black-color);
}

.season-indicator .indicator.average span {
  background-color: #b9b9b9;
}

.season-indicator .indicator.notGood span {
  background-color: #ef0000;
}

.trip-itinerary .description {
  position: relative;
  padding-left: 70px;
}

.itinerary-item {
  position: relative;
  background-color: var(--gray-color);
  padding: 20px;
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: inherit;
}

.itinerary-item:before,
.itinerary-item:after {
  content: '';
  position: absolute;
}

.itinerary-item:before {
  top: 45px;
  left: -45px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.itinerary-item:last-child:before {
  position: unset;
  background-color: transparent;
}

.itinerary-item:after {
  top: 20px;
  left: -10px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--gray-color) transparent transparent;
}
.itinerary-item .accordion-button {
  padding: 0;
}
.itinerary-item .accordion-body {
  padding: 15px 0 0 0;
}

.itinerary-item .count {
  position: absolute;
  top: 6px;
  left: -65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 45px;
  height: 45px;
  line-height: 1.2;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
}

.itinerary-item .count small {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.cost-include ul li,
.cost-exclude ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

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

.cost-include ul li:before,
.cost-exclude ul li:before {
  position: absolute;
  left: 0;
  font-family: 'Fontawesome';
}

.cost-include ul li:before {
  content: '\f058';
  color: #34c759;
}

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

.video-section .thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.video-section .thumb:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.video-section .thumb img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1300 / 575;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #eb2055; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-border 2s ease-out infinite;
}

.video-play-button:after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 3s;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 14px;
  left: 7px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.trip-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trip-gallery-grid .gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.trip-esential .nav-pills{
	gap:10px;
}

.trip-esential .nav-pills .nav-link{
	padding:3px 5px;
}

.trip-esential #trekTabContent ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.trip-esential #trekTabContent ul li:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 11px;
  border-color: transparent transparent transparent var(--primary-color);
}

/* Sidebar */

.sidebar-booking .sidebar-header {
  color: var(--white-color);
  padding: 20px;
  background-color: var(--black-color);
  border-radius: 8px 8px 0 0;
}

.sidebar-booking .sidebar-header .price {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.sidebar-booking .sidebar-header small {
  font-size: 10px;
  font-style: italic;
}

.sidebar-booking .sidebar-body {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 0 0 8px 8px;
}

.sidebar-booking .sidebar-body table tr td {
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px dashed #cdcdcd;
}

.sidebar-booking .sidebar-body table tr:last-child td {
  border-bottom: none;
}

.qty-count {
  color: var(--white-color);
  font-size: 18px;
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  border-radius: 8px;
  border: none;
}

.product-qty {
  text-align: center;
  width: 60px;
  height: 35px;
  padding-left: 10px !important;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
}

.talk-consultant {
  padding: 20px;
  background-color: #ffefe2;
  border-radius: 8px;
}

.talk-consultant .img {
  float: left;
  margin-right: 15px;
}

.talk-consultant .img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 100px;
}

.talk-consultant .detail {
  overflow: hidden;
}

.itnerary-cta-section .cta-wrap {
  display: flex;
  align-items: center;
}

.itnerary-cta-section .cta-wrap figure {
  width: 125px;
  height: 125px;
  object-fit: cover;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  margin-right: -62px;
  z-index: 1;
  overflow: hidden;
}

.itnerary-cta-section .cta-wrap .content {
  max-width: 800px;
  width: 100%;
  color: var(--white-color);
  padding: 40px 40px 40px 110px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.itnerary-cta-section .cta-wrap .content h4 {
  font-size: 24px;
}

.features .feature-item {
  margin-bottom: 30px;
}

.features .feature-item:last-child {
  margin-bottom: 0;
}

.features .feature-item .icon {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 15px;
}

.features .feature-item .content {
  overflow: hidden;
}

.service-content-lists li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 30px;
}

.service-content-lists li:last-child {
  margin-bottom: 0;
}

.service-content-lists li:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
}

/* -------------------------------------------------------
                Activities Page
------------------------------------------------------- */

.page-banner.floating-title .banner-content {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}

.page-banner.floating-title .banner-content h1 {
  padding: 10px 25px;
  margin-bottom: 0;
  background-color: var(--primary-color);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
}

.day-tour-section {
  background-color: #fff6ef;
}

.tour-item {
  padding: 20px;
  background-color: var(--white-color);
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 30px;
}

.tour-item:last-child {
  margin-bottom: 0;
}

.tour-item figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 402 / 245;
  object-fit: cover;
  border-radius: 8px;
}

.tags-section {
  color: var(--white-color);
  padding: 30px 50px;
  background-color: var(--dark-color);
  border-radius: 8px;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-wrap .tag {
  padding: 8px 15px;
  border: 1px solid var(--white-color);
  border-radius: 8px;
}

/* -------------------------------------------------------
                     Booking
------------------------------------------------------- */

.booking-box {
  border: 1px solid #ededed;
  -webkit-box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 30px;
}

[data-counter-holder] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 50px;
  border: 1px solid #d1d1d1;
  padding: 2px;
  border-radius: 6px;
}

[data-counter-holder] input {
  border-color: rgba(0, 0, 0, 0) !important;
  text-align: center;
}

[data-counter-holder] button {
  height: 44px;
  width: 44px;
  padding: 0;
  background-color: #e9e9e9;
  border-radius: 4px;
  color: #000;
  border-color: #e9e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
}

.contact-form label {
  display: block;
}

.contact-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.contact-form .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.contact-form .wpcf7-acceptance label a {
  color: var(--primary-color);
}

.booking-summary {
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}

.booking-summary-info {
  padding: 20px;
  background-color: #1d1d1b;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #989898;
  margin-bottom: 10px;
}

.booking-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-price-list li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.booking-price-list li:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

.booking-price-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.booking-price-left strong {
  display: block;
  line-height: 1.2;
}

.booking-price-right {
  text-align: end;
}

.booking-price-right div {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-color);
}

.description a{
	color:var(--primary-color);
}

.star-rating-css {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stars-outer {
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #ddd;
}

.stars-outer::before {
    content: "★★★★★";
    letter-spacing: 1px;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: var(--primary-color);
}

.stars-inner::before {
    content: "★★★★★";
    letter-spacing: 1px;
}

.rating-number {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* -------------------------------------------------------
                     Scrollbar
------------------------------------------------------- */

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--light-primary-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* -------------------------------------------------------
                         Shine Effect
------------------------------------------------------- */

.shine-overlay {
  position: relative;
  overflow: hidden;
}
.shine-overlay:hover .shine {
  display: block;
}

.shine {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: skew(30deg);
  animation: shine 5s linear 1;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.wpcf7-spinner {
  position: absolute;
}


/* Search */
/* Search Wrap */
.trip-search-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}

.trip-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Input Side */
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.search-icon {
  color: #999;
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.trip-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  color: #333;
  background: transparent;
  padding: 18px 0;
  font-family: inherit;
}

.trip-search-input::placeholder {
  color: #aaa;
}

/* Button */
.trip-search-btn {
  background: #e87722;
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.trip-search-btn:hover {
  background: #cf6510;
  color: #fff;
}

/* Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: none;
  z-index: 999;
  overflow: hidden;
  min-width: 100%;
}

.search-dropdown.active {
  display: block;
}

/* Result Item */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

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

.search-result-item:hover {
  background: #fff8f3;
  color: #e87722;
}

.result-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}

.result-thumb-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ccc;
  font-size: 18px;
}

.result-info {
  flex: 1;
  min-width: 0;
}

.result-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.result-arrow {
  color: #ccc;
  font-size: 13px;
  flex-shrink: 0;
}

.search-result-item:hover .result-arrow {
  color: #e87722;
}

/* Loading */
.search-loading {
  padding: 16px 20px;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #f0f0f0;
  border-top-color: #e87722;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* No Result */
.search-no-result {
  padding: 20px;
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

.search-no-result i {
  margin-right: 6px;
}

/* View All link */
.search-view-all {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #e87722;
  border-top: 1px solid #f5f5f5;
  text-decoration: none;
  background: #fffaf6;
  transition: background 0.2s;
}

.search-view-all:hover {
  background: #fff2e8;
  color: #cf6510;
}

/* Mobile */
@media (max-width: 576px) {
  .trip-search-btn {
    padding: 16px 20px;
    font-size: 14px;
  }
  .trip-search-input {
    font-size: 14px;
  }
}