@charset "UTF-8";

:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff; 
  --default-color: #35211f; 
  --heading-color: #200f0d; 
  --accent-color: #f95e4d;
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
  --green-color: #015711;
}

:root {
  --nav-color: #ffffff;  
  --nav-hover-color: #f95e4d; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #35211f;
  --nav-dropdown-hover-color: #f95e4d;
}

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

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

:root {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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


.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.85);
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

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

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

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

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

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

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

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

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 10px 0;
  text-align: left;
  position: relative;
}

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

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: left;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

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

@media (max-width: 1199px) {

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

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

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

.trips-home {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 80vh;
  display: grid;
  place-content: center;
}

.trips-home .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.trips-home .content .lead {
  font-size: 1.25rem;
  max-width: 600px;
}

.trips-home .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.trips-home .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.trips-home .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trips-home .btn.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.trips-home .btn.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trips-home .booking-form {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 15px;
  padding: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trips-home .booking-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.trips-home .booking-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
  background-color: transparent;
  color: var(--default-color);
}

.trips-home .booking-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.trips-home .booking-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.trips-home .booking-form .btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.trips-home .booking-form .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .trips-home {
    padding: 80px 0;
  }

  .trips-home .content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .trips-home .content {
    text-align: center;
  }

  .trips-home .content h1 {
    font-size: 2rem;
  }

  .trips-home .content .lead {
    font-size: 1rem;
  }

  .trips-home .d-flex {
    justify-content: center !important;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts .post-img img {
  width: 100%;
  transition: 0.5s;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts .meta {
  position: relative;
  margin-top: 4px;
  padding: 0 30px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

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

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

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

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

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

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


/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.travel-tours {
  color: var(--default-color);
}

.travel-tours .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.travel-tours .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.travel-tours .search-container {
  background: var(--surface-color);
  border-radius: 60px;
  padding: 1rem;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-tours .search-container .search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}

.travel-tours .search-container .search-bar .form-control {
  border: none;
  background: transparent;
  font-size: 1.125rem;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  color: var(--default-color);
}

.travel-tours .search-container .search-bar .form-control:focus {
  box-shadow: none;
  background: transparent;
}

.travel-tours .search-container .search-bar .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-tours .search-container .search-bar .search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.travel-tours .search-container .search-bar .search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.travel-tours .search-container .search-bar .search-btn i {
  font-size: 1.25rem;
}

.travel-tours .search-container .filter-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.travel-tours .search-container .filter-pills .filter-pill {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .search-container .filter-pills .filter-pill:hover,
.travel-tours .search-container .filter-pills .filter-pill.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.travel-tours .featured-hero-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour .featured-image img {
    height: 300px;
  }
}

.travel-tours .featured-hero-tour .featured-content .featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.travel-tours .featured-hero-tour .featured-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .travel-tours .featured-hero-tour .featured-content h3 {
    font-size: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating {
  color: var(--accent-color);
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating i {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price {
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price .from {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .featured-hero-tour .featured-content .featured-price .amount {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-left: 0.5rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .featured-hero-tour .featured-content .featured-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.travel-tours .section-subtitle {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 3rem;
  text-align: center;
}

.travel-tours .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.travel-tours .categories-grid .category-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .categories-grid .category-item:hover {
  transform: translateY(-5px);
}

.travel-tours .categories-grid .category-item:hover .category-visual img {
  transform: scale(1.05);
}

.travel-tours .categories-grid .category-item .category-visual {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.travel-tours .categories-grid .category-item .category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .categories-grid .category-item h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.travel-tours .categories-grid .category-item .tour-count {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-tours .tours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.travel-tours .tours-header .view-toggle {
  display: flex;
  gap: 0.5rem;
}

.travel-tours .tours-header .view-toggle .toggle-btn {
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  border-radius: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.travel-tours .tours-header .view-toggle .toggle-btn.active,
.travel-tours .tours-header .view-toggle .toggle-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

.travel-tours .tours-grid .tour-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
   display: none;
}

.travel-tours .tours-grid .tour-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-tours .tours-grid .tour-item:hover .tour-image img {
  transform: scale(1.03);
}

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

.travel-tours .tours-grid .tour-item .tour-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-tours .tours-grid .tour-item .tour-image .tour-availability {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.travel-tours .tours-grid .tour-item .tour-details {
  padding: 1rem;
}

.travel-tours .tours-grid .tour-item .tour-details h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.travel-tours .tours-grid .tour-item .tour-details p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  
  /* Batasi teks maksimal 3 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  /* Samakan tinggi area deskripsi */
  min-height: calc(1.6em * 3);
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span i {
  color: var(--accent-color);
  font-size: 0.875rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .price {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent-color);
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .per {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.travel-tours .offers-container .offer-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.travel-tours .offers-container .offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tours .offers-container .offer-card .offer-image {
  height: 200px;
  overflow: hidden;
}

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

.travel-tours .offers-container .offer-card .offer-content {
  padding: 2rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-validity {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta {
  text-align: center;
  background: var(--surface-color);
  padding: 4rem 3rem;
  border-radius: 20px;
}

.travel-tours .consultation-cta h3 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.travel-tours .consultation-cta .cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .consultation-cta .cta-actions {
    flex-direction: column;
  }
}

.travel-tours .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.travel-tours .btn-accent {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border: none;
  color: var(--contrast-color);
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.travel-tours .btn-text {
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.travel-tours .btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.travel-tours .btn-text:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.travel-tours .btn-text:hover::after {
  width: 100%;
}

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

.travel-tour-details .tour-hero .hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 50vh;
  min-height: 300px;
}

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

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

.travel-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: 40px;
}

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

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

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

.travel-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) {
  .travel-tour-details .tour-hero .hero-image-wrapper .hero-overlay .hero-content h1 {
    font-size: 2.4rem;
  }
}

.travel-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;
  
  /* Batasi teks maksimal 3 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  /* Samakan tinggi area deskripsi */
  min-height: calc(1.6em * 3);
}

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

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

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

.travel-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;
}

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

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

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

.travel-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) {
  .travel-tour-details .tour-essence .essence-content h2 {
    font-size: 2rem;
  }
}

.travel-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;
}

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

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

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

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

.travel-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%);
  vertical-align: top;
}

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

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

.travel-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;
}

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

.travel-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;
}

.travel-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;
}

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

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

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

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

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

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

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

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

.travel-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) {
  .travel-tour-details .journey-timeline .timeline-wrapper::before {
    left: 22px;
  }
}

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

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

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

.travel-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) {
  .travel-tour-details .journey-timeline .timeline-item .timeline-marker .day-number {
    width: 44px;
    height: 44px;
  }
}

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

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

.travel-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) {
  .travel-tour-details .journey-timeline .timeline-item .timeline-content .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

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

.travel-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;
}

.travel-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;
}

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

.travel-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;
}

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

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

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

.travel-tour-details .inclusions-overview .inclusion-list .inclusion-item,
.travel-tour-details .inclusions-overview .inclusion-list .exclusion-item,
.travel-tour-details .inclusions-overview .exclusion-list .inclusion-item,
.travel-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.travel-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;
}

.travel-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;
}

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

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

.travel-tour-details .booking-section .departure-dates .dates-grid .date-option .date-details .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--green-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  gap: 5px;
}

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

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

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

.travel-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;
}

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

.travel-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;
}

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

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

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

.travel-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;
}

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

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

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

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

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

.travel-tour-details .visual-gallery {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.travel-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) {
  .travel-tour-details .final-call .call-content {
    padding: 60px 40px;
  }
}

.travel-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) {
  .travel-tour-details .final-call .call-content h2 {
    font-size: 2rem;
  }
}

.travel-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) {
  .travel-tour-details .final-call .call-content p {
    font-size: 1rem;
  }
}

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

.travel-tour-details .final-call .call-content .call-actions .btn-primary-cta,
.travel-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;
}

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

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

.travel-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;
}

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

/*--------------------------------------------------------------
# Featured Trips Section
--------------------------------------------------------------*/
.featured-trips .destination-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.featured-trips .destination-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.featured-trips .destination-card:hover .explore-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.featured-trips .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.featured-trips .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
}

.featured-trips .image-wrapper .badge {
  position: absolute;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.featured-trips .image-wrapper .badge-top {
  top: 15px;
  background: transparent;
  color: #fff;
  padding: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.featured-trips .image-wrapper .badge-bottom {
  bottom: 15px;
}

.featured-trips .image-wrapper .badge.featured {
  background: #ff6b35;
}

.featured-trips .image-wrapper .badge.new {
  background: #28a745;
}

.featured-trips .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.featured-trips .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.featured-trips .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
  flex-grow: 1;
  
  /* Batasi teks maksimal 3 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  /* Samakan tinggi area deskripsi */
  min-height: calc(1.6em * 3);
}

.featured-trips .features {
  margin-bottom: 0;
}

.featured-trips .features .feature-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

.featured-trips .card-footer .tours-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-trips .card-footer .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-trips .card-footer .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.featured-trips .destinations-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  border-radius: 16px;
  text-align: center;
}

.featured-trips .destinations-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.featured-trips .destinations-cta p {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-trips .destinations-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-trips .destinations-cta .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.featured-trips .destinations-cta .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.featured-trips .destinations-cta .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.featured-trips .destinations-cta .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.featured-trips .destinations-cta .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-trips .destination-card .image-wrapper {
    height: 200px;
  }

  .featured-trips .destination-card .content {
    height: calc(100% - 200px);
    padding: 16px;
  }

  .featured-trips .destination-card .content h4 {
    font-size: 16px;
  }

  .featured-trips .destination-card .content p {
    font-size: 13px;
  }

  .featured-trips .destination-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .featured-trips .destination-card .card-footer .explore-btn {
    text-align: center;
    justify-content: center;
  }

  .featured-trips .destinations-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .featured-trips .destinations-cta h3 {
    font-size: 24px;
  }

  .featured-trips .destinations-cta p {
    font-size: 14px;
  }

  .featured-trips .destinations-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-trips .destinations-cta .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .featured-trips .features .feature-tag {
    font-size: 10px;
    padding: 2px 6px;
    margin-right: 4px;
  }
}

/*--------------------------------------------------------------
# Special Trips Section
--------------------------------------------------------------*/
.special-trips .destination-card {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  position: relative;
  transition: all 0.4s ease;
}

.special-trips .destination-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 75%);
}

.special-trips .destination-card .destination-overlay {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.special-trips .destination-card .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.special-trips .destination-card .destination-overlay .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.special-trips .destination-card .destination-overlay .badge-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 8px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.hot {
  background-color: #ff4757;
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.cultural {
  background-color: #7209b7;
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.limited {
  background-color: #ff6b35;
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.new {
  background-color: #2ed573;
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.adventure {
  background-color: #ff7675;
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.popular {
  background-color: #fdcb6e;
  color: var(--heading-color);
}

.special-trips .destination-card .destination-overlay .badge-container .featured-badge.luxury {
  background-color: #a29bfe;
}

.special-trips .destination-card .destination-overlay .badge-container .price-tag {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  color: var(--heading-color);
  padding: 3px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.special-trips .destination-card .destination-overlay .card-details {
  color: var(--contrast-color);
}

.special-trips .destination-card .destination-overlay .card-details h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--contrast-color);
  line-height: 1.3;
}

.special-trips .destination-card .destination-overlay .card-details .meta-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
}

.special-trips .destination-card .destination-overlay .card-details .meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.special-trips .destination-card .destination-overlay .card-details .meta-info span i {
  color: var(--accent-color);
  font-size: 14px;
}

.special-trips .destination-card .destination-overlay .card-details p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  
  /* Batasi teks maksimal 5 baris */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;

  /* Samakan tinggi area deskripsi */
  min-height: calc(1.6em * 5);
}

.special-trips .destination-card .destination-overlay .card-details .action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.special-trips .destination-card .destination-overlay .card-details .action-row .explore-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.special-trips .destination-card .destination-overlay .card-details .action-row .explore-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.special-trips .destination-card .destination-overlay .card-details .action-row .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.special-trips .destination-card .destination-overlay .card-details .action-row .rating-stars i {
  color: #ffd700;
  font-size: 12px;
}

.special-trips .destination-card .destination-overlay .card-details .action-row .rating-stars small {
  margin-left: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 600;
  font-size: 12px;
}

.special-trips .destination-card:hover .destination-overlay img {
  transform: scale(1.1);
}

.special-trips .destination-card:hover .destination-overlay .card-overlay {
  opacity: 1;
}

.special-trips .discover-more-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 30%));
  color: var(--contrast-color);
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.special-trips .discover-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s ease;
}

.special-trips .discover-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.special-trips .discover-more-btn:hover::before {
  left: 100%;
}

@media (max-width: 1200px) {
  .special-trips .destination-card {
    height: 380px;
  }

  .special-trips .destination-card .destination-overlay .card-details h5 {
    font-size: 20px;
  }

  .special-trips .destination-card .destination-overlay .card-details .meta-info {
    flex-direction: column;
    gap: 8px;
  }

  .special-trips .destination-card .destination-overlay .card-details .action-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .special-trips .destination-card .destination-overlay .card-details .action-row .explore-btn {
    text-align: center;
  }

  .special-trips .destination-card .destination-overlay .card-details .action-row .rating-stars {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .special-trips .destination-card {
    height: 350px;
  }

  .special-trips .destination-card .destination-overlay .card-overlay {
    opacity: 1;
    /*background: linear-gradient(180deg, color-mix(in srgb, var(--default-color), transparent 60%) 0%, color-mix(in srgb, var(--default-color), transparent 20%) 100%);*/
  }

  .special-trips .destination-card .destination-overlay .card-details h5 {
    font-size: 18px;
  }

  .special-trips .destination-card .destination-overlay .card-details p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .special-trips .destination-card {
    height: 320px;
  }

  .special-trips .destination-card .destination-overlay .badge-container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .special-trips .destination-card .destination-overlay .badge-container .featured-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .special-trips .destination-card .destination-overlay .badge-container .price-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .special-trips .destination-card .destination-overlay .card-details .meta-info {
    gap: 6px;
  }

  .special-trips .destination-card .destination-overlay .card-details .action-row {
    gap: 10px;
  }

  .special-trips .destination-card .destination-overlay .card-details .action-row .explore-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Start Next Section
--------------------------------------------------------------*/
.start-next {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 5%) 0%, color-mix(in srgb, var(--green-color), transparent 5%) 100%);
  position: relative;
  overflow: hidden;
}

.start-next::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/myhotelsid_nextsection.webp") center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.start-next .container {
  position: relative;
  z-index: 1;
}

.start-next h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .start-next h2 {
    font-size: 2.2rem;
  }
}

.start-next p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  line-height: 1.6;
}

.start-next .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .start-next .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.start-next .cta-buttons .btn-primary,
.start-next .cta-buttons .btn-secondary {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
}

.start-next .cta-buttons .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-color: var(--contrast-color);
}

.start-next .cta-buttons .btn-primary:hover {
  background-color: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
}

.start-next .cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.start-next .cta-buttons .btn-secondary:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
}

.start-next .feature-item {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.start-next .feature-item:hover {
  transform: translateY(-10px);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.start-next .feature-item .icon {
  width: 70px;
  height: 70px;
  background-color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.start-next .feature-item .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.start-next .feature-item h4 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.start-next .feature-item p {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.start-next .stats-section {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 3rem;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

@media (max-width: 768px) {
  .start-next .stats-section {
    padding: 2rem 1rem;
  }
}

.start-next .stat-item {
  padding: 1rem 0;
}

.start-next .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .start-next .stat-item .stat-number {
    font-size: 2rem;
  }
}

.start-next .stat-item .stat-label {
  display: block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .start-next .feature-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .start-next {
    padding: 80px 0;
  }

  .start-next .stats-section {
    margin-top: 2rem;
  }
}

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

@media (max-width: 768px) {
  .travel-booking .booking-form {
    padding: 30px 20px;
  }
}

.travel-booking .booking-step {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
}

.travel-booking .booking-step:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.travel-booking .booking-step .step-header {
  margin-bottom: 30px;
}

.travel-booking .booking-step .step-header h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.travel-booking .booking-step .step-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  font-size: 16px;
}

.travel-booking .form-group {
  margin-bottom: 25px;
}

.travel-booking .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
}

.travel-booking .form-group .form-control,
.travel-booking .form-group .form-select {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.travel-booking .form-group .form-control:focus,
.travel-booking .form-group .form-select:focus {
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green-color), transparent 90%);
  outline: none;
}

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

.travel-booking .add-ons-grid {
  display: grid;
  gap: 20px;
}

.travel-booking .add-ons-grid .add-on-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.travel-booking .add-ons-grid .add-on-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 3px 15px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.travel-booking .add-ons-grid .add-on-item .add-on-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header input[type=checkbox] {
  margin-top: 2px;
  accent-color: var(--accent-color);
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label {
  flex: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 600;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label i {
  color: var(--accent-color);
  font-size: 20px;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label .price {
  margin-left: auto;
  color: var(--accent-color);
  font-weight: 700;
}

.travel-booking .add-ons-grid .add-on-item p {
  margin: 0;
  padding-left: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.travel-booking .payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.travel-booking .payment-methods .payment-method {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.travel-booking .payment-methods .payment-method.active,
.travel-booking .payment-methods .payment-method:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

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

.travel-booking .payment-methods .payment-method label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
}

.travel-booking .payment-methods .payment-method label i {
  font-size: 24px;
  color: var(--accent-color);
}

.travel-booking .credit-card-form {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.travel-booking .secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
}

.travel-booking .secure-badge i {
  color: var(--accent-color);
  font-size: 20px;
}

.travel-booking .terms-conditions {
  margin-bottom: 30px;
}

.travel-booking .terms-conditions .form-check {
  margin-bottom: 15px;
}

.travel-booking .terms-conditions .form-check .form-check-input {
  accent-color: var(--accent-color);
  margin-top: 2px;
}

.travel-booking .terms-conditions .form-check .form-check-label {
  font-size: 14px;
  cursor: pointer;
}

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

.travel-booking .terms-conditions .form-check .form-check-label a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.travel-booking .form-actions {
  text-align: center;
}

.travel-booking .form-actions .btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.travel-booking .form-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

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

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

.travel-booking .booking-summary .summary-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

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

.travel-booking .booking-summary .selected-tour {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.travel-booking .booking-summary .selected-tour img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.travel-booking .booking-summary .selected-tour .tour-info {
  flex: 1;
}

.travel-booking .booking-summary .selected-tour .tour-info h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

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

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating i {
  color: #ffc107;
  font-size: 12px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating span {
  margin-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-booking .booking-summary .booking-details {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-booking .booking-summary .booking-details .detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.travel-booking .booking-summary .booking-details .detail-row:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .booking-details .detail-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .booking-summary .booking-details .detail-row span:last-child {
  color: var(--heading-color);
  font-weight: 600;
}

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

.travel-booking .booking-summary .price-breakdown h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

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

.travel-booking .booking-summary .price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .price-breakdown .price-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .booking-summary .price-breakdown .price-row span:last-child {
  color: var(--heading-color);
  font-weight: 500;
}

.travel-booking .booking-summary .price-breakdown .price-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
}

.travel-booking .booking-summary .payment-security {
  margin-bottom: 25px;
  padding: 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 8px;
}

.travel-booking .booking-summary .payment-security .security-badges,
.travel-booking .booking-summary .payment-security .accepted-cards {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.travel-booking .booking-summary .payment-security .security-badges:last-child,
.travel-booking .booking-summary .payment-security .accepted-cards:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .payment-security .security-badges i,
.travel-booking .booking-summary .payment-security .accepted-cards i {
  color: var(--accent-color);
  font-size: 16px;
}

.travel-booking .booking-summary .payment-security .security-badges span,
.travel-booking .booking-summary .payment-security .accepted-cards span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.travel-booking .booking-summary .help-section h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

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

.travel-booking .booking-summary .help-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item span {
  color: var(--heading-color);
  font-weight: 500;
}

.travel-booking input[type=text],
.travel-booking input[type=email],
.travel-booking input[type=tel],
.travel-booking input[type=date],
.travel-booking select,
.travel-booking textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.travel-booking input[type=text]:focus,
.travel-booking input[type=email]:focus,
.travel-booking input[type=tel]:focus,
.travel-booking input[type=date]:focus,
.travel-booking select:focus,
.travel-booking textarea:focus {
  border-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Simplepage Section
--------------------------------------------------------------*/
.simple-page {
  padding: 80px 0;
  margin: 0 auto;
}

.simple-page .simple-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.simple-page .simple-code {
  font-size: clamp(5rem, 15vw, 6rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.simple-page .simple-title {
  font-size: 1.3rem;
  color: var(--heading-color);
  font-weight: 600;
}

.simple-page .simple-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.simple-page .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.simple-page .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.simple-page .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.simple-page .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.simple-page .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.simple-page .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.simple-page .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.simple-page .simple-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.simple-page .simple-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .simple-page {
    padding: 60px 0;
  }

  .simple-page .simple-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .simple-page .simple-title {
    font-size: 1.5rem;
  }

  .simple-page .simple-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .simple-page .search-box {
    margin: 0 20px;
  }
}

/*----------------------
# About Section
------------------------*/
.about .content h2 {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

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

.about .content .lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.about .content p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stat-item {
  padding: 1.5rem 0;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .btn-learn-more span {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.about .btn-learn-more i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover {
  color: var(--accent-color);
}

.about .btn-learn-more:hover span {
  border-bottom-color: var(--accent-color);
}

.about .btn-learn-more:hover i {
  transform: translateX(4px);
}

.about .image-stack {
  position: relative;
}

.about .image-stack .image-main {
  position: relative;
  z-index: 1;
}

.about .image-stack .image-main img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-stack .image-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  max-width: 200px;
}

@media (max-width: 768px) {
  .about .image-stack .image-overlay {
    bottom: -20px;
    right: -20px;
    max-width: 150px;
  }
}

.about .image-stack .image-overlay img {
  border-radius: 8px;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .feature-item {
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-item:hover {
  transform: translateY(-5px);
}

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

.about .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .feature-item h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.about .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }

  .about .image-stack {
    margin-top: 3rem;
  }

  .about .stat-item {
    padding: 1rem 0;
  }

  .about .stat-item .stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*-----------------------------------------
# Instant Section
-------------------------------------------*/
.instant .container {
  max-width: 1280px;
}

.instant .instant-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .instant .instant-wrapper {
    grid-template-columns: 70% 30%;
    gap: 30px;
  }
}

.instant .instant-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 5%));
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 40px 30px;
  align-self: flex-start;
  height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.instant .instant-info-panel .instant-info-header {
  margin-bottom: 30px;
}

.instant .instant-info-panel .instant-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.instant .instant-info-panel .instant-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.instant .instant-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .instant .instant-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instant .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.instant .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.instant .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instant .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.instant .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.instant .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.instant .instant-frame-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 768px) {
  .instant .contact-info-panel {
    padding: 30px 25px;
  }

  .instant .frame-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .instant .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Addin ByMe Section
--------------------------------------------------------------*/

/* ===== Menu nav ≥1200px: dropdown 3 kolom overlay klik ===== */
@media (min-width: 1199px) {
  .navmenu .dropdown.dropdown-columns > ul {
    display: none;
    position: absolute; 
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    box-shadow: 0 0 30px rgba(127,137,161,0.25);
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 99;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 3px 8px;
  }

  .navmenu .dropdown.dropdown-columns.dropdown-active > ul {
    display: grid;
  }

  .navmenu .dropdown.dropdown-columns > ul li a {
    display: block;
    padding: 2px 0;
    color: #333;
  }

  .navmenu .dropdown.dropdown-columns > ul li a:hover {
    color: #cf3d3d;
  }
  
  /* for one column dropdown menu */
  .navmenu .dropdown.dropdown-columns-one > ul {
    display: none;
    position: absolute; 
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    box-shadow: 0 0 30px rgba(127,137,161,0.25);
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 99;
    grid-template-columns: repeat(1, minmax(180px, 1fr));
    gap: 3px 8px;
  }

  .navmenu .dropdown.dropdown-columns-one.dropdown-active > ul {
    display: grid;
  }

  .navmenu .dropdown.dropdown-columns-one > ul li a {
    display: block;
    padding: 2px 0;
    color: #333;
  }

  .navmenu .dropdown.dropdown-columns-one > ul li a:hover {
    color: #cf3d3d;
  }
  
}

/* ===== Tablet 992–1199px & Mobile ≤991px ===== */
@media (max-width: 1199px) {
  .navmenu .dropdown > ul {
    display: none;
    position: static;
    padding-left: 15px;
    grid-template-columns: 1fr; /* satu kolom */
    gap: 5px 0;
  }

  .navmenu .dropdown.dropdown-active > ul {
    display: block; /* muncul saat klik */
  }

  .navmenu .dropdown > ul li a {
    display: block;
    padding: 8px 0;
    color: #333;
  }

  .navmenu .dropdown > ul li a:hover {
    color: #cf3d3d;
  }
}

.navmenu .dropdown > a {
  cursor: pointer;
}

/* Modern Travel Table - BootstrapMade vibe */
.travel-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-bottom: 20px;
}

.travel-table thead th {
  background: #f8f9fa;
  font-weight: 600;
  padding: 7px 10px;
  font-size: 15px;
  color: #333;
  border-bottom: 2px solid #eaeaea;
}

.travel-table tbody tr {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.2s ease-in-out;
}

.travel-table tbody tr:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.travel-table td {
  padding: 7px 10px;
  font-size: 14px;
  color: #444;
}

.travel-table .price {
  font-weight: 700;
  color: #2e8b57;
}

.travel-table .badge-available {
  background: #28a745;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.travel-table .badge-limited {
  background: #ffc107;
  color: #333;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.travel-table .badge-full {
  background: #dc3545;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.table-error-blink {
  box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.6);
  transition: box-shadow 0.3s ease-in-out;
}
#loading-spinner::after {
    content: "";
    width: 24px;
    height: 24px;
    border: 3px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.price-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(242, 241, 241, 0.6); /* abu transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 0.5rem;
}
/* Geser tombol prev & next ke lebih ke pinggir */
#tourCarousel .carousel-control-prev,
#tourCarousel .carousel-control-next {
    width: 5%;
}

#tourCarousel .carousel-control-prev {
    left: -5px;
}

#tourCarousel .carousel-control-next {
    right: -5px;
}

/* Option: kecilkan ikon */
#tourCarousel .carousel-control-prev-icon,
#tourCarousel .carousel-control-next-icon {
    transform: scale(0.7);
}

.pagination .page-link {
    padding: 6px 12px;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
    transition: 0.3s;
}

.pagination .page-link:hover {
    background: #f0f0f0;
}

.pagination .page-link.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* ======================
    Styles FOR Searching
  =======================*/
#searchOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
    z-index: 9999;
}

#searchOverlay.show { 
    display: flex; 
}

#searchOverlay .overlay-box {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    animation: dropDown .25s ease-out; /* efek cantik */
}

@keyframes dropDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#searchForm .form-control,
#searchForm .form-select {
    border-radius: 12px;
    padding: 12px 15px;
}

#searchForm .form-check-input {
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
}

#searchForm .form-label {
    color: #444;
}

#searchForm button.btn-dark {
    padding: 12px;
    font-size: 1.1rem;
}

#searchOverlay .overlay-box {
    border-radius: 20px;
    padding: 35px;
    animation: fadeUp .25s ease-out;
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(20px); }
    to { opacity:1; transform:translateY(0); }
}

.city-scroll {
    max-height: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    scrollbar-width: 10px;
}

.city-scroll::-webkit-scrollbar {
    width: 10px;
}
.city-scroll::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
}

.city-list .form-check-label {
    background: #f3f3f3;
    padding: 3px 8px;
    border-radius: 14px;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
    font-size: 0.78rem;
}

.city-list .form-check-input {
    display: none;
}

.city-list .form-check-input:checked + .form-check-label {
    background: #212529;
    color: #fff;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.07);
}
.tour-card:hover { transform: translateY(-5px); }

.tour-card .tour-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
}
.tour-card .tour-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.tour-card .tour-content {
    padding: 15px;
}
#activeFilters {
    position: sticky;
    top: 80px; 
    z-index: 900;
    background: #ffffffd8;
    backdrop-filter: blur(6px);
    border: 1px solid #ddd;
    border-radius: 10px;
}

#activeFilters.sticky {
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: 0.2s ease-in-out;
}

/* END Styles FOR Searching*/

/* ======================
    Styles FOR Hotels
  =======================*/

.hotels-area .hotel-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotels-area .hotel-item {
  border: 1px solid #ccc;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 15px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.hotels-area .hotel-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ===== HOTEL SLIDER ===== */
.hotels-area .hotel-thumb {
    width: 220px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.hotels-area .hotel-slide-img {
    height: 160px;
    object-fit: cover;
}

/* overlay */
.hotels-area .photo-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.65);
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 5;
}

/* arrows appear on hover (optional) */
.hotels-area .carousel-control-prev,
.hotels-area .carousel-control-next {
    opacity: 0;
    transition: opacity .2s;
}

.hotels-area .hotel-thumb:hover .carousel-control-prev,
.hotels-area .hotel-thumb:hover .carousel-control-next {
    opacity: 1;
}

/* thumbnails */
.hotels-area .thumb-preview {
    display: flex;
    gap: 2px;
    padding: 1px;
    background: #fff;
    justify-content: center;
    
}

.hotels-area .thumb-preview img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
}

.hotels-area .thumb-preview img:hover {
    transform: scale(1.05);
}

.hotels-area .thumb-preview img.active {
    border-color: #0d6efd;
}

/* fullscreen modal */
.hotels-area #galleryCarousel img {
    height: 100vh;
    object-fit: contain;
}

/* ===== INFO ===== */
.hotels-area .hotel-info {
    padding: 0 15px;
}

.hotels-area .hotel-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hotels-area .hotel-location {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.hotels-area .hotel-rating {
    margin-bottom: 10px;
}

.hotels-area .hotel-rating .badge {
    font-size: 14px;
    margin-right: 5px;
}

.hotels-area .hotel-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotels-area .hotel-features li {
    font-size: 13px;
    background: #f1f3f5;
    padding: 4px 8px;
    border-radius: 5px;
}

.hotels-area .hotel-divider {
    width: 1px;
    background: #e9ecef;
    margin: 0 20px;
}

.hotels-area .hotel-desc{
    font-size:14px;
    color:#495057;
    margin:8px 0 10px;
    line-height:1.5;
}

.hotels-area .desc-text{
    display:inline;
}

.hotels-area .desc-text-limit{
    max-height:4.5em;   /* 3 baris (1.5 x 3) */
    overflow:hidden;
}

.hotels-area .desc-more{
    font-size:12px;
    font-weight:600;
    margin-left:4px;
    text-decoration:none;
    color: #045bbf;
}


/* ===== PRICE ===== */
.hotels-area .hotel-price {
    min-width: 160px;
}

.hotels-area .price-old {
    font-size: 14px;
    color: #adb5bd;
    text-decoration: line-through;
}

.hotels-area .price-now {
    font-size: 20px;
    font-weight: 700;
    color: #0d6efd;
}

/* FORCE carousel arrows visible */
.hotels-area .carousel-control-prev-icon,
.hotels-area .carousel-control-next-icon {
    background-image: none;
    width: 3rem;
    height: 3rem;
}

.hotels-area .carousel-control-prev-icon::after {
    content: '‹';
    font-size: 3rem;
    color: #fff;
}

.hotels-area .carousel-control-next-icon::after {
    content: '›';
    font-size: 3rem;
    color: #fff;
}

.hotels-area .carousel-control-prev,
.hotels-area .carousel-control-next {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hotels-area .hotel-item {
        flex-direction: column;
    }

    .hotels-area .hotel-thumb {
        width: 100%;
        height: 200px;
    }

    .hotels-area .hotel-price {
        text-align: left !important;
        margin-top: 10px;
    }
}

.hotels-area .booking-summary {
   border: 1px solid #ccc;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    padding: 20px;
    position: sticky;
    top: 100px;
}

.hotels-area .hotel-loader {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

/* Container untuk label checkbox */
.hotels-area .checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px; 
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    margin-top: 10px;
}

/* sembunyikan checkbox asli */
.hotels-area .checkbox-container input[type="checkbox"] {
    appearance: none; 
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.hotels-area .checkbox-container input[type="checkbox"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.hotels-area .checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hotels-area .checkbox-container span {
    color: #333;
}

/* Fade effect untuk hotel list */
#hotelList {
    transition: opacity 0.4s ease-in-out;
}
.fade-out {
    opacity: 0;
}
.fade-in {
    opacity: 1;
}
#mainHotelImage {
    transition: all .3s ease;
}

.hotel-thumb-detail {
    position: relative;
}

.hotel-slide-img-detail {
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.thumb-wrapper-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.thumb-viewport-detail {
    overflow: hidden;
    width: 620px; /* 8 thumb x 70px + gap */
}

.thumb-preview-detail {
    display: flex;
    gap: 6px;
    transition: transform .3s ease;
}

.thumb-preview-detail img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: .6;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumb-preview-detail img.active,
.thumb-preview-detail img:hover {
    opacity: 1;
    border-color: #0d6efd;
}

/* Nav buttons */
.thumb-nav-detail {
    width: 28px;
    height: 55px;
    border: none;
    background: #f1f1f1;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.thumb-nav-detail:hover {
    background: #e2e2e2;
}

.photo-overlay-detail {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
}

.hotel-description p {
    text-align: justify;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.modal-body .hotel-description ul,
.modal-body .hotel-description li {
    text-align: left !important;
}

#hotelMapSection.highlight {
    animation: highlightMap 1s ease;
}

@keyframes highlightMap {
    0%   { box-shadow: 0 0 0 rgba(0,0,0,0); }
    50%  { box-shadow: 0 0 25px rgba(0,123,255,0.6); }
    100% { box-shadow: 0 0 0 rgba(0,0,0,0); }
}

/* Pagination hotel */
#hotelList .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-bottom: 0;
}

#hotelList .page-item {
    margin-bottom: 4px;
}

#hotelList .page-link {
    min-width: 38px;
    text-align: center;
}
