/**
* Template Name: Tour
* Template URL: https://bootstrapmade.com/tour-bootstrap-travel-website-template/
* Updated: Jul 01 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
: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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.7); /* DIBUAT HITAM SEJAK AWAL */
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}


.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  padding-left: 5px;
  text-transform: uppercase;
  color: var(--heading-color);
}

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

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

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

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .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: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-title .breadcrumbs ol li+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%);
}





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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.travel-hero .booking-form-wrapper .booking-form {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.travel-hero .booking-form-wrapper .booking-form .form-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.travel-hero .booking-form-wrapper .booking-form label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

.travel-hero .booking-form-wrapper .booking-form .form-control:focus,
.travel-hero .booking-form-wrapper .booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: none;
}

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

.travel-hero .booking-form-wrapper .booking-form .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

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

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

  .travel-hero .booking-form {
    margin-top: 2rem;
  }
}

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

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

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

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

  .travel-hero .booking-form-wrapper .booking-form {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Travel Destinations Section
--------------------------------------------------------------*/
.travel-destinations .filter-tabs {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.travel-destinations .filter-tabs .destination-filters {
  display: inline-flex;
  background: var(--surface-color);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  list-style: none;
  margin: 0;
  gap: 4px;
}

@media (max-width: 768px) {
  .travel-destinations .filter-tabs .destination-filters {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 6px;
    gap: 2px;
  }
}

.travel-destinations .filter-tabs .destination-filters li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.travel-destinations .filter-tabs .destination-filters li:hover,
.travel-destinations .filter-tabs .destination-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
  transform: translateY(-1px);
}

.travel-destinations .destination-grid .destination-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 100%;
  cursor: pointer;
}

.travel-destinations .destination-grid .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.travel-destinations .destination-grid .destination-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 70%) 0%, color-mix(in srgb, var(--default-color), transparent 40%) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.travel-destinations .destination-grid .destination-overlay:hover img {
  transform: scale(1.05);
}

.travel-destinations .destination-grid .destination-overlay:hover::before {
  background: linear-gradient(135deg, color-mix(in srgb, var(--default-color), transparent 80%) 0%, color-mix(in srgb, var(--default-color), transparent 50%) 100%);
}

.travel-destinations .destination-grid .destination-overlay:hover .overlay-content {
  transform: translateY(-8px);
}

.travel-destinations .destination-grid .destination-overlay .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transition: transform 0.3s ease;
  color: #fff;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper {
  margin-bottom: 16px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.featured {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.popular {
  background: linear-gradient(135deg, #4ecdc4, #70e2d9);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.adventure {
  background: linear-gradient(135deg, #ff9f43, #ffb366);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.culture {
  background: linear-gradient(135deg, #c44569, #d76894);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.luxury {
  background: linear-gradient(135deg, #6c5ce7, #8b7ded);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.romantic {
  background: linear-gradient(135deg, #ff6b9d, #ff8bb5);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.vibrant {
  background: linear-gradient(135deg, #ff9f43, #ffb366);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .badge-wrapper .destination-tag.scenic {
  background: linear-gradient(135deg, #00b894, #00d2aa);
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper {
  color: white;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  color: #fff;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
  color: #fff;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-excerpt {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .info-item i {
  font-size: 14px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .tours-count {
  font-size: 13px;
  opacity: 0.8;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .price,
.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-info .price-tag {
  font-weight: 600;
  font-size: 16px;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn:hover {
  color: white;
  transform: translateX(4px);
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn i {
  transition: transform 0.3s ease;
}

.travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .explore-btn:hover i {
  transform: translateX(4px);
}

.travel-destinations .destination-grid .destination-large .destination-overlay {
  height: 480px;
}

@media (max-width: 992px) {
  .travel-destinations .destination-grid .destination-large .destination-overlay {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-large .destination-overlay {
    height: 300px;
  }
}

.travel-destinations .destination-grid .destination-medium .destination-overlay {
  height: 320px;
}

@media (max-width: 992px) {
  .travel-destinations .destination-grid .destination-medium .destination-overlay {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-medium .destination-overlay {
    height: 250px;
  }
}

.travel-destinations .destination-grid .destination-small .destination-overlay {
  height: 238px;
}

@media (max-width: 992px) {
  .travel-destinations .destination-grid .destination-small .destination-overlay {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-small .destination-overlay {
    height: 180px;
  }
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content {
  padding: 16px;
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info {
  margin-bottom: 0;
}

.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info .tours-count,
.travel-destinations .destination-grid .destination-small .destination-overlay .overlay-content .content-wrapper .destination-info .price {
  font-size: 12px;
}

.travel-destinations .explore-more {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-destinations .explore-more h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.travel-destinations .explore-more p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.6;
}

.travel-destinations .explore-more .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.travel-destinations .explore-more .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.travel-destinations .explore-more .btn-explore:hover i {
  transform: translateX(4px);
}

.travel-destinations .explore-more .btn-explore i {
  transition: transform 0.3s ease;
  font-size: 16px;
}

@media (max-width: 768px) {
  .travel-destinations .explore-more {
    padding: 30px 20px;
  }

  .travel-destinations .explore-more h4 {
    font-size: 20px;
  }

  .travel-destinations .explore-more p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .travel-destinations .destination-grid .destination-overlay .overlay-content {
    padding: 16px;
  }

  .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper h3 {
    font-size: 20px;
  }

  .travel-destinations .destination-grid .destination-overlay .overlay-content .content-wrapper .destination-excerpt {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding: 20px 0;
}

.about .content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about .content>p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

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

@media (max-width: 576px) {
  .about .stats-row {
    gap: 20px;
  }

  .about .stats-row .stat-item {
    flex: 1;
    min-width: 80px;
  }
}

.about .mission-statement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 35px;
}

.about .mission-statement p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

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

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

.about .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 3px solid var(--accent-color);
}

.about .image-wrapper .experience-badge .years {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .image-wrapper .experience-badge .text {
  font-size: 12px;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 30px;
  }

  .about .content h3 {
    font-size: 28px;
  }

  .about .image-wrapper {
    min-height: 350px;
  }

  .about .image-wrapper .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .about .content h3 {
    font-size: 24px;
  }

  .about .stats-row {
    justify-content: center;
  }

  .about .mission-statement {
    padding: 20px;
  }

  .about .image-wrapper {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .featured-destination {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.featured-destinations .featured-destination:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-destinations .featured-destination .destination-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}

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

.featured-destinations .featured-destination .destination-overlay:hover img {
  transform: scale(1.08);
}

.featured-destinations .featured-destination .destination-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.featured-destinations .featured-destination .destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
}

.featured-destinations .featured-destination .destination-info .destination-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.featured-destinations .featured-destination .destination-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.featured-destinations .featured-destination .destination-info .location {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-destinations .featured-destination .destination-info .location i {
  color: var(--accent-color);
  font-size: 18px;
}

.featured-destinations .featured-destination .destination-info .description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}

.featured-destinations .featured-destination .destination-info .destination-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 14px;
}

.featured-destinations .featured-destination .destination-info .destination-meta .tours-count,
.featured-destinations .featured-destination .destination-info .destination-meta .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-destinations .featured-destination .destination-info .destination-meta .tours-count i,
.featured-destinations .featured-destination .destination-info .destination-meta .rating i {
  color: var(--accent-color);
}

.featured-destinations .featured-destination .destination-info .price-info {
  margin-bottom: 25px;
}

.featured-destinations .featured-destination .destination-info .price-info .starting-from {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.featured-destinations .featured-destination .destination-info .price-info .amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-color);
}

.featured-destinations .featured-destination .destination-info .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.featured-destinations .featured-destination .destination-info .explore-btn:hover i {
  transform: translateX(3px);
}

.featured-destinations .featured-destination .destination-info .explore-btn i {
  transition: transform 0.3s ease;
}

.featured-destinations .compact-destination {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 180px;
}

.featured-destinations .compact-destination:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  transform: translateX(8px);
}

.featured-destinations .compact-destination .destination-image {
  flex-shrink: 0;
  width: 140px;
  position: relative;
  overflow: hidden;
}

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

.featured-destinations .compact-destination .destination-image .badge-offer {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .compact-destination .destination-image .badge-offer.limited {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
}

.featured-destinations .compact-destination .destination-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-destinations .compact-destination .destination-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.featured-destinations .compact-destination .destination-details .location {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .compact-destination .destination-details .location i {
  color: var(--accent-color);
  font-size: 12px;
}

.featured-destinations .compact-destination .destination-details .brief {
  font-size: 13px;
  line-height: 1.4;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-destinations .compact-destination .destination-details .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.featured-destinations .compact-destination .destination-details .stats-row .tour-count,
.featured-destinations .compact-destination .destination-details .stats-row .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-destinations .compact-destination .destination-details .stats-row .tour-count i,
.featured-destinations .compact-destination .destination-details .stats-row .rating i {
  color: var(--accent-color);
}

.featured-destinations .compact-destination .destination-details .stats-row .rating i {
  color: #ffc107;
}

.featured-destinations .compact-destination .destination-details .stats-row .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 14px;
}

.featured-destinations .compact-destination .destination-details .quick-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.featured-destinations .compact-destination .destination-details .quick-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 8px;
}

.featured-destinations .compact-destination .destination-details .quick-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.featured-destinations .compact-destination:hover .destination-image img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .featured-destinations .featured-destination {
    height: 500px;
  }

  .featured-destinations .featured-destination .destination-info {
    padding: 30px;
  }

  .featured-destinations .featured-destination .destination-info h3 {
    font-size: 28px;
  }

  .featured-destinations .featured-destination .destination-info .price-info .amount {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .featured-destinations .featured-destination {
    height: 450px;
    margin-bottom: 30px;
  }

  .featured-destinations .featured-destination .destination-info {
    padding: 25px;
  }

  .featured-destinations .featured-destination .destination-info h3 {
    font-size: 24px;
  }

  .featured-destinations .featured-destination .destination-info .destination-meta {
    flex-direction: column;
    gap: 10px;
  }

  .featured-destinations .compact-destination {
    flex-direction: column;
    height: auto;
  }

  .featured-destinations .compact-destination .destination-image {
    width: 100%;
    height: 160px;
  }

  .featured-destinations .compact-destination .destination-details {
    padding: 20px;
  }

  .featured-destinations .compact-destination .destination-details .stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}

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

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

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

.featured-tour-card .tour-image img {
  width: 100%;
  height: 250px; /* kamu bisa ubah misal 220px, 280px, 300px sesuai kebutuhan */
  object-fit: cover; /* biar gambar tidak melar atau gepeng */
  border-radius: 10px; /* opsional: buat sudut sedikit melengkung */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    left: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .travel-about .features-grid .section-header h3 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.travel-about .journey-timeline .timeline-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.travel-about .journey-timeline .timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.travel-about .journey-timeline .timeline-container .timeline-milestone {
  position: relative;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone {
    margin-bottom: 3rem;
  }
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  z-index: 2;
}

@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
  }
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
    width: 40%;
    margin-top: -50px;
  }
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone:nth-child(odd) .milestone-content {
    margin-left: 0;
  }
}

@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone:nth-child(even) .milestone-content {
    margin-left: 60%;
  }
}

.travel-about .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--heading-color), transparent 10%)), url("assets/img/travel/showcase-12.webp") center/cover;
  border-radius: 25px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.travel-tours .tour-filters {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.travel-tours .tour-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.travel-tours .tour-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.travel-tours .featured-tours-slider {
  padding-bottom: 40px;
}

.travel-tours .featured-tours-slider .

{
  height: auto !important;
}

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

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

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

.travel-tours .featured-tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.travel-tours .featured-tour-card .tour-image .tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.travel-tours .featured-tour-card .tour-content {
  padding: 1.5rem;
}

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

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

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

.travel-tours .featured-tour-card .tour-content .tour-meta .duration {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
}

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

.travel-tours .featured-tour-card .tour-content .tour-meta .price {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.travel-tours .featured-tour-card .tour-content .btn {
  width: 100%;
}

.travel-tours .category-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

.travel-tours .category-card .category-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

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

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

@media (max-width: 768px) {
  .travel-tours .special-offers .offer-banner {
    flex-direction: column;
  }
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .travel-tours .special-offers .offer-banner .offer-image {
    flex: none;
    height: 150px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-image-wrapper img {
    height: 350px;
  }
}

.travel-tour-details .tour-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--contrast-color);
  padding: 60px 40px 40px;
}

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

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

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

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

@media (max-width: 768px) {
  .travel-tour-details .tour-hero .hero-content .hero-meta {
    gap: 15px;
  }
}

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

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

.travel-tour-details .tour-hero .hero-content .hero-tagline {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

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

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

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

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

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

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

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

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

.travel-tour-details .tour-overview .tour-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-tour-details .tour-overview .tour-highlights ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--default-color);
}

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

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

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

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

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

@media (max-width: 768px) {
  .travel-tour-details .tour-itinerary .itinerary-timeline::before {
    left: 25px;
  }
}

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

@media (max-width: 768px) {
  .travel-tour-details .tour-itinerary .itinerary-item {
    padding-left: 80px;
  }
}

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

@media (max-width: 768px) {
  .travel-tour-details .tour-itinerary .itinerary-item .day-number {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .travel-tour-details .tour-pricing .pricing-table {
    padding: 25px;
  }
}

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

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

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

@media (max-width: 768px) {
  .travel-tour-details .tour-pricing .pricing-header .price-item .price-amount {
    font-size: 2.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .travel-booking .booking-progress .step .step-title {
    font-size: 12px;
  }

  .travel-booking .booking-progress .step .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .travel-booking .payment-methods {
    flex-direction: column;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Gallery Slider Section
--------------------------------------------------------------*/
.gallery-slider {
  overflow: hidden;
}

.gallery-slider .gallery-container {
  padding: 20px 0 40px;
  position: relative;
}

.gallery-slider .swiper-wrapper {
  height: auto !important;
  align-items: center;
  padding: 30px 0;
}

.gallery-slider .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-slider .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-slider .gallery-img .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slider .gallery-img .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 3rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

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

.gallery-slider .gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-slider .gallery-img:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid var(--accent-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.2);
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.gallery-slider:hover .swiper-button-next,
.gallery-slider:hover .swiper-button-prev {
  opacity: 0.9;
}

.gallery-slider:hover .swiper-button-next:hover,
.gallery-slider:hover .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .gallery-slider .gallery-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .gallery-slider .swiper-button-next,
  .gallery-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .gallery-slider .swiper-wrapper {
    padding: 15px 0;
  }

  .gallery-slider .gallery-img .gallery-overlay i {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Destinasi Unggulan NTT Section
--------------------------------------------------------------*/

.featured-tours.section {
  padding: 60px 0;
  background: var(--background-color, #f9f9f9);
}

.featured-tours .section-title {
  text-align: left;
  margin-bottom: 40px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* --- Subtitle abu + garis merah di kanan --- */
.featured-tours .section-title .subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}

.featured-tours .section-title .subtitle::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: #e74c3c;
  margin-left: 5px;
  vertical-align: middle;
}

/* --- Judul besar hitam di bawah --- */
.featured-tours .section-title h2 {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 2px 0 0 0; /* jarak kecil dari garis */
  line-height: 1;
  background: none !important;
  text-transform: none;
}


/* ---------- Swiper Container ---------- */
.featured-tours .swiper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-tours .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.featured-tours .swiper-pagination {
  position: relative;
  margin-top: 15px;
  text-align: center;
}

.featured-tours .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid var(--accent-color, #0d6efd);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.featured-tours .swiper-pagination-bullet-active {
  background: var(--accent-color, #0d6efd);
  opacity: 1;
  transform: scale(1.2);
}

/* ---------- Tour Card ---------- */
.featured-tours .featured-tour-card {
  background: var(--surface-color, #fff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-tours .featured-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ---------- Image ---------- */
.featured-tours .tour-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

/* Badge */
.featured-tours .tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color, #0d6efd);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Card Content ---------- */
.featured-tours .tour-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-tours .tour-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color, #222);
  margin-bottom: 10px;
}

.featured-tours .tour-content p {
  color: var(--body-color, #666);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ---------- Button ---------- */
.featured-tours .btn {
  align-self: flex-start;
  background: var(--accent-color, #0d6efd);
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-tours .btn:hover {
  background: #084298;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .featured-tours .section-title h2 {
    font-size: 28px;
  }
}

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

  .featured-tours .tour-content h4 {
    font-size: 1.1rem;
  }

  .featured-tours .tour-content p {
    font-size: 0.9rem;
  }

  .featured-tours .btn {
    font-size: 0.9rem;
    padding: 7px 16px;
  }
}

/* === SECTION CTA === */
.featured-destinations {
  padding-top: 0 !important; /* hilangkan padding bawaan section */
  margin-top: 0 !important;
}

.featured-destinations .destinations-cta {
  margin-top: 10px !important; /* jarak lebih rapat ke atas */
  padding: 30px 40px !important;
  background: linear-gradient(135deg, #bdecf7 0%, #81abb4 100%) !important;
  border-radius: 16px !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Jika elemen di atas masih punya jarak besar, kita netralkan */
.featured-destinations .section-header,
.featured-destinations .section-title {
  margin-bottom: 100px !important; /* lebih rapat ke CTA */
  padding-bottom: 100 !important;
}

.featured-destinations .destinations-cta h3 {
  font-size: 26px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  color: #1a1a1a !important;
}

.featured-destinations .destinations-cta p {
  font-size: 16px !important;
  color: #333 !important;
  margin-bottom: 30px !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.6 !important;
}

.featured-destinations .destinations-cta .cta-buttons {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.featured-destinations .destinations-cta .btn {
  padding: 12px 28px !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 16px !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
}

.featured-destinations .destinations-cta .btn-primary {
  background-color: #008cad !important;
  color: #fff !important;
  border-color: #008cad !important;
}

.featured-destinations .destinations-cta .btn-primary:hover {
  background-color: #005f73 !important;
  border-color: #005f73 !important;
  transform: translateY(-2px) !important;
}

.featured-destinations .destinations-cta .btn-outline {
  background-color: transparent !important;
  color: #008cad !important;
  border-color: #008cad !important;
}

.featured-destinations .destinations-cta .btn-outline:hover {
  background-color: #008cad !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.travel-about.section {
  margin-top: 40px !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.travel-about .features-content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.travel-about .feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.travel-about .feature-icon {
  font-size: 28px;
  color: #008cad;
}

.travel-about .feature-details h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.travel-about .features-gallery img {
  transition: transform 0.3s ease;
}

.travel-about .features-gallery img:hover {
  transform: scale(1.03);
}

.gallery-thumbnails .thumbnail-item {
  aspect-ratio: 4 / 3; /* bisa diganti 16/9 atau 1/1 */
  overflow: hidden;
}

.gallery-thumbnails .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* gambar otomatis rapi & seragam */
  object-position: center;
  display: block;
}

/* Membuat semua gambar landscape dengan ratio 16:9 */
    .features-gallery img {
      width: 100%;
      height: 180px; /* Tinggi konsisten (bisa kamu ubah) */
      object-fit: cover; /* Crop otomatis landscape */
      object-position: center;
    }

    /* Untuk gambar utama beri tinggi lebih besar */
    .features-gallery .gallery-main img {
      height: 280px; /* Sesuaikan tinggi gambar utama */
    }

    /* Thumbnail tetap seragam */
    .gallery-thumbnails img {
      height: 140px; /* Sesuaikan tinggi thumbnail */
    }

    .product-details .product-gallery .main-showcase {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-details .product-gallery .main-showcase .image-zoom-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-details .product-gallery .main-showcase .image-zoom-container .main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  cursor: crosshair;
}

.product-details .product-gallery .main-showcase .image-zoom-container .main-product-image:hover {
  transform: scale(1.05);
}

.product-details .product-gallery .main-showcase .image-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.product-details .product-gallery .main-showcase .image-navigation .nav-arrow i {
  font-size: 1.25rem;
}

.product-details .product-gallery .main-showcase:hover .image-navigation {
  opacity: 1;
}

.product-details .product-gallery .thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .product-details .product-gallery .thumbnail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--surface-color);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-details .product-gallery .thumbnail-grid .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details .product-details {
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .product-details .product-details {
    padding: 0 1.5rem;
  }
}

.product-details .product-details .product-badge-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.product-details .product-details .product-badge-container .badge-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
}

.product-details .product-details .product-badge-container .rating-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-details .product-details .product-badge-container .rating-group .stars {
  display: flex;
}

.product-details .product-details .product-badge-container .rating-group .stars i {
  color: #ffd700;
  font-size: 1rem;
  margin-right: 1px;
}

.product-details .product-details .product-badge-container .rating-group .review-text {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .product-details .product-name {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (min-width: 768px) {
  .product-details .product-details .product-name {
    font-size: 2.25rem;
  }
}

.product-details .product-details .pricing-section {
  margin-bottom: 1.5rem;
}

.product-details .product-details .pricing-section .price-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-details .product-details .pricing-section .price-display .sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.product-details .product-details .pricing-section .price-display .regular-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.product-details .product-details .pricing-section .savings-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-details .product-details .pricing-section .savings-info .save-amount {
  color: #28a745;
  font-weight: 600;
  font-size: 0.875rem;
}

.product-details .product-details .pricing-section .savings-info .discount-percent {
  background: linear-gradient(135deg, #dc3545, #a72024);
  color: var(--contrast-color);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-details .product-details .product-description {
  margin-bottom: 1.5rem;
}

.product-details .product-details .product-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 1rem;
}

.product-details .product-details .availability-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, #28a745, transparent 90%), color-mix(in srgb, #28a745, transparent 95%));
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
}

.product-details .product-details .availability-status .stock-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-details .product-details .availability-status .stock-indicator i {
  color: #28a745;
  font-size: 1.125rem;
}

.product-details .product-details .availability-status .stock-indicator .stock-text {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details .availability-status .quantity-left {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details .variant-section {
  margin-bottom: 2rem;
}

.product-details .product-details .variant-section .color-selection .variant-label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.product-details .product-details .variant-section .color-selection .color-grid {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip.active {
  border-color: var(--contrast-color);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--accent-color);
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip.active .selection-check {
  opacity: 1;
}

.product-details .product-details .variant-section .color-selection .color-grid .color-chip .selection-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.product-details .product-details .variant-section .color-selection .selected-variant {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .product-details .variant-section .color-selection .selected-variant span {
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .product-details .purchase-section {
  margin-bottom: 2rem;
}

.product-details .product-details .purchase-section .quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-details .product-details .purchase-section .quantity-control .control-label {
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-btn i {
  font-size: 1rem;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  background: none;
  color: var(--heading-color);
  font-weight: 600;
}

.product-details .product-details .purchase-section .quantity-control .quantity-selector .quantity-input:focus {
  outline: none;
}

.product-details .product-details .purchase-section .action-buttons {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .product-details .product-details .purchase-section .action-buttons {
    flex-direction: column;
  }
}

.product-details .product-details .purchase-section .action-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-details .product-details .purchase-section .action-buttons .btn.primary-action {
  flex: 2;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
}

.product-details .product-details .purchase-section .action-buttons .btn.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .product-details .purchase-section .action-buttons .btn.secondary-action {
  flex: 2;
  background: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.product-details .product-details .purchase-section .action-buttons .btn.secondary-action:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action {
  width: 50px;
  padding: 0.875rem;
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action:hover {
  background: #dc3545;
  color: var(--contrast-color);
  border-color: #dc3545;
  transform: translateY(-2px);
}

.product-details .product-details .purchase-section .action-buttons .btn.icon-action i {
  font-size: 1.125rem;
}

.product-details .product-details .benefits-list {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .product-details .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-details .product-details .benefits-list .benefit-item:last-child {
  margin-bottom: 0;
}

.product-details .product-details .benefits-list .benefit-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.product-details .product-details .benefits-list .benefit-item span {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs-container {
  margin-top: 3rem;
}

.product-details .info-tabs-container .tabs-navigation {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-details .info-tabs-container .tabs-navigation .nav-link {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-details .info-tabs-container .tabs-navigation .nav-link:hover {
  color: var(--accent-color);
}

.product-details .info-tabs-container .tabs-navigation .nav-link.active {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .tab-content .tab-pane {
  padding: 2rem 0;
}

.product-details .info-tabs-container .overview-content .content-section h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-details .info-tabs-container .overview-content .content-section h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.product-details .info-tabs-container .overview-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .overview-content .highlights-grid .highlight-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents {
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .overview-content .package-contents h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.product-details .info-tabs-container .overview-content .package-contents .contents-list li i {
  color: #28a745;
  font-size: 1rem;
}

.product-details .info-tabs-container .technical-content .tech-group {
  margin-bottom: 2rem;
}

.product-details .info-tabs-container .technical-content .tech-group h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row {
  display: flex;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row:last-child {
  border-bottom: none;
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row .spec-name {
  flex: 1;
  font-weight: 600;
  color: var(--heading-color);
}

.product-details .info-tabs-container .technical-content .tech-group .spec-table .spec-row .spec-value {
  flex: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: right;
}

.product-details .info-tabs-container .reviews-content .reviews-header {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .product-details .info-tabs-container .reviews-content .reviews-header {
    flex-direction: column;
    gap: 2rem;
  }
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview {
  flex: 1;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score {
  text-align: center;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-display {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-stars {
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .score-stars i {
  color: #ffd700;
  font-size: 1.5rem;
  margin: 0 1px;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .average-score .total-reviews {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution {
  margin-top: 2rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .stars-label {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .progress-container {
  flex: 1;
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 4px;
  overflow: hidden;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .progress-container .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .reviews-header .rating-overview .rating-distribution .rating-row .count-label {
  width: 30px;
  text-align: right;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta {
  flex: 1;
  text-align: center;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta .review-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .reviews-header .write-review-cta .review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details {
  flex: 1;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .customer-name {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta .review-stars i {
  color: #ffd700;
  font-size: 0.875rem;
  margin-right: 1px;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .reviewer-profile .profile-details .review-meta .review-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-headline {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-text p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions {
  display: flex;
  gap: 1rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions .action-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .review-card .review-actions .action-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section {
  text-align: center;
  margin-top: 2rem;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section .load-more-reviews {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-details .info-tabs-container .reviews-content .customer-reviews-list .load-more-section .load-more-reviews:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.product-details .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.product-details .drift-zoom-pane.drift-opening {
  animation: driftFadeIn 200ms ease-out;
}

.product-details .drift-zoom-pane.drift-closing {
  animation: driftFadeOut 200ms ease-in;
}

@keyframes driftFadeIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes driftFadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Gallery Showcase Section (Swiper Style with Elegant Overlay)
--------------------------------------------------------------*/
.gallery-showcase {
  padding-top: 0px;   /* Jarak section ke section sebelumnya */
  padding-bottom: 10px; /* Jarak section ke section berikutnya */
}
.gallery-showcase {
  padding: 30px 0;
}

.gallery-showcase .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
}

.gallery-showcase .section-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* --- Swiper Wrapper and Slides --- */
.gallery-showcase .swiper-wrapper {
  height: auto !important;
  margin-bottom: 0 !important;
  
}

.gallery-showcase .gallery-item {
  position: relative!important;
  overflow: hidden!important;
  border-radius: 12px!important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15)!important;
  transition: transform 0.3s ease, box-shadow 0.3s ease!important;
  aspect-ratio: 16 / 9!important;
}

.gallery-showcase .gallery-item img {
  width: 100%!important;
  height: 100%!important;
  object-fit: cover!important;
  transition: transform 0.3s ease!important;
}

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

/* --- Overlay and Content --- */
.gallery-showcase .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-showcase .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-showcase .gallery-content {
  color: #fff;
  text-align: left;
}

.gallery-showcase .gallery-content h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-showcase .gallery-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* --- Swiper Navigation --- */
.gallery-showcase .swiper-button-next,
.gallery-showcase .swiper-button-prev {
  color: var(--accent-color);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-showcase .swiper-button-next:hover,
.gallery-showcase .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.gallery-showcase .swiper-button-next::after,
.gallery-showcase .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
}

/* --- Swiper Pagination (bullets) --- */
.gallery-showcase .swiper-pagination {
  position: relative;
  margin-top: 25px;
  text-align: center;
}

.gallery-showcase .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  opacity: 0.6;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-showcase .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.3);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .gallery-showcase .gallery-item img {
    height: 220px;
  }

  .gallery-showcase .gallery-content h4 {
    font-size: 1.1rem;
  }

  .gallery-showcase .gallery-content p {
    font-size: 0.9rem;
  }
}




/* Section Header Teks di Rekomendasi */
.section-header-left {
  text-align: left;
  margin-bottom: 0; /* jarak minimal ke swiper, bisa disesuaikan */
  padding-top: 20px;   /* jarak ke section sebelumnya */
}

.subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* jarak antara teks dan garis */
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.subtitle-line {
  flex: none;
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  text-align: left !important;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}


.travel-tours .search-container {
  background: #fff;
  border-radius: 50px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Search Bar */
.travel-tours .search-container .search-bar {
  position: relative;
  width: 100%;
}

.travel-tours .search-container .search-bar .form-control {
  width: 100%;
  border: none;
  border-radius: 50px;
  background: #fff;
  font-size: 1.1rem;
  padding: 1.25rem 4rem 1.25rem 1.75rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.travel-tours .search-container .search-bar .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(94, 213, 221, 0.2);
}

.travel-tours .search-container .search-bar .form-control::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* Search Button */
.travel-tours .search-container .search-bar .search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: #008cad;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.travel-tours .search-container .search-bar .search-btn:hover {
  background: #008cad;
  transform: translateY(-50%) scale(1.05);
}

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

/* Filter Pills */
.travel-tours .search-container .filter-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.travel-tours .search-container .filter-pills .filter-pill {
  background: transparent;
  border: 1px solid #ddd;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  color: #333;
  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: #008cad;
  border-color: #008cad;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Room Description Section ===== */
.room-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.room-description .section-subtitle {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.room-description p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* ===== Highlight Box (Right Card) ===== */
.highlight-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #1d4e44; /* garis hijau lembut di sisi kiri */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
  background: #1d4e44;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.highlight-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.highlight-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.highlight-box p {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.9rem;
  color: #7a7a7a;
  font-style: italic;
}




/* Atur jarak antara header dan konten berikutnya */
.page-header {
  padding-top: 100px; /* jarak dari navbar */
  text-align: center;
  width: 100%;
  margin-top: 0;
  padding-bottom: 10px; /* tambahkan jarak bawah langsung di dalam header */
}

.page-header + section,
.page-header + div {
  margin-top: 10px !important; /* paksa jarak antar section */
}


.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a2647;
  margin: 0;
}

.page-header p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.page-header p a {
  color: #1d4e89;
  text-decoration: none;
  font-weight: 500;
}

.page-header p a:hover {
  text-decoration: underline;
}




/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.gallery .isotope-filters li {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery .isotope-filters li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.gallery .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .gallery .isotope-filters {
    gap: 8px;
  }

  .gallery .isotope-filters li {
    padding: 8px 14px;
    font-size: 14px;
  }
}

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

@media (max-width: 768px) {
  .gallery .gallery-item {
    margin-bottom: 20px;
  }
}

.gallery .gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.gallery .gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

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

.gallery .gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.gallery .gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--contrast-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery .gallery-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.gallery .gallery-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.gallery .gallery-overlay .gallery-actions {
  display: flex;
  gap: 15px;
}

.gallery .gallery-overlay .gallery-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.gallery .gallery-overlay .gallery-actions a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

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

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

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px color-mix(in srgb, bl, transparent 92%);
  transition: all 0.3s ease;
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 15%) 0%, transparent 100%);
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 25%) 0%, transparent 100%);
  transition: background 0.3s ease;
}

.blog-hero .main-feature {
  aspect-ratio: 21/9;
}

.blog-hero .main-feature .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .blog-hero .main-feature .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .main-feature .post-excerpt {
  color: var(--contrast-color);
  font-size: 1.1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-excerpt {
    display: none;
  }
}

.blog-hero .secondary-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .secondary-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .secondary-features .blog-item {
  aspect-ratio: 3/4;
}

.blog-hero .regular-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .blog-hero .regular-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .regular-posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .regular-posts .blog-item {
  aspect-ratio: 16/9;
}

.blog-hero .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .post-meta .date,
.blog-hero .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .post-meta .date::before,
.blog-hero .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .post-meta .date::before {
  content: "\f282";
}

.blog-hero .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .post-title:not(h2) {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .blog-hero .post-title:not(h2) {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 20px !important; /* Menambahkan !important */
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px !important; /* Menambahkan !important */
  display: block;
}



.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .author-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

@media (max-width: 991.98px) {
  .blog-author .author-card {
    flex-direction: column;
  }
}

.blog-author .author-background {
  position: relative;
  width: 35%;
  min-height: 200px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 90%));
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .blog-author .author-background {
    width: 100%;
    min-height: 300px;
  }
}

.blog-author .author-background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  background: linear-gradient(to right, transparent, var(--surface-color));
}

@media (max-width: 991.98px) {
  .blog-author .author-background::after {
    display: none;
  }
}

.blog-author .author-image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
  z-index: 2;
}

.blog-author .author-image-wrapper:hover {
  transform: rotate(0deg);
}

.blog-author .author-image-wrapper .author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author .author-details {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-details {
    padding: 2rem 1.5rem;
  }
}

.blog-author .author-meta .author-name {
  font-size: 2rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-meta .author-credentials {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-author .author-meta .author-credentials .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.blog-author .author-description {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .author-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 767.98px) {
  .blog-author .author-stats {
    gap: 1rem;
    justify-content: space-around;
  }
}

.blog-author .author-stats .stat-item {
  text-align: center;
}

.blog-author .author-stats .stat-item .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.blog-author .author-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.25rem;
}

.blog-author .author-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

@media (max-width: 767.98px) {
  .blog-author .author-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.blog-author .author-footer .social-links {
  display: flex;
  gap: 1rem;
}

.blog-author .author-footer .social-links a {
  color: var(--accent-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.blog-author .author-footer .social-links a:hover {
  transform: translateY(-3px);
  color: var(--heading-color);
}

.blog-author .author-footer .btn-connect {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-author .author-footer .btn-connect i {
  transition: transform 0.3s ease;
}

.blog-author .author-footer .btn-connect:hover {
  background-color: var(--heading-color);
}

.blog-author .author-footer .btn-connect:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

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

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Slider Testimonials Section
--------------------------------------------------------------*/
.slider-testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

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

.slider-testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .slider-testimonials .testimonial-item {
    padding: 20px;
  }
}

.slider-testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.slider-testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.slider-testimonials .testimonial-item .profile {
  gap: 15px;
}

.slider-testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.slider-testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.slider-testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.slider-testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.slider-testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.slider-testimonials .swiper-button-prev,
.slider-testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.slider-testimonials .swiper-button-prev::after,
.slider-testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.slider-testimonials .swiper-button-prev:hover,
.slider-testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

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

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

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

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

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

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

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

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Room Details Section
--------------------------------------------------------------*/
.room-details .room-gallery-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.room-details .room-gallery-hero .gallery-slider {
  height: 500px;
}

@media (max-width: 768px) {
  .room-details .room-gallery-hero .gallery-slider {
    height: 350px;
  }
}

.room-details .room-gallery-hero .gallery-slider .swiper-wrapper {
  height: auto !important;
}

.room-details .room-gallery-hero .gallery-slider .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .room-details .room-gallery-hero .gallery-slider .swiper-slide img {
    height: 350px;
  }
}

.room-details .room-gallery-hero .gallery-slider .swiper-pagination {
  bottom: 20px;
}

.room-details .room-gallery-hero .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--contrast-color);
  opacity: 0.7;
}

.room-details .room-gallery-hero .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

.room-details .room-gallery-hero .gallery-slider .swiper-button-next,
.room-details .room-gallery-hero .gallery-slider .swiper-button-prev {
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.room-details .room-gallery-hero .gallery-slider .swiper-button-next:after,
.room-details .room-gallery-hero .gallery-slider .swiper-button-prev:after {
  font-size: 18px;
}

.room-details .room-gallery-hero .gallery-slider .swiper-button-next:hover,
.room-details .room-gallery-hero .gallery-slider .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.5);
}

.room-details .room-gallery-hero .room-overlay-info {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.room-details .room-gallery-hero .room-overlay-info .room-category {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.room-details .room-gallery-hero .room-overlay-info .room-rating {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.room-details .room-gallery-hero .room-overlay-info .room-rating .rating-score {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 16px;
}

.room-details .room-gallery-hero .room-overlay-info .room-rating .rating-stars {
  color: #ffc107;
  font-size: 14px;
}

.room-details .room-gallery-hero .room-overlay-info .room-rating .rating-stars i {
  margin-right: 1px;
}

.room-details .room-main-info .room-name {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .room-details .room-main-info .room-name {
    font-size: 2.2rem;
  }
}

.room-details .room-main-info .room-subtitle {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 35px;
  line-height: 1.6;
}

.room-details .room-main-info .room-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.room-details .room-main-info .room-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.room-details .room-main-info .room-specs .spec-item .spec-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.room-details .room-main-info .room-specs .spec-item .spec-icon i {
  font-size: 30px;
  color: var(--accent-color);
}

.room-details .room-main-info .room-specs .spec-item .spec-content h6 {
  margin: 0 0 5px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--heading-color);
}

.room-details .room-main-info .room-specs .spec-item .spec-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.room-details .booking-widget {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.room-details .booking-widget .pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.room-details .booking-widget .pricing-header .current-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.room-details .booking-widget .pricing-header .current-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.room-details .booking-widget .pricing-header .current-price .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.room-details .booking-widget .pricing-header .original-price {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  margin-top: 5px;
}

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

.room-details .booking-widget .booking-form .form-control,
.room-details .booking-widget .booking-form .form-select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  margin-bottom: 20px;
}

.room-details .booking-widget .booking-form .form-control:focus,
.room-details .booking-widget .booking-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.room-details .booking-widget .booking-form .btn-book-primary {
  width: 100%;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.room-details .booking-widget .booking-form .btn-book-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.room-details .booking-widget .booking-form .booking-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  justify-content: center;
}

.room-details .booking-widget .booking-form .booking-note i {
  color: #28a745;
}

.room-details .room-features-section .feature-block {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .room-details .room-features-section .feature-block {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.room-details .room-features-section .feature-block h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .room-features-section .feature-block p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 18px;
}

.room-details .room-features-section .amenities-grid h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .room-features-section .amenities-grid .amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 576px) {
  .room-details .room-features-section .amenities-grid .amenities-list {
    grid-template-columns: 1fr;
  }
}

.room-details .room-features-section .amenities-grid .amenities-list .amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.room-details .room-features-section .amenities-grid .amenities-list .amenity-item i {
  color: var(--accent-color);
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
}

.room-details .room-features-section .amenities-grid .amenities-list .amenity-item span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.room-details .info-tabs-section .info-nav {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 30px;
}

.room-details .info-tabs-section .info-nav .nav-link {
  background: none;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 15px 25px;
  font-weight: 500;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.room-details .info-tabs-section .info-nav .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.room-details .info-tabs-section .info-nav .nav-link:hover {
  color: var(--accent-color);
}

.room-details .info-tabs-section .info-tab-content .tab-inner {
  padding: 25px 0;
}

.room-details .info-tabs-section .info-tab-content .tab-inner h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .info-tabs-section .info-tab-content .tab-inner .detail-list {
  list-style: none;
  padding: 0;
}

.room-details .info-tabs-section .info-tab-content .tab-inner .detail-list li {
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.room-details .info-tabs-section .info-tab-content .tab-inner .detail-list li:last-child {
  border-bottom: none;
}

.room-details .info-tabs-section .info-tab-content .tab-inner p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.room-details .addon-services .services-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .addon-services .service-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  height: 100%;
}

.room-details .addon-services .service-card:hover {
  transform: translateY(-8px);
}

.room-details .addon-services .service-card .service-header {
  margin-bottom: 20px;
}

.room-details .addon-services .service-card .service-header .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.room-details .addon-services .service-card .service-header .service-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.room-details .addon-services .service-card .service-header h5 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .addon-services .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.room-details .addon-services .service-card .service-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
}

.room-details .final-cta .cta-container {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 20px;
  padding: 50px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .room-details .final-cta .cta-container {
    padding: 30px 20px;
  }
}

.room-details .final-cta .cta-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 700;
}

.room-details .final-cta .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  line-height: 1.6;
}

.room-details .final-cta .cta-content .cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-details .final-cta .cta-content .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-details .final-cta .cta-content .cta-features .feature-item i {
  color: #28a745;
  font-size: 16px;
}

.room-details .final-cta .cta-content .cta-features .feature-item span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.room-details .final-cta .cta-booking {
  text-align: center;
}

@media (max-width: 992px) {
  .room-details .final-cta .cta-booking {
    margin-top: 30px;
  }
}

.room-details .final-cta .cta-booking .price-summary {
  margin-bottom: 25px;
}

.room-details .final-cta .cta-booking .price-summary .total-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room-details .final-cta .cta-booking .price-summary .total-price .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.room-details .final-cta .cta-booking .price-summary .total-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.room-details .final-cta .cta-booking .price-summary .total-price .unit {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.room-details .final-cta .cta-booking .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Blog */
.blog {
  --radius: 16px;
  --card-radius: 18px;
  --ring: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .06);
  --shadow-hard: 0 15px 50px rgba(0, 0, 0, .12);
  --grad: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #fff 70%), color-mix(in srgb, var(--accent-color), #000 10%));
  font-family: 'Roboto', sans-serif;
}

/* Reading Progress */
.blog .reading-progress {
  position: sticky;
  top: 72px;
  height: 4px;
  width: 100%;
  background: transparent;
  z-index: 20;
}

.blog .reading-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent-color);
  border-radius: 0 2px 2px 0;
  transition: width .1s linear;
}

/* Grid Layout */
.blog .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1100px) {
  .blog .blog-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }
}

/* Post Card */
.blog .post-card {
  background: var(--surface-color);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog .post-hero {
  padding: 32px 32px 0;
}

@media (min-width: 768px) {
  .blog .post-hero {
    padding: 40px 48px 0;
  }
}

.blog .post-kicker {
  margin-bottom: 12px;
}

.blog .blog-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: #cdf0f0;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.blog .post-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin: 8px 0 12px;
  color: black;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}

.blog .post-excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin-bottom: 18px;
}

/* Meta */
.blog .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width:768px) {
  .blog .post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog .meta-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.blog .nama-penulis {
  font-weight: 700;
  color: var(--accent-color);
}

.blog .meta-detail {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.blog .meta-detail .dot {
  margin: 0 6px;
}

.blog .meta-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog .meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--background-color), #f2f6ff 30%);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-decoration: none;
}

.blog .meta-chip:hover {
  border-color: var(--accent-color);
}

/* Cover */
.blog .post-cover {
  margin: 24px 0 0;
}

.blog .post-cover img {
  width: 100%;
  display: block;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: calc(var(--card-radius) - 6px);
  box-shadow: var(--shadow-soft);
}

.blog .post-cover figcaption {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 10px 4px 0;
}

/* Content */
.blog .post-content {
  padding: 24px 32px 36px;
}

@media (min-width: 768px) {
  .blog .post-content {
    padding: 28px 48px 48px;
  }
}

.blog .post-content h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 22px 0 12px;
  font-weight: 800;
  color: black;
}

.blog .post-content h3 {
  font-size: clamp(18px, 1.7vw, 22px);
  margin: 20px 0 10px;
  font-weight: 700;
  color: black;
}

.blog .post-content p,
.blog .post-content li {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 16px;
  line-height: 1.85;
}

.blog .post-content ul {
  padding-left: 1.1rem;
  margin: 6px 0 16px;
}

.blog .post-content ol {
  padding-left: 1.1rem;
  margin: 6px 0 16px;
}

.blog .post-content ol.checklist>li {
  margin-bottom: 8px;
}

/* Callout */
.blog .callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  margin: 20px 0;
  border: 1px solid rgba(57, 55, 65, 0.3);
  background: rgba(64, 71, 75, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog .callout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog .callout i {
  font-size: 22px;
  margin-top: 2px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.blog .callout.success {
  background: rgba(70, 70, 74, 0.1);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

/* Pull Quote */
.blog .pull-quote {
  margin: 22px 0;
  padding: 22px 20px;
  border-left: 4px solid var(--accent-color);
  background: color-mix(in srgb, var(--background-color), #cdf0f0 50%);
  border-radius: 12px;
}

.blog .pull-quote p {
  font-size: 18px;
  font-style: italic;
  margin: 0;
}

/* Packages */
.blog .package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 12px 0 20px;
}

@media (min-width: 900px) {
  .blog .package-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog .package-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.blog .package-card.featured {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), #fff 92%), var(--surface-color));
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: var(--shadow-hard);
}

.blog .package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog .package-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
  background: #fbf1d5;
  color: #8a5b00;
  letter-spacing: .5px;
}

.blog .package-card.featured .package-badge {
  background: #cdf0f0;
  color: #006e6e;
}

.blog .package-list {
  padding-left: 1rem;
  margin: 4px 0 12px;
}

.blog .package-list li {
  margin-bottom: 6px;
}

/* Table */
.blog .table-wrap {
  overflow: auto;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog .price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-color);
}

.blog .price-table th,
.blog .price-table td {
  padding: 14px 16px;
  text-align: left;
}

.blog .price-table thead th {
  background: color-mix(in srgb, var(--background-color), #cdf0f0 55%);
  font-weight: 700;
}

.blog .price-table tbody tr+tr td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Bad Good */
.blog .bad-good li {
  margin-bottom: 8px;
}

.blog .bad-good li span {
  font-weight: 700;
}

/* Tags & Share */
.blog .post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}

.blog .post-tags .tag {
  display: inline-flex;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--background-color), #cdf0f0 40%);
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  color: var(--heading-color);
}

.blog .share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 6px;
}

.blog .share-bar .share {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--background-color), #cdf0f0 40%);
  color: var(--heading-color);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog .share-bar .share:hover {
  border-color: var(--accent-color);
}

/* Author Box */
.blog .author-box {
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--background-color), #cdf0f0 45%);
  display: flex;
  gap: 12px;
  align-items: center;
}

.blog .author-box img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.blog .author-box h4 {
  margin: 0 0 4px;
}

/* Sidebar */
.blog .sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width:1100px) {
  .blog .sidebar {
    position: sticky;
    top: 110px;
  }
}

.blog .widget {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog .widget-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.blog .search-form {
  position: relative;
}

.blog .search-form input {
  width: 100%;
  padding: 12px 46px 12px 14px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: color-mix(in srgb, var(--background-color), #cdf0f0 40%);
}

.blog .search-form input:focus {
  outline: none;
  box-shadow: var(--ring);
  border-color: var(--accent-color);
}

.blog .search-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog .cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog .cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--heading-color);
}

.blog .cat-list a:hover {
  border-color: var(--accent-color);
}

.blog .cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #cdf0f0;
  color: #006e6e;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.blog .cat-list .count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog .mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog .mini-post {
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.blog .mini-post:hover {
  background: rgba(0, 140, 205, 0.05); /* var(--accent-color) versi transparan */
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.blog .mini-post img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.blog .mini-title {
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
}

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

.blog .newsletter p {
  margin-top: -2px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog .subscribe-form {
  display: flex;
  gap: 8px;
}

.blog .subscribe-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: color-mix(in srgb, var(--background-color), #cdf0f0 40%);
}

.blog .subscribe-form button {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
}

/* Related */
.blog .related {
  margin-top: 28px;
}

.blog .related h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blog .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .blog .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog .related-card {
  display: flex;
  gap: 12px;
  background: var(--surface-color);
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  box-shadow: var(--shadow-soft);
}

.blog .related-card:hover {
  transform: translateY(-2px);
  transition: .2s;
  border-color: var(--accent-color);
}

.blog .related-card .rel-media img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  display: block;
}

.blog .related-card .rel-body {
  padding: 10px 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog .related-card h4 {
  font-size: 16px;
  margin: 6px 0;
  line-height: 1.4;
}

.blog .related-card .rel-meta {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog .hidden {
  display: none !important;
}

/* Daftar Isi (TOC) */
.post-toc {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(57, 62, 64, 0.05);
  border-left: 4px solid var(--accent-color);
  font-family: sans-serif;
  transition: all 0.3s ease;
}

.post-toc h3 {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-toc ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
  max-height: 1000px;
}

.post-toc.collapsed ul {
  max-height: 0;
}

.post-toc li {
  margin: 6px 0;
}

.post-toc li a {
  text-decoration: none;
  color: #000000;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.post-toc li a:hover {
  color: var(--accent-color);
}

.post-toc li.toc-h3 {
  padding-left: 16px;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.post-toc.collapsed .toggle-icon {
  transform: rotate(-90deg);
}

/* ARTIKEL TERKAIT */
.related-articles {
  margin: 40px 0;
  padding-top: 0;
}

.related-articles h4 {
  font-size: 1.8rem;
  padding-bottom: 12px;
  color: #000000;
  text-align: left;
  font-weight: 700;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f0f8ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--accent-color);
}

.related-card figure {
  margin: 0;
  overflow: hidden;
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-card h5 {
  font-size: 1rem !important;
  padding: 10px;
  color: var(--heading-color);
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 992px) {
  .related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .related-list {
    grid-template-columns: 1fr;
  }
}