@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Fonts */
:root {
  --default-font: "Manrope", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #051e23;
  --heading-color: #1c4b56;
  --accent-color: #00b3de;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --whatsapp-color: #24CB63;
  --secondary-color: #39b04a;
}

:root {
  --nav-color: rgba(255, 255, 255);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #051e23;
  --nav-dropdown-hover-color: #008cad;
}

.light-background {
  --background-color: #f2f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 38px;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

body.scrolled .header {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  background: #fff;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

body.scrolled .header .logo img {
  max-height: 45px;
  transition: all 0.5s ease;
}

body.scrolled .header .navmenu a,
body.scrolled .header .navmenu a:focus {
  color: #1d201f;
}

body.scrolled .header .navmenu {
  background: transparent;
  border: none;
}

.header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s ease;
}

.header {
  padding: 12px 0;
}

.header .logo img {
  max-height: 60px;
  transition: all 0.5s ease;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--secondary-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --surface-color: rgba(0, 0, 0, 0.7);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0 12px;
    background: rgb(33 33 33 / 20%);
    border-radius: 50px;
    border: 1px solid #4a6576;
    backdrop-filter: blur(3px);
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  body.scrolled .header .mobile-nav-toggle {
    color: #1d201f;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu ul li.dropdown a span i {
    display: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0px;
    margin: 0px 24px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu ul li a i {
    display: none;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: url('../img/footer-bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 80px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--default-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-image: url('../img/page_banner01.webp');
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title p {
  font-size: .9rem;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li {
  font-size: 14px;
  text-transform: uppercase;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "|";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

nav.breadcrumbs ol li a {
  background: rgb(100 156 169 / 45%);
  padding: 2px 12px;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Home Banner Section
--------------------------------------------------------------*/

.home-banner {
  position: relative;
}

.hb-img {
  overflow: hidden;
  height: 640px;
}

.hb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: homeBanner_zoomIn 15s linear forwards
}

@keyframes homeBanner_zoomIn {
  0% {
    transform: scale(1)
  }

  to {
    transform: scale(1.25)
  }
}

.hb-overlay {
  --linear-gradient-black-white: linear-gradient(330deg, transparent 64.8%, rgba(0, 0, 0, .4) 96.98%), linear-gradient(0deg, transparent 48.54%, rgba(0, 0, 0, .4) 99.68%), linear-gradient(180deg, transparent 11.71%, rgba(0, 0, 0, .4));
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: var(--linear-gradient-black-white);
}

.hb-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
}

.hb-content h1 {
  font-weight: bold;
  color: #fff;
  margin: 24px 0;
  font-size: 4rem;
}

.hb-content h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  margin: 0;
}

.hb-content h6::after,
.hb-content h6::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.hb-content h6::before {
  left: auto;
  right: -40px;
}

.hb-content p {
  color: #fff;
  font-size: 16px;
  margin: 0 auto 24px;
}

.hb-content ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.hb-content ul li {
  color: #fff;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
}

.hb-content ul li i {
  margin-right: 6px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(33 33 33 / 30%);
  backdrop-filter: blur(3px);
  border: 1px solid #4a6576;
  border-radius: 50px;
}

.search-area {
  background: #fff;
  padding: 16px;
  border-radius: 24px;
  margin-top: 24px;
}

.search-input .form-floating label {
  color: var(--default-color);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.btn-design {
  background-color: var(--default-color);
  color: var(--contrast-color);
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 18px;
  transition: all 0.3s ease;
}

.btn-design:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 20%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 0;
}

.travel-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.travel-hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 60%) 0%, color-mix(in srgb, var(--background-color), transparent 80%) 50%, color-mix(in srgb, var(--background-color), transparent 90%) 100%);
  z-index: 1;
}

.travel-hero .hero-text .hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.travel-hero .hero-text .hero-subtitle {
  font-size: .9rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.travel-hero .hero-text .hero-buttons .btn {
  padding: 8px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.travel-hero .hero-text .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-hero .hero-text .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.travel-hero .hero-text .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.travel-hero .hero-text .hero-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .travel-hero .hero-text {
    text-align: center;
    margin-bottom: 3rem;
  }

  .travel-hero .hero-text .hero-title {
    font-size: 2.5rem;
  }

  .travel-hero .hero-text .hero-subtitle {
    font-size: 1.1rem;
  }

}

@media (max-width: 768px) {
  .travel-hero .hero-text .hero-title {
    font-size: 2rem;
  }

  .travel-hero .hero-text .hero-subtitle {
    font-size: 1rem;
  }

  .travel-hero .hero-text .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .travel-hero .hero-text .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

}

/*--------------------------------------------------------------
#Reviews Section
--------------------------------------------------------------*/
section.reviews {
  background: #fff6ee;
  padding: 24px 0;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.why-us .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.why-us .stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .why-us .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.why-us .stat-item span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.why-us .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.why-us .about-image {
  position: relative;
}

.why-us .about-image .experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us .about-image .experience-badge .experience-number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.why-us .about-image .experience-badge .experience-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .why-us .about-image {
    margin-top: 3rem;
  }

  .why-us .about-image .experience-badge {
    bottom: 15px;
    left: 15px;
    padding: 1rem;
  }

  .why-us .about-image .experience-badge .experience-number {
    font-size: 1.5rem;
  }

  .why-us .about-image .experience-badge .experience-text {
    font-size: 0.8rem;
  }
}

.why-us .why-choose-section {
  margin-top: 5rem;
}

.why-us .why-choose-section h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-us .why-choose-section>.row>.col-lg-8>p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .why-us .why-choose-section {
    margin-top: 3rem;
  }

  .why-us .why-choose-section h3 {
    font-size: 1.8rem;
  }
}

.why-us .feature-card {
  background: var(--surface-color);
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-card:hover .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.why-us .feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-us .feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-us .feature-card {
    padding: 2rem 1rem;
  }

  .why-us .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .why-us .feature-card h4 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.country-card,
.region-card,
.interest-card {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.region-card,
.interest-card {
  height: 220px;
}

.country-card img,
.region-card img,
.interest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.country-card:hover img,
.region-card:hover img,
.interest-card:hover img {
  transform: scale(1.05);
}

.country-name,
.region-name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(3px);
  border-radius: 50px;
}

.country-name h5,
.region-name h5 {
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.country-name h5 i,
.region-name h5 i {
  color: var(--secondary-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
.featured-tours .tour-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-tours .tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-tours .tour-card .tour-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.featured-tours .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-tours .tour-card .tour-image .tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-tours .tour-card .tour-image .tour-badge.limited {
  background-color: #ff6b6b;
}

.featured-tours .tour-card .tour-image .tour-badge.new {
  background-color: #4ecdc4;
}

.featured-tours .tour-card .tour-image .tour-badge.cultural {
  background-color: #9b59b6;
}

.featured-tours .tour-card .tour-image .tour-badge.adventure {
  background-color: #e67e22;
}

.featured-tours .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: color-mix(in srgb, var(--default-color), transparent 20%);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.featured-tours .tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.featured-tours .tour-card .tour-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-tours .tour-card .tour-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  line-height: 1.2;
}

.featured-tours .tour-card .tour-content .tour-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.featured-tours .tour-card .tour-content .tour-meta span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-tours .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
}

.featured-tours .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.featured-tours .tour-card .tour-content .tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.featured-tours .tour-card .tour-content .tour-highlights span {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.featured-tours .tour-card .tour-content .tour-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.featured-tours .tour-card .tour-content .tour-action .btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.featured-tours .tour-card .tour-content .tour-action .btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.featured-tours .tour-card .tour-content .tour-action .tour-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
}

.featured-tours .tour-card .tour-content .tour-action .tour-rating i {
  color: #ffc107;
  font-size: 12px;
}

.featured-tours .tour-card .tour-content .tour-action .tour-rating span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 5px;
  font-size: 13px;
}

.featured-tours .btn-view-all {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;
}

.featured-tours .btn-view-all:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 768px) {
  .featured-tours .tour-card .tour-content {
    padding: 20px;
  }

  .featured-tours .tour-card .tour-content h4 {
    font-size: 20px;
  }

  .featured-tours .tour-card .tour-content .tour-action {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .featured-tours .tour-card .tour-content .tour-action .btn-book {
    text-align: center;
  }

  .featured-tours .tour-card .tour-content .tour-action .tour-rating {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .featured-tours .tour-card .tour-image {
    height: 200px;
  }

  .featured-tours .tour-card .tour-content {
    padding: 15px;
  }

  .featured-tours .tour-card .tour-content .tour-meta {
    flex-direction: column;
    gap: 8px;
  }

  .featured-tours .tour-card .tour-content .tour-highlights {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Testimonials Home Section
--------------------------------------------------------------*/
.testimonials-home .testimonials-carousel,
.testimonials-home .testimonials-slider {
  overflow: hidden;
}

.testimonials-home .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials-home .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials-home .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials-home .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials-home .testimonial-item .quote-icon-left,
.testimonials-home .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials-home .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials-home .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials-home .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials-home .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials-home .swiper-wrapper {
  height: auto;
}

.testimonials-home .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials-home .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (max-width: 992px) {
  .call-to-action .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.call-to-action .content-wrapper .badge-wrapper {
  margin-bottom: 1.5rem;
}

.call-to-action .content-wrapper .badge-wrapper .promo-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.call-to-action .content-wrapper .badge-wrapper .promo-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

.call-to-action .content-wrapper h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .call-to-action .content-wrapper h2 {
    font-size: 2.2rem;
  }
}

.call-to-action .content-wrapper p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.call-to-action .action-section .main-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .call-to-action .action-section .main-actions {
    flex-direction: column;
  }
}

.call-to-action .action-section .main-actions .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.call-to-action .action-section .main-actions .btn i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.call-to-action .action-section .main-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.call-to-action .action-section .main-actions .btn:hover::before {
  left: 100%;
}

.call-to-action .action-section .main-actions .btn.btn-explore {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border: none;
  color: var(--contrast-color);
}

.call-to-action .action-section .main-actions .btn.btn-explore:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .action-section .main-actions .btn.btn-deals {
  background: transparent;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
}

.call-to-action .action-section .main-actions .btn.btn-deals:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px) scale(1.05);
}

.call-to-action .action-section .quick-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 576px) {
  .call-to-action .action-section .quick-contact {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.call-to-action .action-section .quick-contact .contact-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.call-to-action .action-section .quick-contact .contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-section .quick-contact .contact-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateX(3px);
}

.call-to-action .action-section .quick-contact .contact-link i {
  font-size: 1.1rem;
}

.call-to-action .visual-element {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.call-to-action .visual-element .hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .call-to-action .visual-element .hero-image {
    height: 350px;
  }
}

.call-to-action .visual-element .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  display: flex;
  justify-content: space-around;
}

.call-to-action .visual-element .image-overlay .stat-item {
  text-align: center;
}

.call-to-action .visual-element .image-overlay .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--contrast-color);
}

.call-to-action .visual-element .image-overlay .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-to-action .visual-element:hover .hero-image {
  transform: scale(1.05);
}

.call-to-action .newsletter-section {
  margin-bottom: 5rem;
}

.call-to-action .newsletter-section .newsletter-card {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .newsletter-section .newsletter-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .call-to-action .newsletter-section .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.call-to-action .newsletter-section .newsletter-content .newsletter-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-to-action .newsletter-section .newsletter-content .newsletter-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.call-to-action .newsletter-section .newsletter-content .newsletter-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.call-to-action .newsletter-section .newsletter-content .newsletter-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 1.1rem;
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 576px) {
  .call-to-action .newsletter-section .newsletter-form .form-wrapper {
    flex-direction: column;
  }
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input {
  flex: 1;
  padding: 18px 25px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 60px 0 0 60px;
  font-size: 1rem;
  background: var(--surface-color);
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input {
    border-radius: 60px;
    margin-bottom: 1rem;
  }
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn {
  padding: 18px 25px;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 0 60px 60px 0;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn {
    border-radius: 60px;
    width: 100%;
  }
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(2px);
}

.call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn i {
  font-size: 1.2rem;
}

.call-to-action .newsletter-section .newsletter-form .trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.call-to-action .newsletter-section .newsletter-form .trust-indicators i {
  color: var(--accent-color);
}

.call-to-action .benefits-showcase .benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.call-to-action .benefits-showcase .benefits-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.call-to-action .benefits-showcase .benefits-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.call-to-action .benefits-showcase .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.call-to-action .benefits-showcase .benefit-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 95%);
}

.call-to-action .benefits-showcase .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .benefits-showcase .benefit-card .benefit-visual {
  position: relative;
  margin-bottom: 2rem;
}

.call-to-action .benefits-showcase .benefit-card .benefit-visual .benefit-icon-wrap {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.call-to-action .benefits-showcase .benefit-card .benefit-visual .benefit-icon-wrap i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.call-to-action .benefits-showcase .benefit-card .benefit-visual .benefit-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.call-to-action .benefits-showcase .benefit-card .benefit-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.call-to-action .benefits-showcase .benefit-card .benefit-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}

.call-to-action input[type=email] {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.call-to-action input[type=email]:focus {
  border-color: var(--accent-color);
}

.call-to-action input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/*--------------------------------------------------------------
# Travel About Section
--------------------------------------------------------------*/
.travel-about .intro-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.travel-about .intro-content .lead {
  font-size: .9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-weight: 400;
}

.travel-about .hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.travel-about .hero-image img {
  transition: transform 0.5s ease;
}

.travel-about .hero-image img:hover {
  transform: scale(1.05);
}

.travel-about .hero-image .floating-stats {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .travel-about .hero-image .floating-stats {
    bottom: 12px;
    right: 12px;
    gap: 0.5rem;
  }
}

.travel-about .hero-image .floating-stats .stat-item {
  background: var(--surface-color);
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  min-width: 80px;
}

@media (max-width: 768px) {
  .travel-about .hero-image .floating-stats .stat-item {
    padding: 1rem 0.8rem;
    min-width: 70px;
  }
}

.travel-about .hero-image .floating-stats .stat-item .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

@media (max-width: 768px) {
  .travel-about .hero-image .floating-stats .stat-item .number {
    font-size: 1.4rem;
  }
}

.travel-about .hero-image .floating-stats .stat-item .label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 0.3rem;
}

.travel-about .story-content .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.travel-about .story-content .story-badge i {
  font-size: 1.1rem;
}

.travel-about .story-content h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .travel-about .story-content h3 {
    font-size: 2rem;
  }
}

.travel-about .story-content p {
  font-size: .9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.travel-about .story-content .mission-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-about .story-content .mission-box .mission-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.travel-about .story-content .mission-box .mission-text h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.travel-about .story-content .mission-box .mission-text p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-about .features-grid .section-header h3 {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.travel-about .features-grid .section-header p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.travel-about .features-grid .feature-card {
  height: 280px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.travel-about .features-grid .feature-card .feature-front,
.travel-about .features-grid .feature-card .feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.travel-about .features-grid .feature-card .feature-front {
  background: var(--surface-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-about .features-grid .feature-card .feature-front .feature-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.travel-about .features-grid .feature-card .feature-front h4 {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.travel-about .features-grid .feature-card .feature-front p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: .8rem;
  margin: 0;
  line-height: 1.5;
}

.travel-about .features-grid .feature-card .feature-back {
  background: var(--accent-color);
  transform: rotateY(180deg);
}

.travel-about .features-grid .feature-card .feature-back p {
  color: var(--contrast-color);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

.travel-about .features-grid .feature-card:hover .feature-front {
  transform: rotateY(180deg);
}

.travel-about .features-grid .feature-card:hover .feature-back {
  transform: rotateY(0deg);
}

.travel-about .cta-banner {
  background: url('../img/wave.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  border-radius: 24px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.travel-about .cta-banner .cta-overlay {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

@media (max-width: 768px) {
  .travel-about .cta-banner .cta-overlay {
    padding: 2rem;
  }
}

.travel-about .cta-banner .cta-content {
  text-align: center;
  color: var(--contrast-color);
}

.travel-about .cta-banner .cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--contrast-color);
}


.travel-about .cta-banner .cta-content p {
  font-size: .9rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.travel-about .cta-banner .cta-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.travel-about .cta-banner .cta-content .cta-buttons .btn {
  padding: .5rem 2rem;
  font-weight: 400;
  border-radius: 50px;
  font-size: .9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--contrast-color), transparent 60%);
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.travel-about .cta-banner .cta-content .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Destinations Section
--------------------------------------------------------------*/
.travel-destinations .destination-filters {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.travel-destinations .destination-filters li {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destinations .destination-filters li {
    padding: 8px 18px;
    font-size: 13px;
  }
}

.travel-destinations .destination-filters li:hover,
.travel-destinations .destination-filters li.filter-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-destinations .isotope-container .destination-item {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .travel-destinations .isotope-container .destination-item {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .travel-destinations .isotope-container .destination-item {
    margin-bottom: 20px;
  }
}

.travel-destinations .isotope-container .destination-tile {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  cursor: pointer;
}

.travel-destinations .isotope-container .destination-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 80%);
}

.travel-destinations .isotope-container .destination-tile .tile-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.travel-destinations .isotope-container .destination-tile .tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-destinations .isotope-container .destination-tile .tile-image:hover img {
  transform: scale(1.1);
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, #000, transparent 80%) 50%, color-mix(in srgb, #000, transparent 20%) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag {
  align-self: flex-end;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.luxury {
  background-color: #d4af37;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.cultural {
  background-color: #8b5cf6;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.adventure {
  background-color: #f59e0b;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.nature {
  background-color: #42b751;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.modern {
  background-color: #3b82f6;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.romantic {
  background-color: #ec4899;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.popular {
  background-color: #ef4444;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.trekking {
  background-color: #92400e;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.ancient {
  background-color: #7c2d12;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-tag.family {
  background-color: #06b6d4;
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info {
  color: white;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats .tours-available {
  font-size: 13px;
  opacity: 0.8;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats .tours-available i {
  margin-right: 4px;
}

.travel-destinations .isotope-container .destination-tile .tile-image .overlay-content .destination-info .destination-stats .starting-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
}

.travel-destinations .planning-assistance {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .travel-destinations .planning-assistance {
    padding: 40px 25px;
  }
}

.travel-destinations .planning-assistance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.travel-destinations .planning-assistance .assistance-content {
  position: relative;
  z-index: 1;
}

.travel-destinations .planning-assistance .assistance-content h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .travel-destinations .planning-assistance .assistance-content h3 {
    font-size: 26px;
  }
}

.travel-destinations .planning-assistance .assistance-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .travel-destinations .planning-assistance .assistance-content .assistance-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.travel-destinations .planning-assistance .assistance-content .assistance-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Destination Details Section
--------------------------------------------------------------*/
.travel-destination-details .destination-hero {
  margin-bottom: 80px;
}

.travel-destination-details .destination-hero .hero-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.travel-destination-details .destination-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-destination-details .destination-hero .hero-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.travel-destination-details .destination-hero .hero-image .hero-content {
  text-align: center;
  color: var(--contrast-color);
}

.travel-destination-details .destination-hero .hero-image .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image .hero-content h1 {
    font-size: 2.5rem;
  }
}

.travel-destination-details .destination-hero .hero-image .hero-content .hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.travel-destination-details .destination-overview {
  margin-bottom: 80px;
  text-align: center;
}

.travel-destination-details .destination-overview h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.travel-destination-details .destination-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-destination-details .attractions-section {
  margin-bottom: 80px;
}

.travel-destination-details .attractions-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .attractions-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .attractions-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .attractions-section .attraction-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.travel-destination-details .attractions-section .attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .attractions-section .attraction-item .attraction-image {
  height: 200px;
  overflow: hidden;
}

.travel-destination-details .attractions-section .attraction-item .attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.travel-destination-details .attractions-section .attraction-item .attraction-content {
  padding: 25px;
}

.travel-destination-details .attractions-section .attraction-item .attraction-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.travel-destination-details .attractions-section .attraction-item .attraction-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.travel-destination-details .attractions-section .attraction-item:hover .attraction-image img {
  transform: scale(1.1);
}

.travel-destination-details .tours-section {
  margin-bottom: 80px;
}

.travel-destination-details .tours-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .tours-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .tours-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .tours-section .tour-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: 0.3s;
  height: 100%;
}

.travel-destination-details .tours-section .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .tours-section .tour-card .tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.travel-destination-details .tours-section .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.travel-destination-details .tours-section .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.travel-destination-details .tours-section .tour-card .tour-content {
  padding: 25px;
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span i {
  color: var(--accent-color);
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating {
  color: #ffc107;
}

.travel-destination-details .tours-section .tour-card .tour-content .tour-meta span.rating i {
  color: #ffc107;
}

.travel-destination-details .tours-section .tour-card .tour-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.travel-destination-details .tours-section .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.travel-destination-details .tours-section .tour-card .tour-content .btn-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.travel-destination-details .tours-section .tour-card .tour-content .btn-tour:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.travel-destination-details .tours-section .tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.travel-destination-details .map-section {
  margin-bottom: 80px;
}

.travel-destination-details .map-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .map-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .map-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .map-section .map-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destination-details .map-section .map-container .map-embed {
  height: 400px;
}

.travel-destination-details .map-section .map-container .map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.travel-destination-details .map-section .map-container .map-points {
  padding: 25px;
  background: var(--surface-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.travel-destination-details .map-section .map-container .map-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.travel-destination-details .map-section .map-container .map-points .point-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.travel-destination-details .map-section .map-container .map-points .point-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.travel-destination-details .practical-info {
  margin-bottom: 80px;
}

.travel-destination-details .practical-info .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .practical-info .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .practical-info .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .practical-info .info-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: 0.3s;
}

.travel-destination-details .practical-info .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-destination-details .practical-info .info-item .info-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.travel-destination-details .practical-info .info-item .info-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.travel-destination-details .practical-info .info-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .practical-info .info-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  font-size: 0.95rem;
}

.travel-destination-details .practical-info .travel-tips {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destination-details .practical-info .travel-tips h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.travel-destination-details .practical-info .travel-tips .tips-list {
  list-style: none;
  padding: 0;
}

.travel-destination-details .practical-info .travel-tips .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.travel-destination-details .practical-info .travel-tips .tips-list li i {
  color: var(--accent-color);
  margin-top: 3px;
  font-size: 1.1rem;
}

.travel-destination-details .gallery-section {
  margin-bottom: 80px;
}

.travel-destination-details .gallery-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.travel-destination-details .gallery-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.travel-destination-details .gallery-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-destination-details .gallery-section .swiper-wrapper {
  height: auto !important;
}

.travel-destination-details .gallery-section .gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 10px;
}

.travel-destination-details .gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.travel-destination-details .gallery-section .gallery-item img:hover {
  transform: scale(1.05);
}

.travel-destination-details .gallery-section .swiper-pagination {
  margin-top: 30px;
}

.travel-destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.travel-destination-details .gallery-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.travel-destination-details .cta-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  text-align: center;
}

.travel-destination-details .cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .travel-destination-details .cta-section h2 {
    font-size: 2rem;
  }
}

.travel-destination-details .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.travel-destination-details .cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.travel-destination-details .cta-section .cta-buttons .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--contrast-color);
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-primary:hover {
  background: transparent;
  color: var(--contrast-color);
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.travel-destination-details .cta-section .cta-buttons .btn.btn-outline:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.section-subtitle {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.travel-tours .featured-tours-slider .swiper-wrapper {
  height: auto !important;
}

.travel-tours .featured-tours-slider .swiper-pagination {
  bottom: 0;
}

.travel-tours .featured-tours-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.travel-tours .featured-tours-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.travel-tours .featured-tour-card {
  background-color: #fffcf7;
  transition: transform 0.3s ease;
  border: 2px solid #27aae1;
  border-radius: 24px;
  overflow: hidden;
}

.featured-tour-card.exclusive {
  border: 2px solid #feb602;
}

.travel-tours .featured-tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-tours .featured-tour-card .tour-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-content {
  padding: 12px;
}

.travel-tours .featured-tour-card .duration {
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  right: 10px;
  font-weight: normal;
}

.travel-tours .featured-tour-card .duration span {
  background: linear-gradient(90deg, #bf0101, transparent);
  color: var(--contrast-color);
  backdrop-filter: blur(1px);
  font-weight: normal;
}

.package-class {
  background: rgb(0 0 0 / 70%);
  backdrop-filter: blur(3px);
  width: 30px;
  height: 30px;
  border-radius: 50px;
  color: #feb602;
  font-size: 1.2rem;
  text-align: center;
  position: absolute;
  top: 12px;
  left: 12px;
}

.travel-tours .featured-tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.travel-tours .featured-tour-card .tour-content p.travel-period {
  font-size: .8rem;
  font-weight: 400;
  color: #5e5e5e;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.travel-tours .featured-tour-card .tour-content p.travel-period i {
  color: var(--accent-color);
}

.travel-tours .featured-tour-card .tour-content .tour-meta {
  align-items: center;
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-family: var(--heading-font);
}

.travel-tours .featured-tour-card .tour-content .tour-meta span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #404040;
  margin-right: 12px;
  display: block;
}

.travel-tours .featured-tour-card .tour-content .tour-meta i {
  margin-right: 0.2rem;
}

.travel-tours .category-card {
  text-align: center;
  padding: 12px;
  background-color: var(--surface-color);
  border-radius: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e8f1ed;
}

.travel-tours .category-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.travel-tours .category-card .category-icon {
  margin-bottom: 1rem;
}

.travel-tours .category-card .category-icon img {
  border-radius: 12px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.travel-tours .category-card h5 {
  color: var(--heading-color);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.travel-tours .special-offers .offer-banner {
  display: flex;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 15px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

.travel-tours .special-offers .offer-banner .offer-content {
  flex: 1;
  padding: 2rem;
  color: var(--contrast-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.travel-tours .special-offers .offer-banner .offer-content .discount-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.travel-tours .special-offers .offer-banner .offer-content h4 {
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.travel-tours .special-offers .offer-banner .offer-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.travel-tours .special-offers .offer-banner .offer-content .urgency {
  color: #ffeb3b;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.travel-tours .special-offers .offer-banner .offer-content .btn-accent {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  align-self: flex-start;
}

.travel-tours .special-offers .offer-banner .offer-content .btn-accent:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.travel-tours .special-offers .offer-banner .offer-image {
  flex: 0 0 200px;
}

.travel-tours .special-offers .offer-banner .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-tours .tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.travel-tours .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel-tours .tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-tours .tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .tour-card .tour-image .tour-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
}

.travel-tours .tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.travel-tours .tour-card .tour-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.travel-tours .tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.travel-tours .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.travel-tours .tour-card .tour-content .tour-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tours .tour-card .tour-content .tour-details span {
  display: flex;
  align-items: center;
}

.travel-tours .tour-card .tour-content .tour-details span i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.travel-tours .tour-card .tour-content .btn {
  align-self: flex-start;
}

.travel-tours .cta-section {
  background-color: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.travel-tours .cta-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.travel-tours .cta-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .travel-tours .cta-section .cta-buttons .btn {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }

  .travel-tours .cta-section .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.travel-tours .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tours .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.travel-tours .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tours .btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Travel Tour Details Section
--------------------------------------------------------------*/
.travel-tour-details .tour-hero {
  margin-bottom: 24px;
  background: #f2f2f2;
  border-radius: 15px;
}

.travel-tour-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.travel-tour-details .tour-hero .hero-image-wrapper img {
  height: 350px;
  object-fit: cover;
}

.hero-content-wrapper {
  padding: 24px;
}

.tour-badge {
  background: #ffffff;
  color: #00b3de;
  display: inline-block;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 12px;
}

.tour-badge.exclusive {
  background: #50bc5e;
  color: #fff;
}

.hero-content-wrapper .package-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hcw-item h4 {
  font-size: .9rem;
  margin: 0;
}

.hcw-item p {
  margin: 0;
  color: #2ea23f;
  font-size: .8rem;
}

.hcw-item.exclusive p {
  color: #00b3de;
}

.tour-price {
  padding: 12px 24px;
  border: 2px solid #b7e4ee;
  border-radius: 15px;
  background: #f1fcff;
}

.tour-price.exclusive {
  border-color: #50bc5e;
  background: #e6f9e8;
}

.tour-price h5,
.tour-price h2 span {
  font-size: .8rem;
  color: #9a9a9a;
}

.tour-price h2 {
  font-size: 1.5rem;
}

.btn.btn-default {
  padding: 8px 24px;
  background: #2d6a8f;
  color: #fff;
  border-radius: 8px;
  font-family: var(--heading-font);
}

.tour-price.exclusive .btn.btn-default,
.btn-default.exclusive {
  background: #50bc5e;
}

.lock-icon.exclusive {
  background: #50bc5e;
  color: #fff;
}

.tour_navigation .nav-item .nav-link {
  color: #1c4b56;
}

.tour-price.exclusive .tour_navigation .nav-item .nav-link {
  color: #50bc5e;
}

#tourNavigation {
  position: sticky;
  top: 80px;
  z-index: 995;
  background: #f2f2f2;
  border-radius: 50px;
}

.tour-info {
  margin-bottom: 24px;
}

.tour-info-heading {
  text-transform: uppercase;
  color: #9A9A94;
  font-size: .8rem;
  margin-bottom: 24px;
}

.tour-info-content * {
  font-size: .9rem;
}

.travel-tour-details .tour-hero .hero-content .hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.travel-tour-details .tour-hero .hero-content .hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.travel-tour-details .tour-hero .hero-content .hero-meta span i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.travel-tour-details .tour-hero .hero-content .hero-meta .rating i {
  color: #f59e0b;
}

.travel-tour-details .tour-hero .hero-content .hero-tagline {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .travel-destination-details .destination-hero .hero-image {
    height: 350px;
    border-radius: 15px;
  }

  .travel-tours .special-offers .offer-banner {
    flex-direction: column;
  }

  .travel-tours .special-offers .offer-banner .offer-image {
    flex: none;
    height: 150px;
  }

  .travel-tour-details .tour-hero .hero-image-wrapper img {
    height: 350px;
  }

  .travel-tour-details .tour-hero .hero-content .hero-tagline {
    font-size: 1rem;
  }

  .travel-tour-details .tour-hero .hero-content .hero-meta {
    gap: 15px;
  }

  .travel-tour-details .tour-itinerary .itinerary-timeline::before {
    left: 25px;
  }

  .travel-tour-details .tour-itinerary .itinerary-item {
    padding-left: 80px;
  }

  .travel-tour-details .tour-itinerary .itinerary-item .day-number {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }

  .travel-tour-details .tour-pricing .pricing-table {
    padding: 25px;
  }
}

.travel-tour-details .tour-hero .hero-content .btn-book,
.travel-tour-details .tour-highlights .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.travel-tour-details .tour-hero .hero-content .btn-book.btn-whatsapp {
  background: var(--whatsapp-color);
}

.travel-tour-details .tour-hero .hero-content .btn-book:hover,
.travel-tour-details .tour-highlights .btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.travel-tour-details .tour-overview h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.travel-tour-details .tour-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}

.travel-tour-details .tour-overview .tour-highlights {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: sticky;
  top: 90px;
}

.travel-tour-details .tour-overview .tour-highlights h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.travel-tour-details .tour-overview .tour-highlights h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.travel-tour-details .tour-overview .tour-highlights h2 span {
  font-weight: normal;
  font-size: .8rem;
}

.travel-tour-details .tour-overview .tour-highlights h5 {
  font-size: .9rem;
}

.travel-tour-details .tour-overview .tour-highlights p {
  font-size: .9rem;
}

.travel-tour-details .tour-overview .tour-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.travel-tour-details .tour-overview .tour-highlights ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  background: var(--accent-color);
  border-radius: 50px;
}

.travel-tour-details .tour-overview .tour-highlights ul li i {
  color: var(--contrast-color);
  font-size: .9rem;
}

.travel-tour-details .tour-overview .tour-highlights ul li a {
  color: var(--contrast-color);
  font-size: .7rem;
}

.travel-tour-details .tour-overview .tour-highlights form .form-label {
  font-family: var(--heading-font);
  font-size: .8rem;
}

.travel-tour-details .tour-itinerary {
  margin-bottom: 60px;
}

.travel-tour-details .tour-itinerary h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-itinerary .itinerary-timeline {
  position: relative;
}

.travel-tour-details .tour-itinerary .itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color);
}

.travel-tour-details .tour-itinerary .itinerary-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 40px;
}

.travel-tour-details .tour-itinerary .itinerary-item .day-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content .day-details {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content .day-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-itinerary .itinerary-item .day-content .day-details span i {
  color: var(--accent-color);
}

.travel-tour-details .tour-inclusions h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.travel-tour-details .tour-inclusions h3 i {
  font-size: 1.6rem;
}

.travel-tour-details .tour-inclusions .included-section h3 {
  color: #28a745;
}

.travel-tour-details .tour-inclusions .included-section h3 i {
  color: #28a745;
}

.travel-tour-details .tour-inclusions .excluded-section h3 {
  color: #dc3545;
}

.travel-tour-details .tour-inclusions .excluded-section h3 i {
  color: #dc3545;
}

.travel-tour-details .tour-inclusions .inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-tour-details .tour-inclusions .inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  padding: 6px 0;
  color: var(--default-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tour-details .tour-inclusions .inclusion-list li:last-child {
  border-bottom: none;
}

.travel-tour-details .tour-inclusions .inclusion-list li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.travel-tour-details .tour-inclusions .inclusion-list.included i {
  color: #28a745;
}

.travel-tour-details .tour-inclusions .inclusion-list.excluded i {
  color: #dc3545;
}

.travel-tour-details .tour-pricing h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-pricing .pricing-table {
  background: var(--surface-color);
  border-radius: 6px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tour-details .tour-pricing .pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.travel-tour-details .tour-pricing .pricing-header .price-item h3 {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.travel-tour-details .tour-pricing .pricing-header .price-item .price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.travel-tour-details .tour-pricing .pricing-header .price-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-pricing .pricing-details {
  margin-bottom: 40px;
}

.travel-tour-details .tour-pricing .pricing-details .price-type {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.travel-tour-details .tour-pricing .pricing-details .price-type h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.travel-tour-details .tour-pricing .pricing-details .price-type .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.travel-tour-details .tour-pricing .pricing-details .price-type p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .tour-pricing .available-dates h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-pricing .available-dates .dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.travel-tour-details .tour-pricing .available-dates .date-option {
  text-align: center;
  padding: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.travel-tour-details .tour-pricing .available-dates .date-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .tour-pricing .available-dates .date-option .date {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.travel-tour-details .tour-pricing .available-dates .date-option .availability {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-tour-details .booking-section {
  margin-bottom: 60px;
}

.travel-tour-details .booking-section .booking-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  max-width: 800px;
  margin: 0 auto;
}

.travel-tour-details .booking-section .booking-card h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .booking-section .booking-card .form-group {
  margin-bottom: 25px;
}

.travel-tour-details .booking-section .booking-card .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
}

.travel-tour-details .booking-section .booking-card .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.travel-tour-details .booking-section .booking-card .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

.travel-tour-details .booking-section .booking-card .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-tour-details .booking-section .booking-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tour-details .booking-section .booking-card .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
}

.travel-tour-details .tour-gallery {
  margin-bottom: 60px;
}

.travel-tour-details .tour-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--heading-color);
  text-align: center;
}

.travel-tour-details .tour-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item:hover {
  transform: scale(1.03);
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.travel-tour-details .tour-gallery .gallery-grid .gallery-item a:hover img {
  filter: brightness(1.1);
}

.travel-tour-details .final-cta .cta-content {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
}


.travel-tour-details .final-cta .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.travel-tour-details .final-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.travel-tour-details .final-cta .cta-content .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-primary,
.travel-tour-details .final-cta .cta-content .cta-actions .btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--contrast-color), black 10%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
}

.travel-tour-details .final-cta .cta-content .cta-actions .btn-secondary:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.travel-tour-details .final-cta .cta-content .urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
}

.travel-tour-details .final-cta .cta-content .urgency-banner i {
  color: #ffc107;
}

/*--------------------------------------------------------------
# Travel Booking Section
--------------------------------------------------------------*/
.travel-booking .booking-form-container {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin-bottom: 30px;
}

.travel-booking .booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  border-bottom: 0;
}

.travel-booking .booking-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  z-index: 1;
}

.travel-booking .booking-progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: var(--surface-color);
  padding: 0 15px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.travel-booking .booking-progress .step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.travel-booking .booking-progress .step .step-title {
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: center;
  transition: 0.3s;
}

.travel-booking .booking-progress .step:hover .step-number {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.travel-booking .booking-progress .step:hover .step-title {
  color: var(--accent-color);
}

.travel-booking .booking-progress .step.active .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-booking .booking-progress .step.active .step-title {
  color: var(--accent-color);
}

.travel-booking .booking-progress .step.completed .step-number {
  background-color: #28a745;
  color: var(--contrast-color);
}

.travel-booking .booking-progress .step.completed .step-number::before {
  content: "✓";
  font-size: 16px;
}

.travel-booking .booking-form .tab-content .form-step.tab-pane {
  display: none;
}

.travel-booking .booking-form .tab-content .form-step.tab-pane.show.active {
  display: block;
}

.travel-booking .booking-form .tab-content .form-step h4 {
  color: var(--heading-color);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.travel-booking .booking-form .tab-content .form-step h5 {
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-size: 18px;
}

.travel-booking .booking-form label {
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 8px;
  display: block;
}

.travel-booking .booking-form input[type=text],
.travel-booking .booking-form input[type=email],
.travel-booking .booking-form input[type=tel],
.travel-booking .booking-form input[type=date],
.travel-booking .booking-form select,
.travel-booking .booking-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: 0.3s;
}

.travel-booking .booking-form input[type=text]:focus,
.travel-booking .booking-form input[type=email]:focus,
.travel-booking .booking-form input[type=tel]:focus,
.travel-booking .booking-form input[type=date]:focus,
.travel-booking .booking-form select:focus,
.travel-booking .booking-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.travel-booking .booking-form input[type=text]::placeholder,
.travel-booking .booking-form input[type=email]::placeholder,
.travel-booking .booking-form input[type=tel]::placeholder,
.travel-booking .booking-form input[type=date]::placeholder,
.travel-booking .booking-form select::placeholder,
.travel-booking .booking-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-booking .booking-form .form-navigation {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.travel-booking .booking-form .form-navigation .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  border: none;
}

.travel-booking .booking-form .form-navigation .btn.btn-prev {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}

.travel-booking .booking-form .form-navigation .btn.btn-prev:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-booking .booking-form .form-navigation .btn.btn-next,
.travel-booking .booking-form .form-navigation .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-booking .booking-form .form-navigation .btn.btn-next:hover,
.travel-booking .booking-form .form-navigation .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

.travel-booking .addon-options .addon-item {
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.travel-booking .addon-options .addon-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.travel-booking .addon-options .addon-item .addon-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.travel-booking .addon-options .addon-item .addon-details .addon-check {
  flex: 1;
}

.travel-booking .addon-options .addon-item .addon-details .addon-check input[type=checkbox] {
  margin-right: 15px;
  transform: scale(1.2);
}

.travel-booking .addon-options .addon-item .addon-details .addon-check label {
  cursor: pointer;
  margin-bottom: 0;
}

.travel-booking .addon-options .addon-item .addon-details .addon-check label h5 {
  margin: 0 0 5px;
  font-size: 16px;
}

.travel-booking .addon-options .addon-item .addon-details .addon-check label p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .addon-options .addon-item .addon-details .addon-price {
  text-align: right;
}

.travel-booking .addon-options .addon-item .addon-details .addon-price .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
  display: block;
}

.travel-booking .addon-options .addon-item .addon-details .addon-price .period {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-booking .payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.travel-booking .payment-methods .method-selector {
  flex: 1;
}

.travel-booking .payment-methods .method-selector input[type=radio] {
  display: none;
}

.travel-booking .payment-methods .method-selector input[type=radio]:checked+label {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.travel-booking .payment-methods .method-selector label {
  display: block;
  padding: 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 0;
}

.travel-booking .payment-methods .method-selector label:hover {
  border-color: var(--accent-color);
}

.travel-booking .payment-methods .method-selector label i {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.travel-booking .secure-payment {
  background-color: var(--background-color);
  border: 1px solid #28a745;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #28a745;
}

.travel-booking .secure-payment i {
  font-size: 20px;
}

.travel-booking .terms-agreement {
  margin-top: 25px;
  padding: 20px;
  background-color: var(--background-color);
  border-radius: 8px;
}

.travel-booking .terms-agreement .form-check {
  display: flex;
  align-items: start;
  gap: 10px;
}

.travel-booking .terms-agreement .form-check .form-check-input {
  margin-top: 3px;
}

.travel-booking .terms-agreement .form-check .form-check-label {
  margin-bottom: 0;
  font-size: 14px;
}

.travel-booking .terms-agreement .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.travel-booking .terms-agreement .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.travel-booking .booking-summary {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  position: sticky;
  top: 100px;
}

.travel-booking .booking-summary .summary-header {
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.travel-booking .booking-summary .summary-header h4 {
  margin: 0;
  color: var(--heading-color);
}

.travel-booking .booking-summary .selected-tour {
  margin-bottom: 25px;
}

.travel-booking .booking-summary .selected-tour img {
  border-radius: 10px;
  margin-bottom: 15px;
}

.travel-booking .booking-summary .selected-tour .tour-info h5 {
  margin: 0 0 10px;
  color: var(--heading-color);
}

.travel-booking .booking-summary .selected-tour .tour-info p {
  margin: 5px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-booking .booking-summary .selected-tour .tour-info p i {
  color: var(--accent-color);
  margin-right: 8px;
}

.travel-booking .booking-summary .booking-details {
  margin-bottom: 25px;
}

.travel-booking .booking-summary .booking-details .detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-booking .booking-summary .booking-details .detail-item .label {
  font-weight: 500;
  color: var(--default-color);
}

.travel-booking .booking-summary .booking-details .detail-item .value {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-booking .booking-summary .price-breakdown {
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 20px;
}

.travel-booking .booking-summary .price-breakdown .price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.travel-booking .booking-summary .price-breakdown .price-item .description {
  color: var(--default-color);
}

.travel-booking .booking-summary .price-breakdown .price-item .amount {
  font-weight: 500;
  color: var(--default-color);
}

.travel-booking .booking-summary .price-breakdown .price-item.tax-item {
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.travel-booking .booking-summary .price-breakdown .price-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--accent-color);
}

.travel-booking .booking-summary .price-breakdown .price-total .description {
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
}

.travel-booking .booking-summary .price-breakdown .price-total .amount {
  font-weight: 600;
  font-size: 24px;
  color: var(--accent-color);
}

.travel-booking .booking-summary .help-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-booking .booking-summary .help-section h5 {
  margin: 0 0 15px;
  color: var(--heading-color);
  font-size: 16px;
}

.travel-booking .booking-summary .help-section p {
  margin: 0 0 15px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.travel-booking .booking-summary .help-section .contact-info p {
  margin: 5px 0;
  font-size: 14px;
}

.travel-booking .booking-summary .help-section .contact-info p i {
  color: var(--accent-color);
  margin-right: 8px;
  width: 16px;
}

.travel-booking .booking-summary .help-section .support-hours {
  margin-top: 10px;
}

.travel-booking .booking-summary .help-section .support-hours small {
  color: #28a745;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .travel-booking .booking-summary {
    margin-top: 30px;
    position: static;
  }
}

@media (max-width: 576px) {
  .travel-booking .booking-form-container {
    padding: 25px 20px;
  }

  .travel-booking .booking-summary {
    padding: 20px;
  }

  .travel-booking .addon-options .addon-item .addon-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .travel-booking .payment-methods .method-selector label {
    padding: 12px;
  }

  .travel-booking .payment-methods .method-selector label i {
    font-size: 18px;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }

  .price-type.currency-switch {
    margin: 0px 0 12px;
  }

  .tour-price h2 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 2px solid #d8d8d8;
  border-radius: 12px;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 102px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .contact-form-wrapper {
    padding: 30px;
  }

  .hb-content h1 {
    font-size: 2rem;
  }

  .hb-content p {
    font-size: 14px;
  }

  .search-area {
    padding: 12px;
  }

  .country-card {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .contact .form-container-overlap {
    margin-bottom: 24px;
  }

  .contact .contact-info-box {
    margin-bottom: 24px;
  }

  .contact .contact-form-wrapper {
    padding: 24px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }

  .tp-description {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tour-overview .tab-content .tab-pane {
    padding: 12px;
  }

  .hb-content h1 {
    font-size: 1.5rem;
  }

  .hb-content h1 {
    margin: 12px 0
  }

  .hb-content h6 {
    font-size: 12px;
  }

  .hb-content h6::after,
  .hb-content h6::before {
    content: inherit;
  }

  .travel-booking .payment-methods {
    flex-direction: column;
  }

  .travel-booking .booking-progress .step .step-title {
    font-size: 12px;
  }

  .travel-booking .booking-progress .step .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .travel-tour-details .final-cta .cta-content h2 {
    font-size: 2rem;
  }

  .travel-tour-details .final-cta .cta-content {
    padding: 40px 20px;
  }

  .travel-tour-details .booking-section .booking-card {
    padding: 25px;
  }

  .travel-tour-details .tour-pricing .pricing-header .price-item .price-amount {
    font-size: 2.5rem;
  }

  #tourNavigation {
    display: none;
  }
}

@media (max-width: 576px) {

  .contact .contact-form-wrapper {
    padding: 20px;
  }

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

  .contact .map-section {
    height: 400px;
  }

  .hb-img {
    height: 750px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

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

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }

  .fd-box.fd-box-full {
    height: 238px;
    margin-bottom: 24px;
  }

  .travel-about .cta-banner {
    min-height: 450px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.footer-logo img {
  height: 80px;
}

.title-with-icon {
  display: flex;
  align-items: center;
}

.title-icon {
  margin-left: 1rem;
  position: relative;
}

.car-animation {
  animation: car 3s linear infinite;
}

@keyframes car {
  0% {
    left: 0px;
    opacity: .5;
  }

  50% {
    left: 30px;
    opacity: 1;
  }

  100% {
    left: 60px;
    opacity: 0;
  }
}

.plane-animation {
  display: inline-block;
  animation: takeoff 2s ease-in-out infinite;
}

@keyframes takeoff {
  0% {
    transform: translate(0, 0);
    opacity: .5;
  }

  50% {
    transform: translate(16px, -16px);
    opacity: 1;
  }

  100% {
    transform: translate(32px, -32px);
    opacity: 0;
  }
}

.tour-slide {
  margin-bottom: 44px;
}

.tour-slider .item img {
  border-radius: 12px;
}

.tour-slider .owl-theme .owl-nav {
  position: absolute;
  right: 0;
}

.tour-slider .owl-theme .owl-dots {
  position: absolute;
  left: 0;
  margin-top: 12px;
}

.tour-slider .owl-theme .owl-dots .owl-dot span {
  margin: 5px 2px;
  background: #edfcff;
}

.tour-slider .owl-theme .owl-dots .owl-dot.active span,
.tour-slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #00b3de;
}

.tour-slider .owl-theme .owl-nav [class*=owl-] {
  padding: 4px 12px !important;
  background: #edfcff;
  font-size: 13px;
  border-radius: 50px;
  color: #00b3de;
}

.tour-content .price h5 {
  font-weight: 500;
  font-size: 1.2rem;
}

.tour-content .price h5 span {
  font-size: 14px;
  text-decoration: line-through;
  text-decoration-color: red;
}

.tour-content .price p {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.package-btn {
  margin-top: 12px;
}

.package-btn a {
  color: #fff;
  display: block;
  padding: 8px 12px;
  font-size: .8rem;
  text-align: center;
  background: var(--heading-color);
  border-radius: 50px;
  font-family: var(--heading-font);
}

.package-btn a i {
  display: inline-block;
  transition: all .5s ease;
}

.package-btn a:hover {
  background: var(--accent-color);
}

.package-btn a:hover i {
  transform: rotate(-45deg);
}

.price-type a {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: bold;
  background: #e8e8e8;
  width: 30px;
  text-align: center;
  border-radius: 3px;
  color: var(--default-color);
}

.price-type a.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.custom-owl-nav.owl-theme .owl-nav [class*=owl-],
.google-reviews.owl-theme .owl-nav [class*=owl-] {
  padding: 4px 12px !important;
  background: #edfcff;
  font-size: 13px;
  border-radius: 50px;
  color: #00b3de;
}

.tour-overview .nav .nav-item .nav-link {
  color: #919191;
}

.tour-overview .nav .nav-item .nav-link.active {
  color: #00b3de;
}

.tour-overview .tab-content .tab-pane {
  padding: 24px;
  background: #f9f9f9;
  border-radius: 5px;
  margin: 12px 0;
}

.tour-overview .tab-content .tab-pane h5 {
  font-size: 1rem;
}

.tour-overview .tab-content .tab-pane p {
  font-size: .9rem;
}

/*--------------------------------------------------------------
# Featured Destination Section
--------------------------------------------------------------*/
.fd-box {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.fd-box:hover .fdb-img img {
  transform: scale(1.1);
}

.fd-box .fdb-img {
  height: 100%;
  position: relative;
}

.fd-box .fdb-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(0deg, transparent 70.75%, rgba(0, 0, 0, .28) 87.16%, rgba(0, 0, 0, .33) 93.6%, rgba(0, 0, 0, .4)), linear-gradient(180deg, transparent 57.83%, rgba(0, 0, 0, .35) 81.49%, rgba(0, 0, 0, .41) 90.78%, rgba(0, 0, 0, .5));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.fd-box .fdb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
}

.fd-box .fdb-description {
  padding: 16px;
  position: absolute;
  top: 0;
  z-index: 4;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.fd-box .fdb-description .fdbd-top .batch {
  display: inline-block;
  padding: 3px 6px;
  background: #fff0bb;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.fd-box .fdb-description .fdbd-top .batch i {
  color: red;
}

.fd-box .fdb-description .fdbd-top h2 {
  color: #fff;
  margin-top: 6px;
  font-weight: 600;
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-price p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-price h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-action a {
  display: inline-block;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 100%;
  border: 1px solid #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-action a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s ease;
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-action a:after {
  content: "";
  background-color: #00B3DE;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 50%;
  transform: translateY(42px);
  transition: all .3s ease-in-out;
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-action a:hover i {
  transform: rotate(-45deg);
}

.fd-box .fdb-description .fdbd-bottom .fdbdb-action a:hover:after {
  transform: translateY(0);
}

.fd-box-full {
  height: 500px;
}

.fd-box-half {
  height: 238px;
}

.ti-places {
  height: 200px;
  overflow-y: auto;
}

.ti-place {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
}

.ti-place h3 {
  font-size: .9rem;
  color: #898989;
  margin: 0;
  min-width: 80px;
}

.ti-place h2 {
  font-size: 1.3rem;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid #b8b8b8;
}

.ti-places-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d2d2d2;
  padding-top: 12px;
}

.ti-places-foot-content {
  font-size: 1rem;
  color: #2d6a8f;
  font-family: var(--heading-font);
}

h5.text-uppercase {
  font-size: .9rem;
  color: #939393;
}

.tour-info-itinerary h2 {
  font-size: 1.2rem;
}

.tour-info-itinerary p {
  font-size: .8rem;
}

.tour-info-itinerary-lock {
  padding: 24px;
  border: 1px dashed #c8c8c8;
  border-radius: 15px;
}

.lock-icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50px;
  background: #cdf5ff;
  font-size: 1.5rem;
  margin: 0 auto 24px;
}

.tour-info-itinerary-lock p {
  font-size: .9rem;
  color: #898989;
}

.itinerary-form input::placeholder {
  font-size: .9rem;
  color: #969696;
}

.tour-filters {
  padding: 12px 12px 0;
  background: #f2f2f2;
  font-family: var(--heading-font);
}

.tour-filters label {
  color: #606060;
}

.list-group.category-list a .list-text {
  font-size: .9rem;
  font-family: var(--heading-font);
}


.floting-btn {
  width: 78%;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 123;
}

.msg_count {
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: red;
  position: absolute;
  top: 0px;
  left: 5px;
  z-index: 1;
}

.floating_btn {
  position: fixed;
  bottom: 60px;
  right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 18px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

.owl-carousel.google-reviews .owl-item .author-profile-img {
  width: auto;
}

.country-badge {
  background: rgb(0 0 0 / 50%);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 1.8rem;
  text-transform: uppercase;
  font-family: var(--heading-font);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.floating_btn.floating_package_btn {
  position: inherit !important;
  z-index: 1 !important;
}

.city-item-container {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.city-item {
  min-width: 110px;
  height: 80px;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  flex: 0 0 auto;
}

.city-item:hover {
  background-color: #f0f7ff;
}

.city-item.active {
  background-color: #f0f7ff;
}

.filter-container {
  position: sticky;
  top: 90px;
}

.card.filter-card {
  border: 1px solid #e8f1ed;
  background: #EEF0F3;
}

#filterCanvasBottom {
  height: 80vh;
}

.filter-container .card-body {
  overflow-y: auto;
  height: 75vh;
  padding: 0;
}

a.filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  transition: all 0.5s ease;
  border-radius: 5px;
  text-transform: uppercase;
  color: #3f3f3f;
  font-size: .8rem;
}

.filter-item {
  border-bottom: 1px solid #d8d8d8;
}

.filter-item:last-child {
  border-bottom: 0;
}

.filter-item .filter-content {
  margin: 0 0 12px 12px;
}

.filter-item .filter-content .form-check .form-check-label {
  font-size: .8rem;
}

.menu-bg {
  background: linear-gradient(45deg, #003a48, #00aed7);
  height: 84px;
}

.menu-bg.exclusive {
  background: linear-gradient(45deg, #003a48, #36af51);
}

.currency_select {
  width: 85px;
  padding: 2px 15px;
  border-radius: 50px;
  border: 0;
  background-color: #00aed7;
  color: #ffffff;
  font-weight: 600;
}

.exclusive .currency_select {
  background-color: #50bc5e;
}

.gallery-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 9px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 12px;
  font-family: var(--heading-font);
  z-index: 5;
}

.gallery-img {
  transition: 0.3s ease;
  cursor: pointer;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.fancybox__container {
  z-index: 999999 !important;
}

.travel-by-regions {
  background: #eeffec;
}

.explore-by-interest {
  background: #ecf3ff;
}

.interest-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(0deg, black, transparent);
}

.interest-name h5 {
  font-size: 1rem;
  color: var(--contrast-color);
}

.footer-top-action {
  background: #97bdc5;
  padding: 24px 0;
}

.ft-card {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.ft-card-text h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

.ft-card-text p {
  font-size: .8rem;
  margin: 0;
}

.ft-card-icon i {
  font-size: 2rem;
  color: rgb(57 176 74 / 42%);
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}

/* Form Check */

.custom-checkbox .form-check-input {
  width: 16px;
  height: 16px;
  border: 1px solid var(--secondary-color);
  border-radius: 0px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  position: relative;
}

.custom-checkbox .form-check-input:checked {
  background: var(--secondary-color);
}

.custom-checkbox .form-check-input:checked::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 3px;
  top: -3px;
}

.custom-checkbox .form-check-label {
  cursor: pointer;
}