/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Sarabun",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Kanit",  sans-serif;
  --nav-font: "Prompt",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #226C13; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #226C13; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #34bf49; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #34bf49; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #001C1A;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
.bggold{
	background-color: #EDE4C9;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 10px 18px;
    font-family: var(--nav-font);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 50px;
    background: transparent;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu>ul>li:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 15px);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: 99;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    min-width: 220px;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 12px 16px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--nav-dropdown-color);
    border-radius: 8px;
    margin: 2px 0;
  }

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

  .navmenu .dropdown ul a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    transform: translateY(0);
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: -8px;
    left: calc(-100% - 8px);
    visibility: hidden;
    transform: translateX(10px);
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -8px;
    left: calc(-100% - 8px);
    transform: translateX(0);
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
  }

  .mobile-nav-toggle:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 16px 16px 16px;
    padding: 20px 12px;
    margin: 0;
    border-radius: 20px;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 14px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 4px 0;
  }

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

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

  .navmenu a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active,
  .navmenu .active:focus {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    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: 8px;
    margin: 8px 0 8px 16px;
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 50%);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.4s ease-in-out;
    box-shadow: none;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 12px 16px;
    font-size: 15px;
  }

  .navmenu .dropdown ul ul {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    margin-left: 12px;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 28px;
    top: 16px;
    right: 16px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 60px 0;
  font-size: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer a {
  color: var(--default-color) !important;
}

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

.footer .copyright {
  margin-top: 50px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .copyright p,
.footer .copyright .credits {
  margin: 2px 0;
}

.footer .btn-learn-more {
  background-color: var(--accent-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
  color: var(--contrast-color) !important;
}

.footer .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color) !important;
}

.footer .widget .widget-heading {
  font-size: 15px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.footer .widget ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer .widget ul li a {
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.footer .widget ul li a:hover {
  text-decoration: none;
  color: var(--heading-color);
}

.footer .widget .footer-blog-entry .date {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 12px;
}

.footer .social-icons li {
  display: inline-block;
}

.footer .social-icons li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .social-icons li a span {
  color: color-mix(in srgb, var(--heading-color), transparent 0%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease-in-out;
}

.footer .social-icons li a:hover {
  background: var(--accent-color);
}

.footer .social-icons li a:hover span {
  color: var(--contrast-color);
}

.footer .social-icons li:first-child a {
  padding-left: 0;
}

.footer .footer-subscribe form {
  position: relative;
}

.footer .footer-subscribe .form-control {
  font-size: 14px;
  height: 42px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  color: var(--heading-color);
  padding-right: 40px;
}

.footer .footer-subscribe .form-control:focus {
  border-color: color-mix(in srgb, var(--default-color), transparent 10%);
  box-shadow: none;
}

.footer .footer-subscribe .form-control::placeholder {
  color: color-mix(in srgb, var(--heading-color), transparent 60%);
}

.footer .footer-subscribe .btn-link {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  background-color: none;
  border-color: none;
  position: absolute;
  line-height: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  top: 20px;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
}

.footer .footer-subscribe .btn-link:hover,
.footer .footer-subscribe .btn-link:focus,
.footer .footer-subscribe .btn-link:active {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}

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

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  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: 34px;
  font-weight: 500;
  margin-bottom: 0;
}

.section-title p {
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
	margin: 2px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about h1 {
  color: var(--heading-color);
  font-size: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.about .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.about .section-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 {
  --background-color: #003430;
}

.about-2 .content {
  background-color: var(--surface-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about-2 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.cards .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
  z-index: 2;
}

.cards .card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cards .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 30px;
}

.cards .card .card-body h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
  padding-left: 10px;
  border-left: 3px solid #CAB15F;
}

.cards .card .card-body h3 a {
  color: var(--contrast-color);
}

.cards .card .card-body .card-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.cards .card .card-body .card-content p {
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--contrast-color);
}

.cards .card:hover .card-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery{
	background-color: #FFF;
}
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-2 .info-item+.info-item {
  margin-top: 40px;
}

.contact-2 .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact-2 .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-2 .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact-2 .php-email-form {
  height: 100%;
}

.contact-2 .php-email-form input[type=text],
.contact-2 .php-email-form input[type=email],
.contact-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .php-email-form input[type=text]:focus,
.contact-2 .php-email-form input[type=email]:focus,
.contact-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact-2 .php-email-form input[type=text]::placeholder,
.contact-2 .php-email-form input[type=email]::placeholder,
.contact-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Tour Details Section
--------------------------------------------------------------*/
.tour-details .tour-hero {
  margin-bottom: 80px;
}

.tour-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 70vh;
  min-height: 500px;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay {
    padding: 40px 30px;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
  color: var(--contrast-color);
  max-width: 600px;
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
    gap: 20px;
  }
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.tour-details .tour-essence {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .tour-essence {
    margin-bottom: 80px;
  }
}

.tour-details .tour-essence .essence-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tour-details .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.tour-details .tour-essence .essence-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.tour-details .tour-essence .essence-content .highlights-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .tour-details .tour-essence .essence-content .highlights-compact {
    grid-template-columns: 1fr;
  }
}

.tour-details .tour-essence .essence-content .highlights-compact .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-details .tour-essence .essence-content .highlights-compact .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-details .tour-essence .pricing-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .tour-details .tour-essence .pricing-card {
    margin-top: 40px;
  }
}

.tour-details .tour-essence .pricing-card .price-header {
  margin-bottom: 12px;
}

.tour-details .tour-essence .pricing-card .price-header .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.tour-details .tour-essence .pricing-card .price-header .price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
}

.tour-details .tour-essence .pricing-card .price-description {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 32px;
}

.tour-details .tour-essence .pricing-card .btn-reserve {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details .tour-essence .pricing-card .btn-reserve:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.tour-details .tour-essence .pricing-card .booking-notes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details .tour-essence .pricing-card .booking-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details .tour-essence .pricing-card .booking-notes span i {
  color: var(--accent-color);
}

.tour-details .journey-timeline {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .journey-timeline {
    margin-bottom: 80px;
  }
}

.tour-details .journey-timeline h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details .journey-timeline .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tour-details .journey-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

.tour-details .journey-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-item {
    gap: 30px;
    margin-bottom: 40px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .tour-details .journey-timeline .timeline-item .timeline-content {
    padding: 24px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .tour-details .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-header .location {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 12px;
}

.tour-details .journey-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 16px;
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-details .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 4px 10px;
  border-radius: 8px;
}

.tour-details .inclusions-overview {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details .inclusions-overview {
    margin-bottom: 80px;
  }
}

.tour-details .inclusions-overview .included-section h3,
.tour-details .inclusions-overview .not-included-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.tour-details .inclusions-overview .inclusion-list .inclusion-item,
.tour-details .inclusions-overview .inclusion-list .exclusion-item,
.tour-details .inclusions-overview .exclusion-list .inclusion-item,
.tour-details .inclusions-overview .exclusion-list .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-details .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details .inclusions-overview .exclusion-list .inclusion-item i,
.tour-details .inclusions-overview .exclusion-list .exclusion-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-details .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details .inclusions-overview .exclusion-list .inclusion-item i {
  color: #28a745;
}

.tour-details .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details .inclusions-overview .exclusion-list .exclusion-item i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 992px) {
  .tour-details .booking-section {
    margin-bottom: 80px;
  }
}

.tour-details .booking-section .departure-dates h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.tour-details .booking-section .departure-dates .dates-grid {
  display: grid;
  gap: 16px;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-color);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option:hover {
  border-color: var(--accent-color);
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-info .month {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details {
  text-align: right;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 4px;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.tour-details .booking-section .booking-form-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tour-details .booking-section .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-details .booking-section .booking-form-card {
    padding: 30px;
  }
}

.tour-details .booking-section .booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

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

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

.tour-details .booking-section .booking-form-card .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

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

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

.tour-details .booking-section .booking-form-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.tour-details .booking-section .booking-form-card .booking-assurance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details .booking-section .booking-form-card .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details .booking-section .booking-form-card .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tour-details .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
  margin-bottom: 0;
}

.tour-details .visual-gallery {
  margin-bottom: 100px;
}

.tour-details .visual-gallery h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details .visual-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}

@media (max-width: 992px) {
  .tour-details .visual-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
}

@media (max-width: 768px) {
  .tour-details .visual-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 160px);
  }
}

.tour-details .visual-gallery .gallery-grid .gallery-piece {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-details .visual-gallery .gallery-grid .gallery-piece:hover {
  transform: scale(1.02);
}

.tour-details .visual-gallery .gallery-grid .gallery-piece.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .tour-details .visual-gallery .gallery-grid .gallery-piece.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .tour-details .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

.tour-details .visual-gallery .gallery-grid .gallery-piece a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-details .visual-gallery .gallery-grid .gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .tour-details .final-call .call-content {
    padding: 60px 40px;
  }
}

.tour-details .final-call .call-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tour-details .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.tour-details .final-call .call-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tour-details .final-call .call-content p {
    font-size: 1rem;
  }
}

.tour-details .final-call .call-content .call-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tour-details .final-call .call-content .call-actions .btn-primary-cta,
.tour-details .final-call .call-content .call-actions .btn-contact {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.tour-details .final-call .call-content .call-actions .btn-contact {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 {
  background-color: #F1EBD8;
}

.gallery-2 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.2s ease;
}

.gallery-2 .gallery-card:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 88%);
}

.gallery-2 .gallery-card a {
  display: block;
  position: relative;
}

.gallery-2 .gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-2 .gallery-card .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-2 .gallery-card .gallery-overlay i {
  font-size: 28px;
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--contrast-color);
  border-radius: 4px;
}

.gallery-2 .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Tour Details 2 Section
--------------------------------------------------------------*/
.tour-details-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tour-details-2 .tour-hero {
  margin-bottom: 80px;
}

.tour-details-2 .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 70vh;
  min-height: 500px;
}

@media (max-width: 768px) {
  .tour-details-2 .tour-hero .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
  }
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

@media (max-width: 768px) {
  .tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay {
    padding: 40px 30px;
  }
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
  color: var(--contrast-color);
  max-width: 600px;
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
    gap: 20px;
  }
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-details-2 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.tour-details-2 .tour-essence {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-2 .tour-essence {
    margin-bottom: 80px;
  }
}

.tour-details-2 .tour-essence .essence-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tour-details-2 .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.tour-details-2 .tour-essence .essence-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.tour-details-2 .tour-essence .essence-content .highlights-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .tour-details-2 .tour-essence .essence-content .highlights-compact {
    grid-template-columns: 1fr;
  }
}

.tour-details-2 .tour-essence .essence-content .highlights-compact .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-details-2 .tour-essence .essence-content .highlights-compact .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-details-2 .tour-essence .pricing-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .tour-details-2 .tour-essence .pricing-card {
    margin-top: 40px;
  }
}

.tour-details-2 .tour-essence .pricing-card .price-header {
  margin-bottom: 12px;
}

.tour-details-2 .tour-essence .pricing-card .price-header .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.tour-details-2 .tour-essence .pricing-card .price-header .price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
}

.tour-details-2 .tour-essence .pricing-card .price-description {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 32px;
}

.tour-details-2 .tour-essence .pricing-card .btn-reserve {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details-2 .tour-essence .pricing-card .btn-reserve:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.tour-details-2 .tour-essence .pricing-card .booking-notes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-2 .tour-essence .pricing-card .booking-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-2 .tour-essence .pricing-card .booking-notes span i {
  color: var(--accent-color);
}

.tour-details-2 .journey-timeline {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-2 .journey-timeline {
    margin-bottom: 80px;
  }
}

.tour-details-2 .journey-timeline h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-2 .journey-timeline .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tour-details-2 .journey-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .tour-details-2 .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

.tour-details-2 .journey-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .tour-details-2 .journey-timeline .timeline-item {
    gap: 30px;
    margin-bottom: 40px;
  }
}

.tour-details-2 .journey-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tour-details-2 .journey-timeline .timeline-item .timeline-marker .day-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-details-2 .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .tour-details-2 .journey-timeline .timeline-item .timeline-content {
    padding: 24px;
  }
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .tour-details-2 .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content .day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content .day-header .location {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 12px;
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 16px;
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content .day-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-details-2 .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 4px 10px;
  border-radius: 8px;
}

.tour-details-2 .inclusions-overview {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-2 .inclusions-overview {
    margin-bottom: 80px;
  }
}

.tour-details-2 .inclusions-overview .included-section h3,
.tour-details-2 .inclusions-overview .not-included-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.tour-details-2 .inclusions-overview .inclusion-list .inclusion-item,
.tour-details-2 .inclusions-overview .inclusion-list .exclusion-item,
.tour-details-2 .inclusions-overview .exclusion-list .inclusion-item,
.tour-details-2 .inclusions-overview .exclusion-list .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-details-2 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-2 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-2 .inclusions-overview .exclusion-list .inclusion-item i,
.tour-details-2 .inclusions-overview .exclusion-list .exclusion-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-details-2 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-2 .inclusions-overview .exclusion-list .inclusion-item i {
  color: #28a745;
}

.tour-details-2 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-2 .inclusions-overview .exclusion-list .exclusion-item i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tour-details-2 .booking-section {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-2 .booking-section {
    margin-bottom: 80px;
  }
}

.tour-details-2 .booking-section .departure-dates h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.tour-details-2 .booking-section .departure-dates .dates-grid {
  display: grid;
  gap: 16px;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-color);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option:hover {
  border-color: var(--accent-color);
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-info .month {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-details {
  text-align: right;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-details .price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 4px;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.tour-details-2 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.tour-details-2 .booking-section .booking-form-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tour-details-2 .booking-section .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-details-2 .booking-section .booking-form-card {
    padding: 30px;
  }
}

.tour-details-2 .booking-section .booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

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

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

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

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

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

.tour-details-2 .booking-section .booking-form-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.tour-details-2 .booking-section .booking-form-card .booking-assurance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-2 .booking-section .booking-form-card .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-2 .booking-section .booking-form-card .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tour-details-2 .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
  margin-bottom: 0;
}

.tour-details-2 .visual-gallery {
  margin-bottom: 100px;
}

.tour-details-2 .visual-gallery h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-2 .visual-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}

@media (max-width: 992px) {
  .tour-details-2 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
}

@media (max-width: 768px) {
  .tour-details-2 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 160px);
  }
}

.tour-details-2 .visual-gallery .gallery-grid .gallery-piece {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-details-2 .visual-gallery .gallery-grid .gallery-piece:hover {
  transform: scale(1.02);
}

.tour-details-2 .visual-gallery .gallery-grid .gallery-piece.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .tour-details-2 .visual-gallery .gallery-grid .gallery-piece.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.tour-details-2 .visual-gallery .gallery-grid .gallery-piece.medium {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .tour-details-2 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .tour-details-2 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

.tour-details-2 .visual-gallery .gallery-grid .gallery-piece a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-details-2 .visual-gallery .gallery-grid .gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .tour-details-2 .final-call .call-content {
    padding: 60px 40px;
  }
}

.tour-details-2 .final-call .call-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tour-details-2 .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.tour-details-2 .final-call .call-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tour-details-2 .final-call .call-content p {
    font-size: 1rem;
  }
}

.tour-details-2 .final-call .call-content .call-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tour-details-2 .final-call .call-content .call-actions .btn-primary-cta,
.tour-details-2 .final-call .call-content .call-actions .btn-contact {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.tour-details-2 .final-call .call-content .call-actions .btn-contact {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 {
  background-color: #F1EBD8;
}

.gallery-3 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.2s ease;
}

.gallery-3 .gallery-card:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 88%);
}

.gallery-3 .gallery-card a {
  display: block;
  position: relative;
}

.gallery-3 .gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-3 .gallery-card .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-3 .gallery-card .gallery-overlay i {
  font-size: 28px;
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--contrast-color);
  border-radius: 4px;
}

.gallery-3 .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Tour Details 3 Section
--------------------------------------------------------------*/
.tour-details-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tour-details-3 .tour-hero {
  margin-bottom: 80px;
}

.tour-details-3 .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 70vh;
  min-height: 500px;
}

@media (max-width: 768px) {
  .tour-details-3 .tour-hero .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
  }
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

@media (max-width: 768px) {
  .tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay {
    padding: 40px 30px;
  }
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
  color: var(--contrast-color);
  max-width: 600px;
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
    gap: 20px;
  }
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-details-3 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.tour-details-3 .tour-essence {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-3 .tour-essence {
    margin-bottom: 80px;
  }
}

.tour-details-3 .tour-essence .essence-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tour-details-3 .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.tour-details-3 .tour-essence .essence-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.tour-details-3 .tour-essence .essence-content .highlights-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .tour-details-3 .tour-essence .essence-content .highlights-compact {
    grid-template-columns: 1fr;
  }
}

.tour-details-3 .tour-essence .essence-content .highlights-compact .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-details-3 .tour-essence .essence-content .highlights-compact .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-details-3 .tour-essence .pricing-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .tour-details-3 .tour-essence .pricing-card {
    margin-top: 40px;
  }
}

.tour-details-3 .tour-essence .pricing-card .price-header {
  margin-bottom: 12px;
}

.tour-details-3 .tour-essence .pricing-card .price-header .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.tour-details-3 .tour-essence .pricing-card .price-header .price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
}

.tour-details-3 .tour-essence .pricing-card .price-description {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 32px;
}

.tour-details-3 .tour-essence .pricing-card .btn-reserve {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details-3 .tour-essence .pricing-card .btn-reserve:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.tour-details-3 .tour-essence .pricing-card .booking-notes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-3 .tour-essence .pricing-card .booking-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-3 .tour-essence .pricing-card .booking-notes span i {
  color: var(--accent-color);
}

.tour-details-3 .journey-timeline {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-3 .journey-timeline {
    margin-bottom: 80px;
  }
}

.tour-details-3 .journey-timeline h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-3 .journey-timeline .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tour-details-3 .journey-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .tour-details-3 .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

.tour-details-3 .journey-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .tour-details-3 .journey-timeline .timeline-item {
    gap: 30px;
    margin-bottom: 40px;
  }
}

.tour-details-3 .journey-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tour-details-3 .journey-timeline .timeline-item .timeline-marker .day-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-details-3 .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .tour-details-3 .journey-timeline .timeline-item .timeline-content {
    padding: 24px;
  }
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .tour-details-3 .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content .day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content .day-header .location {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 12px;
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 16px;
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content .day-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-details-3 .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 4px 10px;
  border-radius: 8px;
}

.tour-details-3 .inclusions-overview {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-3 .inclusions-overview {
    margin-bottom: 80px;
  }
}

.tour-details-3 .inclusions-overview .included-section h3,
.tour-details-3 .inclusions-overview .not-included-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.tour-details-3 .inclusions-overview .inclusion-list .inclusion-item,
.tour-details-3 .inclusions-overview .inclusion-list .exclusion-item,
.tour-details-3 .inclusions-overview .exclusion-list .inclusion-item,
.tour-details-3 .inclusions-overview .exclusion-list .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-details-3 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-3 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-3 .inclusions-overview .exclusion-list .inclusion-item i,
.tour-details-3 .inclusions-overview .exclusion-list .exclusion-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-details-3 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-3 .inclusions-overview .exclusion-list .inclusion-item i {
  color: #28a745;
}

.tour-details-3 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-3 .inclusions-overview .exclusion-list .exclusion-item i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tour-details-3 .booking-section {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-3 .booking-section {
    margin-bottom: 80px;
  }
}

.tour-details-3 .booking-section .departure-dates h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.tour-details-3 .booking-section .departure-dates .dates-grid {
  display: grid;
  gap: 16px;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-color);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option:hover {
  border-color: var(--accent-color);
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-info .month {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-details {
  text-align: right;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-details .price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 4px;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.tour-details-3 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.tour-details-3 .booking-section .booking-form-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tour-details-3 .booking-section .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-details-3 .booking-section .booking-form-card {
    padding: 30px;
  }
}

.tour-details-3 .booking-section .booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

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

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

.tour-details-3 .booking-section .booking-form-card .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

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

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

.tour-details-3 .booking-section .booking-form-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.tour-details-3 .booking-section .booking-form-card .booking-assurance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-3 .booking-section .booking-form-card .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-3 .booking-section .booking-form-card .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tour-details-3 .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
  margin-bottom: 0;
}

.tour-details-3 .visual-gallery {
  margin-bottom: 100px;
}

.tour-details-3 .visual-gallery h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-3 .visual-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}

@media (max-width: 992px) {
  .tour-details-3 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
}

@media (max-width: 768px) {
  .tour-details-3 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 160px);
  }
}

.tour-details-3 .visual-gallery .gallery-grid .gallery-piece {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-details-3 .visual-gallery .gallery-grid .gallery-piece:hover {
  transform: scale(1.02);
}

.tour-details-3 .visual-gallery .gallery-grid .gallery-piece.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .tour-details-3 .visual-gallery .gallery-grid .gallery-piece.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.tour-details-3 .visual-gallery .gallery-grid .gallery-piece.medium {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .tour-details-3 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .tour-details-3 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

.tour-details-3 .visual-gallery .gallery-grid .gallery-piece a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-details-3 .visual-gallery .gallery-grid .gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .tour-details-3 .final-call .call-content {
    padding: 60px 40px;
  }
}

.tour-details-3 .final-call .call-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tour-details-3 .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.tour-details-3 .final-call .call-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tour-details-3 .final-call .call-content p {
    font-size: 1rem;
  }
}

.tour-details-3 .final-call .call-content .call-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tour-details-3 .final-call .call-content .call-actions .btn-primary-cta,
.tour-details-3 .final-call .call-content .call-actions .btn-contact {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.tour-details-3 .final-call .call-content .call-actions .btn-contact {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/*--------------------------------------------------------------
# Gallery 4 Section
--------------------------------------------------------------*/
.gallery-4 {
  background-color: #F1EBD8;
}

.gallery-4 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.2s ease;
}

.gallery-4 .gallery-card:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 88%);
}

.gallery-4 .gallery-card a {
  display: block;
  position: relative;
}

.gallery-4 .gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-4 .gallery-card .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-4 .gallery-card .gallery-overlay i {
  font-size: 28px;
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--contrast-color);
  border-radius: 4px;
}

.gallery-4 .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Tour Details 4 Section
--------------------------------------------------------------*/
.tour-details-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tour-details-4 .tour-hero {
  margin-bottom: 80px;
}

.tour-details-4 .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 70vh;
  min-height: 500px;
}

@media (max-width: 768px) {
  .tour-details-4 .tour-hero .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
  }
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

@media (max-width: 768px) {
  .tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay {
    padding: 40px 30px;
  }
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
  color: var(--contrast-color);
  max-width: 800px;
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
    gap: 20px;
  }
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-details-4 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.tour-details-4 .tour-essence {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-4 .tour-essence {
    margin-bottom: 80px;
  }
}

.tour-details-4 .tour-essence .essence-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tour-details-4 .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.tour-details-4 .tour-essence .essence-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.tour-details-4 .tour-essence .essence-content .highlights-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .tour-details-4 .tour-essence .essence-content .highlights-compact {
    grid-template-columns: 1fr;
  }
}

.tour-details-4 .tour-essence .essence-content .highlights-compact .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-details-4 .tour-essence .essence-content .highlights-compact .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-details-4 .tour-essence .pricing-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .tour-details-4 .tour-essence .pricing-card {
    margin-top: 40px;
  }
}

.tour-details-4 .tour-essence .pricing-card .price-header {
  margin-bottom: 12px;
}

.tour-details-4 .tour-essence .pricing-card .price-header .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.tour-details-4 .tour-essence .pricing-card .price-header .price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
}

.tour-details-4 .tour-essence .pricing-card .price-description {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 32px;
}

.tour-details-4 .tour-essence .pricing-card .btn-reserve {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details-4 .tour-essence .pricing-card .btn-reserve:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.tour-details-4 .tour-essence .pricing-card .booking-notes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-4 .tour-essence .pricing-card .booking-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-4 .tour-essence .pricing-card .booking-notes span i {
  color: var(--accent-color);
}

.tour-details-4 .journey-timeline {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-4 .journey-timeline {
    margin-bottom: 80px;
  }
}

.tour-details-4 .journey-timeline h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-4 .journey-timeline .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tour-details-4 .journey-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .tour-details-4 .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

.tour-details-4 .journey-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .tour-details-4 .journey-timeline .timeline-item {
    gap: 30px;
    margin-bottom: 40px;
  }
}

.tour-details-4 .journey-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tour-details-4 .journey-timeline .timeline-item .timeline-marker .day-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-details-4 .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .tour-details-4 .journey-timeline .timeline-item .timeline-content {
    padding: 24px;
  }
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .tour-details-4 .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content .day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content .day-header .location {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 12px;
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 16px;
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content .day-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-details-4 .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 4px 10px;
  border-radius: 8px;
}

.tour-details-4 .inclusions-overview {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-4 .inclusions-overview {
    margin-bottom: 80px;
  }
}

.tour-details-4 .inclusions-overview .included-section h3,
.tour-details-4 .inclusions-overview .not-included-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.tour-details-4 .inclusions-overview .inclusion-list .inclusion-item,
.tour-details-4 .inclusions-overview .inclusion-list .exclusion-item,
.tour-details-4 .inclusions-overview .exclusion-list .inclusion-item,
.tour-details-4 .inclusions-overview .exclusion-list .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-details-4 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-4 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-4 .inclusions-overview .exclusion-list .inclusion-item i,
.tour-details-4 .inclusions-overview .exclusion-list .exclusion-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-details-4 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-4 .inclusions-overview .exclusion-list .inclusion-item i {
  color: #28a745;
}

.tour-details-4 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-4 .inclusions-overview .exclusion-list .exclusion-item i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tour-details-4 .booking-section {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-4 .booking-section {
    margin-bottom: 80px;
  }
}

.tour-details-4 .booking-section .departure-dates h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.tour-details-4 .booking-section .departure-dates .dates-grid {
  display: grid;
  gap: 16px;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-color);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option:hover {
  border-color: var(--accent-color);
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-info .month {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-details {
  text-align: right;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-details .price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 4px;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.tour-details-4 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.tour-details-4 .booking-section .booking-form-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tour-details-4 .booking-section .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-details-4 .booking-section .booking-form-card {
    padding: 30px;
  }
}

.tour-details-4 .booking-section .booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

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

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

.tour-details-4 .booking-section .booking-form-card .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

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

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

.tour-details-4 .booking-section .booking-form-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.tour-details-4 .booking-section .booking-form-card .booking-assurance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-4 .booking-section .booking-form-card .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-4 .booking-section .booking-form-card .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tour-details-4 .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
  margin-bottom: 0;
}

.tour-details-4 .visual-gallery {
  margin-bottom: 100px;
}

.tour-details-4 .visual-gallery h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-4 .visual-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}

@media (max-width: 992px) {
  .tour-details-4 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
}

@media (max-width: 768px) {
  .tour-details-4 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 160px);
  }
}

.tour-details-4 .visual-gallery .gallery-grid .gallery-piece {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-details-4 .visual-gallery .gallery-grid .gallery-piece:hover {
  transform: scale(1.02);
}

.tour-details-4 .visual-gallery .gallery-grid .gallery-piece.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .tour-details-4 .visual-gallery .gallery-grid .gallery-piece.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.tour-details-4 .visual-gallery .gallery-grid .gallery-piece.medium {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .tour-details-4 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .tour-details-4 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

.tour-details-4 .visual-gallery .gallery-grid .gallery-piece a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-details-4 .visual-gallery .gallery-grid .gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .tour-details-4 .final-call .call-content {
    padding: 60px 40px;
  }
}

.tour-details-4 .final-call .call-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tour-details-4 .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.tour-details-4 .final-call .call-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tour-details-4 .final-call .call-content p {
    font-size: 1rem;
  }
}

.tour-details-4 .final-call .call-content .call-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tour-details-4 .final-call .call-content .call-actions .btn-primary-cta,
.tour-details-4 .final-call .call-content .call-actions .btn-contact {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.tour-details-4 .final-call .call-content .call-actions .btn-contact {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/*--------------------------------------------------------------
# Gallery 5 Section
--------------------------------------------------------------*/
.gallery-5 {
  background-color: #F1EBD8;
}

.gallery-5 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.2s ease;
}

.gallery-5 .gallery-card:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 88%);
}

.gallery-5 .gallery-card a {
  display: block;
  position: relative;
}

.gallery-5 .gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-5 .gallery-card .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-5 .gallery-card .gallery-overlay i {
  font-size: 28px;
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--contrast-color);
  border-radius: 4px;
}

.gallery-5 .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Tour Details 5 Section
--------------------------------------------------------------*/
.tour-details-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tour-details-5 .tour-hero {
  margin-bottom: 80px;
}

.tour-details-5 .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 70vh;
  min-height: 500px;
}

@media (max-width: 768px) {
  .tour-details-5 .tour-hero .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
    border-radius: 16px;
  }
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

@media (max-width: 768px) {
  .tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay {
    padding: 40px 30px;
  }
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content {
  color: var(--contrast-color);
  max-width: 800px;
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .tour-type {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats {
    gap: 20px;
  }
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-details-5 .tour-hero .hero-image-wrapper .hero-overlay .hero-content .hero-stats .stat-item i {
  font-size: 1rem;
  opacity: 0.8;
}

.tour-details-5 .tour-essence {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-5 .tour-essence {
    margin-bottom: 80px;
  }
}

.tour-details-5 .tour-essence .essence-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tour-details-5 .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.tour-details-5 .tour-essence .essence-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.tour-details-5 .tour-essence .essence-content .highlights-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .tour-details-5 .tour-essence .essence-content .highlights-compact {
    grid-template-columns: 1fr;
  }
}

.tour-details-5 .tour-essence .essence-content .highlights-compact .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--default-color);
}

.tour-details-5 .tour-essence .essence-content .highlights-compact .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tour-details-5 .tour-essence .pricing-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 992px) {
  .tour-details-5 .tour-essence .pricing-card {
    margin-top: 40px;
  }
}

.tour-details-5 .tour-essence .pricing-card .price-header {
  margin-bottom: 12px;
}

.tour-details-5 .tour-essence .pricing-card .price-header .price-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.tour-details-5 .tour-essence .pricing-card .price-header .price-amount {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
}

.tour-details-5 .tour-essence .pricing-card .price-description {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 32px;
}

.tour-details-5 .tour-essence .pricing-card .btn-reserve {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tour-details-5 .tour-essence .pricing-card .btn-reserve:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.tour-details-5 .tour-essence .pricing-card .booking-notes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-5 .tour-essence .pricing-card .booking-notes span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-5 .tour-essence .pricing-card .booking-notes span i {
  color: var(--accent-color);
}

.tour-details-5 .journey-timeline {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-5 .journey-timeline {
    margin-bottom: 80px;
  }
}

.tour-details-5 .journey-timeline h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-5 .journey-timeline .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.tour-details-5 .journey-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
  .tour-details-5 .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

.tour-details-5 .journey-timeline .timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .tour-details-5 .journey-timeline .timeline-item {
    gap: 30px;
    margin-bottom: 40px;
  }
}

.tour-details-5 .journey-timeline .timeline-item .timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.tour-details-5 .journey-timeline .timeline-item .timeline-marker .day-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tour-details-5 .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .tour-details-5 .journey-timeline .timeline-item .timeline-content {
    padding: 24px;
  }
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content .day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .tour-details-5 .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content .day-header h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content .day-header .location {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 12px;
  border-radius: 12px;
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 16px;
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content .day-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tour-details-5 .journey-timeline .timeline-item .timeline-content .day-features .feature-tag {
  font-size: 0.75rem;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 4px 10px;
  border-radius: 8px;
}

.tour-details-5 .inclusions-overview {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-5 .inclusions-overview {
    margin-bottom: 80px;
  }
}

.tour-details-5 .inclusions-overview .included-section h3,
.tour-details-5 .inclusions-overview .not-included-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.tour-details-5 .inclusions-overview .inclusion-list .inclusion-item,
.tour-details-5 .inclusions-overview .inclusion-list .exclusion-item,
.tour-details-5 .inclusions-overview .exclusion-list .inclusion-item,
.tour-details-5 .inclusions-overview .exclusion-list .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tour-details-5 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-5 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-5 .inclusions-overview .exclusion-list .inclusion-item i,
.tour-details-5 .inclusions-overview .exclusion-list .exclusion-item i {
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-details-5 .inclusions-overview .inclusion-list .inclusion-item i,
.tour-details-5 .inclusions-overview .exclusion-list .inclusion-item i {
  color: #28a745;
}

.tour-details-5 .inclusions-overview .inclusion-list .exclusion-item i,
.tour-details-5 .inclusions-overview .exclusion-list .exclusion-item i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tour-details-5 .booking-section {
  margin-bottom: 100px;
}

@media (max-width: 992px) {
  .tour-details-5 .booking-section {
    margin-bottom: 80px;
  }
}

.tour-details-5 .booking-section .departure-dates h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.tour-details-5 .booking-section .departure-dates .dates-grid {
  display: grid;
  gap: 16px;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-color);
  padding: 24px 28px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option:hover {
  border-color: var(--accent-color);
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-info .month {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-info .dates {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-details {
  text-align: right;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-details .price {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 4px;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-details .availability {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.available {
  background: color-mix(in srgb, #28a745, transparent 85%);
  color: #28a745;
}

.tour-details-5 .booking-section .departure-dates .dates-grid .date-option .date-details .availability.limited {
  background: color-mix(in srgb, #ffc107, transparent 75%);
  color: #856404;
}

.tour-details-5 .booking-section .booking-form-card {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .tour-details-5 .booking-section .booking-form-card {
    margin-top: 40px;
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-details-5 .booking-section .booking-form-card {
    padding: 30px;
  }
}

.tour-details-5 .booking-section .booking-form-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 32px;
  text-align: center;
}

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

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

.tour-details-5 .booking-section .booking-form-card .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

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

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

.tour-details-5 .booking-section .booking-form-card .btn-submit {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.tour-details-5 .booking-section .booking-form-card .booking-assurance {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.tour-details-5 .booking-section .booking-form-card .booking-assurance .assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.tour-details-5 .booking-section .booking-form-card .booking-assurance .assurance-item i {
  color: var(--accent-color);
  font-size: 1rem;
}

.tour-details-5 .booking-section .booking-form-card .booking-assurance .assurance-item:last-child {
  margin-bottom: 0;
}

.tour-details-5 .visual-gallery {
  margin-bottom: 100px;
}

.tour-details-5 .visual-gallery h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
}

.tour-details-5 .visual-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}

@media (max-width: 992px) {
  .tour-details-5 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
}

@media (max-width: 768px) {
  .tour-details-5 .visual-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 160px);
  }
}

.tour-details-5 .visual-gallery .gallery-grid .gallery-piece {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tour-details-5 .visual-gallery .gallery-grid .gallery-piece:hover {
  transform: scale(1.02);
}

.tour-details-5 .visual-gallery .gallery-grid .gallery-piece.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .tour-details-5 .visual-gallery .gallery-grid .gallery-piece.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.tour-details-5 .visual-gallery .gallery-grid .gallery-piece.medium {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .tour-details-5 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .tour-details-5 .visual-gallery .gallery-grid .gallery-piece.medium {
    grid-column: span 1;
  }
}

.tour-details-5 .visual-gallery .gallery-grid .gallery-piece a {
  display: block;
  width: 100%;
  height: 100%;
}

.tour-details-5 .visual-gallery .gallery-grid .gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .tour-details-5 .final-call .call-content {
    padding: 60px 40px;
  }
}

.tour-details-5 .final-call .call-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--contrast-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .tour-details-5 .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.tour-details-5 .final-call .call-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .tour-details-5 .final-call .call-content p {
    font-size: 1rem;
  }
}

.tour-details-5 .final-call .call-content .call-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tour-details-5 .final-call .call-content .call-actions .btn-primary-cta,
.tour-details-5 .final-call .call-content .call-actions .btn-contact {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.tour-details-5 .final-call .call-content .call-actions .btn-contact {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/*--------------------------------------------------------------
# Gallery 6 Section
--------------------------------------------------------------*/
.gallery-6 {
  background-color: #F1EBD8;
}

.gallery-6 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: box-shadow 0.2s ease;
}

.gallery-6 .gallery-card:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 88%);
}

.gallery-6 .gallery-card a {
  display: block;
  position: relative;
}

.gallery-6 .gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-6 .gallery-card .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-6 .gallery-card .gallery-overlay i {
  font-size: 28px;
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--contrast-color);
  border-radius: 4px;
}

.gallery-6 .gallery-card:hover .gallery-overlay {
  opacity: 1;
}