@charset "UTF-8";

/* 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 */
:root { 
  --background-color: #ffffff;
  --default-color: #35211f; 
  --heading-color: #200f0d; 
  --accent-color: #1a6824; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors */
:root {
  --nav-color: #ffffff;  
  --nav-hover-color: #1a6824; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-hover-color: #1a6824; 
}

/* Color Presets */

.light-background {
  --background-color: #faf9f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.26);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.85);
}

/*--------------------------------------------------------------
# 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: 14px;
    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;
    position: relative; 
     z-index: 99999;
  }

  .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-hover-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: var(--background-color);
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--surface-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#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;
}

/*--------------------------------------------------------------
# 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 {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/travel/aventura1.avif") center center no-repeat;
  background-size: cover;
  padding: 120px 0;
  min-height: 80vh;
  display: grid;
  place-content: center;
}

.travel-hero .content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.travel-hero .content .lead {
  font-size: 1.25rem;
  max-width: 600px;
}

.travel-hero .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.travel-hero .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.travel-hero .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.travel-hero .btn.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.travel-hero .btn.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.travel-hero .booking-form {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.travel-hero .booking-form label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.travel-hero .booking-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
  background-color: transparent;
  color: var(--default-color);
}

.travel-hero .booking-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.travel-hero .booking-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-hero .booking-form .btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
}

.travel-hero .booking-form .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .travel-hero {
    padding: 80px 0;
  }

  .travel-hero .content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .travel-hero .content {
    text-align: center;
  }

  .travel-hero .content h1 {
    font-size: 2rem;
  }

  .travel-hero .content .lead {
    font-size: 1rem;
  }

  .travel-hero .d-flex {
    justify-content: center !important;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .content-grid {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .why-us .content-grid {
    margin-bottom: 3rem;
  }
}

.why-us .about-block {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.why-us .about-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us .about-block .about-header {
  margin-bottom: 2rem;
}

.why-us .about-block .about-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.3;
}

.why-us .about-block .about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.why-us .about-block .feature-list {
  margin-top: 2rem;
}

.why-us .about-block .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.why-us .about-block .feature-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-us .about-block .feature-list .feature-item span {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-us .about-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .why-us .about-block .about-header h3 {
    font-size: 1.6rem;
  }
}

.why-us .section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us .image-showcase {
  position: relative;
  height: 100%;
}

.why-us .image-showcase .main-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.why-us .image-showcase .main-image img {
  height: 100%;
  object-fit: cover;
}

.why-us .image-showcase .main-image .overlay-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-us .image-showcase .main-image .overlay-badge .badge-content i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.why-us .image-showcase .main-image .overlay-badge .badge-content .badge-text span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .image-showcase .floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.why-us .image-showcase .floating-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.why-us .image-showcase .floating-card .card-content .rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content .rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.why-us .image-showcase .floating-card .card-content .rating span {
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.why-us .image-showcase .floating-card .card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .why-us .image-showcase .main-image {
    min-height: 300px;
  }

  .why-us .image-showcase .overlay-badge {
    top: 15px;
    right: 15px;
    padding: 0.8rem 1rem;
  }

  .why-us .image-showcase .floating-card {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

.why-us .why-choose-wrapper {
  margin-top: 6rem;
}

.why-us .why-choose-wrapper .section-header {
  margin-bottom: 4rem;
}

.why-us .why-choose-wrapper .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper .section-header h3 {
    font-size: 2rem;
  }
}

.why-us .why-choose-wrapper .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .why-us .why-choose-wrapper {
    margin-top: 4rem;
  }

  .why-us .why-choose-wrapper .section-header {
    margin-bottom: 2.5rem;
  }
}

.why-us .feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--surface-color);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.why-us .feature-box:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us .feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.why-us .feature-box:hover .feature-icon-wrapper .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .feature-box .feature-icon-wrapper {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.why-us .feature-box .feature-icon-wrapper .feature-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-us .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.why-us .feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us .feature-box {
    padding: 1.5rem;
  }

  .why-us .feature-box .feature-icon-wrapper .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .why-us .feature-box h4 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .destination-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.featured-destinations .destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-destinations .destination-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.featured-destinations .destination-card:hover .explore-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

.featured-destinations .image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.featured-destinations .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-destinations .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent 50%);
}

.featured-destinations .image-wrapper .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-destinations .image-wrapper .badge.featured {
  background: #ff6b35;
}

.featured-destinations .image-wrapper .badge.new {
  background: #28a745;
}

.featured-destinations .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.featured-destinations .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.featured-destinations .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.featured-destinations .features {
  margin-bottom: 20px;
}

.featured-destinations .features .feature-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  margin-right: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-destinations .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.featured-destinations .card-footer .tours-count {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-destinations .card-footer .explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-destinations .card-footer .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.featured-destinations .destinations-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  border-radius: 16px;
  text-align: center;
}

.featured-destinations .destinations-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.featured-destinations .destinations-cta p {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-destinations .destinations-cta .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-destinations .destinations-cta .btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.featured-destinations .destinations-cta .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.featured-destinations .destinations-cta .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.featured-destinations .destinations-cta .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.featured-destinations .destinations-cta .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .featured-destinations .destination-card .image-wrapper {
    height: 200px;
  }

  .featured-destinations .destination-card .content {
    height: calc(100% - 200px);
    padding: 16px;
  }

  .featured-destinations .destination-card .content h4 {
    font-size: 16px;
  }

  .featured-destinations .destination-card .content p {
    font-size: 13px;
  }

  .featured-destinations .destination-card .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .featured-destinations .destination-card .card-footer .explore-btn {
    text-align: center;
    justify-content: center;
  }

  .featured-destinations .destinations-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .featured-destinations .destinations-cta h3 {
    font-size: 24px;
  }

  .featured-destinations .destinations-cta p {
    font-size: 14px;
  }

  .featured-destinations .destinations-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-destinations .destinations-cta .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .featured-destinations .features .feature-tag {
    font-size: 10px;
    padding: 2px 6px;
    margin-right: 4px;
  }
}

/*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
.featured-tours .destination-card {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  position: relative;
  transition: all 0.4s ease;
}

.featured-tours .destination-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 75%);
}

.featured-tours .destination-card .destination-overlay {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.featured-tours .destination-card .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-tours .destination-card .destination-overlay .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-tours .destination-card .destination-overlay .badge-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.hot {
  background-color: #ff4757;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.cultural {
  background-color: #7209b7;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.limited {
  background-color: #ff6b35;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.new {
  background-color: #2ed573;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.adventure {
  background-color: #ff7675;
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.popular {
  background-color: #fdcb6e;
  color: var(--heading-color);
}

.featured-tours .destination-card .destination-overlay .badge-container .featured-badge.luxury {
  background-color: #a29bfe;
}

.featured-tours .destination-card .destination-overlay .badge-container .price-tag {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  color: var(--heading-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.featured-tours .destination-card .destination-overlay .card-details {
  color: var(--contrast-color);
}

.featured-tours .destination-card .destination-overlay .card-details h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--contrast-color);
  line-height: 1.3;
}

.featured-tours .destination-card .destination-overlay .card-details .meta-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
}

.featured-tours .destination-card .destination-overlay .card-details .meta-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-tours .destination-card .destination-overlay .card-details .meta-info span i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-tours .destination-card .destination-overlay .card-details p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.featured-tours .destination-card .destination-overlay .card-details .action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars i {
  color: #ffd700;
  font-size: 12px;
}

.featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars small {
  margin-left: 6px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-weight: 600;
  font-size: 12px;
}

.featured-tours .destination-card:hover .destination-overlay img {
  transform: scale(1.1);
}

.featured-tours .destination-card:hover .destination-overlay .card-overlay {
  opacity: 1;
}

.featured-tours .discover-more-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 30%));
  color: var(--contrast-color);
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.featured-tours .discover-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s ease;
}

.featured-tours .discover-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.featured-tours .discover-more-btn:hover::before {
  left: 100%;
}

@media (max-width: 1200px) {
  .featured-tours .destination-card {
    height: 380px;
  }

  .featured-tours .destination-card .destination-overlay .card-details h5 {
    font-size: 20px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .meta-info {
    flex-direction: column;
    gap: 8px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
    text-align: center;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .rating-stars {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .featured-tours .destination-card {
    height: 350px;
  }

  .featured-tours .destination-card .destination-overlay .card-overlay {
    opacity: 1;
    background: linear-gradient(180deg, color-mix(in srgb, var(--default-color), transparent 60%) 0%, color-mix(in srgb, var(--default-color), transparent 20%) 100%);
  }

  .featured-tours .destination-card .destination-overlay .card-details h5 {
    font-size: 18px;
  }

  .featured-tours .destination-card .destination-overlay .card-details p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .featured-tours .destination-card {
    height: 320px;
  }

  .featured-tours .destination-card .destination-overlay .badge-container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .featured-tours .destination-card .destination-overlay .badge-container .featured-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .featured-tours .destination-card .destination-overlay .badge-container .price-tag {
    font-size: 14px;
    padding: 6px 12px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .meta-info {
    gap: 6px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row {
    gap: 10px;
  }

  .featured-tours .destination-card .destination-overlay .card-details .action-row .explore-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content .lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.about .content p {
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stat-item {
  padding: 1.5rem 0;
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about .stat-item .stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about .btn-learn-more span {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.about .btn-learn-more i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover {
  color: var(--accent-color);
}

.about .btn-learn-more:hover span {
  border-bottom-color: var(--accent-color);
}

.about .btn-learn-more:hover i {
  transform: translateX(4px);
}

.about .image-stack {
  position: relative;
}

.about .image-stack .image-main {
  position: relative;
  z-index: 1;
}

.about .image-stack .image-main img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-stack .image-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  max-width: 200px;
}

@media (max-width: 768px) {
  .about .image-stack .image-overlay {
    bottom: -20px;
    right: -20px;
    max-width: 150px;
  }
}

.about .image-stack .image-overlay img {
  border-radius: 8px;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .feature-item {
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease;
}

.about .feature-item:hover {
  transform: translateY(-5px);
}

.about .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about .feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about .feature-item h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .feature-item:hover .feature-icon {
  background: var(--accent-color);
  transform: scale(1.05);
}

.about .feature-item:hover .feature-icon i {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }

  .about .image-stack {
    margin-top: 3rem;
  }

  .about .stat-item {
    padding: 1rem 0;
  }

  .about .stat-item .stat-number {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.travel-tours {
  color: var(--default-color);
}

.travel-tours .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .travel-tours .hero-title {
    font-size: 2.5rem;
  }
}

.travel-tours .hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.travel-tours .search-container {
  background: var(--surface-color);
  border-radius: 60px;
  padding: 1rem;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}

.travel-tours .search-container .search-bar {
  position: relative;
  margin-bottom: 1.5rem;
}

.travel-tours .search-container .search-bar .form-control {
  border: none;
  background: transparent;
  font-size: 1.125rem;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  color: var(--default-color);
}

.travel-tours .search-container .search-bar .form-control:focus {
  box-shadow: none;
  background: transparent;
}

.travel-tours .search-container .search-bar .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-tours .search-container .search-bar .search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.travel-tours .search-container .search-bar .search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: color-mix(in srgb, var(--accent-color), #000 10%);
}

.travel-tours .search-container .search-bar .search-btn i {
  font-size: 1.25rem;
}

.travel-tours .search-container .filter-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.travel-tours .search-container .filter-pills .filter-pill {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .search-container .filter-pills .filter-pill:hover,
.travel-tours .search-container .filter-pills .filter-pill.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.travel-tours .featured-hero-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .travel-tours .featured-hero-tour .featured-image img {
    height: 300px;
  }
}

.travel-tours .featured-hero-tour .featured-content .featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.travel-tours .featured-hero-tour .featured-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .travel-tours .featured-hero-tour .featured-content h3 {
    font-size: 2rem;
  }
}

.travel-tours .featured-hero-tour .featured-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating {
  color: var(--accent-color);
}

.travel-tours .featured-hero-tour .featured-content .featured-meta span.rating i {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price {
  margin-bottom: 2rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-price .from {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .featured-hero-tour .featured-content .featured-price .amount {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-left: 0.5rem;
}

.travel-tours .featured-hero-tour .featured-content .featured-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .featured-hero-tour .featured-content .featured-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.travel-tours .section-subtitle {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 3rem;
  text-align: center;
}

.travel-tours .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.travel-tours .categories-grid .category-item {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.travel-tours .categories-grid .category-item:hover {
  transform: translateY(-5px);
}

.travel-tours .categories-grid .category-item:hover .category-visual img {
  transform: scale(1.05);
}

.travel-tours .categories-grid .category-item .category-visual {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.travel-tours .categories-grid .category-item .category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.travel-tours .categories-grid .category-item h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.travel-tours .categories-grid .category-item .tour-count {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-tours .tours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.travel-tours .tours-header .view-toggle {
  display: flex;
  gap: 0.5rem;
}

.travel-tours .tours-header .view-toggle .toggle-btn {
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background: transparent;
  border-radius: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.travel-tours .tours-header .view-toggle .toggle-btn.active,
.travel-tours .tours-header .view-toggle .toggle-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.travel-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.travel-tours .tours-grid .tour-item {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.travel-tours .tours-grid .tour-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.travel-tours .tours-grid .tour-item:hover .tour-image img {
  transform: scale(1.03);
}

.travel-tours .tours-grid .tour-item .tour-image {
  position: relative;
  overflow: hidden;
}

.travel-tours .tours-grid .tour-item .tour-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.travel-tours .tours-grid .tour-item .tour-image .tour-availability {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  backdrop-filter: blur(10px);
  color: var(--default-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.travel-tours .tours-grid .tour-item .tour-details {
  padding: 2rem;
}

.travel-tours .tours-grid .tour-item .tour-details h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.travel-tours .tours-grid .tour-item .tour-details p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-highlights span i {
  color: var(--accent-color);
  font-size: 0.875rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .price {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--accent-color);
}

.travel-tours .tours-grid .tour-item .tour-details .tour-pricing .per {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.travel-tours .offers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.travel-tours .offers-container .offer-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.travel-tours .offers-container .offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-tours .offers-container .offer-card .offer-image {
  height: 200px;
  overflow: hidden;
}

.travel-tours .offers-container .offer-card .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-tours .offers-container .offer-card .offer-content {
  padding: 2rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.travel-tours .offers-container .offer-card .offer-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-tours .offers-container .offer-card .offer-content .offer-validity {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta {
  text-align: center;
  background: var(--surface-color);
  padding: 4rem 3rem;
  border-radius: 20px;
}

.travel-tours .consultation-cta h3 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.travel-tours .consultation-cta p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.travel-tours .consultation-cta .cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .travel-tours .consultation-cta .cta-actions {
    flex-direction: column;
  }
}

.travel-tours .btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.travel-tours .btn-accent {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  border: none;
  color: var(--contrast-color);
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.travel-tours .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.travel-tours .btn-text {
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.travel-tours .btn-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.travel-tours .btn-text:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.travel-tours .btn-text:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Travel Booking Section
--------------------------------------------------------------*/
.travel-booking .booking-form {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
  .travel-booking .booking-form {
    padding: 30px 20px;
  }
}

.travel-booking .booking-step {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-booking .booking-step:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.travel-booking .booking-step .step-header {
  margin-bottom: 30px;
}

.travel-booking .booking-step .step-header h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.travel-booking .booking-step .step-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  font-size: 16px;
}

.travel-booking .form-group {
  margin-bottom: 25px;
}

.travel-booking .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
}

.travel-booking .form-group .form-control,
.travel-booking .form-group .form-select {
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.travel-booking .form-group .form-control:focus,
.travel-booking .form-group .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.travel-booking .form-group .form-control::placeholder,
.travel-booking .form-group .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.travel-booking .add-ons-grid {
  display: grid;
  gap: 20px;
}

.travel-booking .add-ons-grid .add-on-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.travel-booking .add-ons-grid .add-on-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 3px 15px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.travel-booking .add-ons-grid .add-on-item .add-on-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header input[type=checkbox] {
  margin-top: 2px;
  accent-color: var(--accent-color);
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label {
  flex: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 600;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label i {
  color: var(--accent-color);
  font-size: 20px;
}

.travel-booking .add-ons-grid .add-on-item .add-on-header label .price {
  margin-left: auto;
  color: var(--accent-color);
  font-weight: 700;
}

.travel-booking .add-ons-grid .add-on-item p {
  margin: 0;
  padding-left: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.travel-booking .payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.travel-booking .payment-methods .payment-method {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.travel-booking .payment-methods .payment-method.active,
.travel-booking .payment-methods .payment-method:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.travel-booking .payment-methods .payment-method input[type=radio] {
  display: none;
}

.travel-booking .payment-methods .payment-method label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
}

.travel-booking .payment-methods .payment-method label i {
  font-size: 24px;
  color: var(--accent-color);
}

.travel-booking .credit-card-form {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.travel-booking .secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
}

.travel-booking .secure-badge i {
  color: var(--accent-color);
  font-size: 20px;
}

.travel-booking .terms-conditions {
  margin-bottom: 30px;
}

.travel-booking .terms-conditions .form-check {
  margin-bottom: 15px;
}

.travel-booking .terms-conditions .form-check .form-check-input {
  accent-color: var(--accent-color);
  margin-top: 2px;
}

.travel-booking .terms-conditions .form-check .form-check-label {
  font-size: 14px;
  cursor: pointer;
}

.travel-booking .terms-conditions .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.travel-booking .terms-conditions .form-check .form-check-label a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.travel-booking .form-actions {
  text-align: center;
}

.travel-booking .form-actions .btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.travel-booking .form-actions .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.travel-booking .booking-summary {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .travel-booking .booking-summary {
    position: static;
    margin-top: 40px;
  }
}

.travel-booking .booking-summary .summary-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.travel-booking .booking-summary .summary-header h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin: 0;
}

.travel-booking .booking-summary .selected-tour {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.travel-booking .booking-summary .selected-tour img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.travel-booking .booking-summary .selected-tour .tour-info {
  flex: 1;
}

.travel-booking .booking-summary .selected-tour .tour-info h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.travel-booking .booking-summary .selected-tour .tour-info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  margin-bottom: 8px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating i {
  color: #ffc107;
  font-size: 12px;
}

.travel-booking .booking-summary .selected-tour .tour-info .tour-rating span {
  margin-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.travel-booking .booking-summary .booking-details {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-booking .booking-summary .booking-details .detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.travel-booking .booking-summary .booking-details .detail-row:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .booking-details .detail-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .booking-summary .booking-details .detail-row span:last-child {
  color: var(--heading-color);
  font-weight: 600;
}

.travel-booking .booking-summary .price-breakdown {
  margin-bottom: 25px;
}

.travel-booking .booking-summary .price-breakdown h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.travel-booking .booking-summary .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.travel-booking .booking-summary .price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .price-breakdown .price-row span:first-child {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.travel-booking .booking-summary .price-breakdown .price-row span:last-child {
  color: var(--heading-color);
  font-weight: 500;
}

.travel-booking .booking-summary .price-breakdown .price-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
}

.travel-booking .booking-summary .payment-security {
  margin-bottom: 25px;
  padding: 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 8px;
}

.travel-booking .booking-summary .payment-security .security-badges,
.travel-booking .booking-summary .payment-security .accepted-cards {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.travel-booking .booking-summary .payment-security .security-badges:last-child,
.travel-booking .booking-summary .payment-security .accepted-cards:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .payment-security .security-badges i,
.travel-booking .booking-summary .payment-security .accepted-cards i {
  color: var(--accent-color);
  font-size: 16px;
}

.travel-booking .booking-summary .payment-security .security-badges span,
.travel-booking .booking-summary .payment-security .accepted-cards span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.travel-booking .booking-summary .help-section h6 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.travel-booking .booking-summary .help-section p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 15px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item i {
  color: var(--accent-color);
  font-size: 16px;
  width: 16px;
}

.travel-booking .booking-summary .help-section .contact-info .contact-item span {
  color: var(--heading-color);
  font-weight: 500;
}

.travel-booking input[type=text],
.travel-booking input[type=email],
.travel-booking input[type=tel],
.travel-booking input[type=date],
.travel-booking select,
.travel-booking textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.travel-booking input[type=text]:focus,
.travel-booking input[type=email]:focus,
.travel-booking input[type=tel]:focus,
.travel-booking input[type=date]:focus,
.travel-booking select:focus,
.travel-booking textarea:focus {
  border-color: var(--accent-color);
}

.travel-booking input[type=text]::placeholder,
.travel-booking input[type=email]::placeholder,
.travel-booking input[type=tel]::placeholder,
.travel-booking input[type=date]::placeholder,
.travel-booking select::placeholder,
.travel-booking textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 70px 0;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

@media (min-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
}

.gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery .gallery-item.featured {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .gallery .gallery-item.featured {
    grid-column: span 2;
  }
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery .btn-view-more {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery .btn-view-more i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.gallery .btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.gallery .btn-view-more:hover i {
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}


/*--------------------------------------------------------------
# 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 .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 .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: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}


/* Cor padrão dos links */
.pagination .page-link {
  color: var(--accent-color);        
  border-color: var(--accent-color); 
  background-color: var(--surface-color);
  transition: all 0.3s;
}

/* Hover nos links */
.pagination .page-link:hover {
  background-color: var(--accent-color);  
  color: var(--contrast-color);          
}

/* Página ativa */
.pagination .page-item.active .page-link {
  background-color: var(--accent-color); 
  border-color: var(--accent-color);    
  color: var(--contrast-color);         
}

/* Página desativada */
.pagination .page-item.disabled .page-link {
  color: var(--default-color);   
  pointer-events: none;
  opacity: 0.5;
}

.explore-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/*--------------------------------------------------------------
# Room Details Section
--------------------------------------------------------------*/
.room-details .room-header-image {
  position: relative;
}

.room-details .room-header-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-details .room-header-image .room-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.room-details .room-header-content {
  padding-left: 30px;
}

@media (max-width: 992px) {
  .room-details .room-header-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.room-details .room-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.room-details .room-rating .rating-score {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
}

.room-details .room-rating .stars {
  color: #ffc107;
  font-size: 18px;
}

.room-details .room-rating .stars i {
  margin-right: 2px;
}

.room-details .room-rating .reviews-count {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.room-details .room-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .room-details .room-title {
    font-size: 2rem;
  }
}

.room-details .room-tagline {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.room-details .room-capacity {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.room-details .room-capacity .capacity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.room-details .room-capacity .capacity-item i {
  color: var(--accent-color);
  font-size: 16px;
}

.room-details .room-price {
  margin-bottom: 25px;
}

.room-details .room-price .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
}

.room-details .room-price .price-period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-left: 8px;
}

.room-details .btn-book-now {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.room-details .btn-book-now:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.room-details .section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 600;
}

.room-details .room-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .room-details .room-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.room-details .room-gallery .gallery-main img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.room-details .room-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.room-details .room-gallery .gallery-thumbnails img {
  border-radius: 8px;
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform 0.3s;
}

.room-details .room-gallery .gallery-thumbnails img:hover {
  transform: scale(1.05);
}

.room-details .room-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.room-details .highlight-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
}

.room-details .highlight-box .highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.room-details .highlight-box .highlight-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.room-details .highlight-box h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .highlight-box .quote-author {
  margin-top: 15px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.room-details .room-amenities .amenity-category h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.room-details .room-amenities .amenity-category ul {
  list-style: none;
  padding: 0;
}

.room-details .room-amenities .amenity-category ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.room-details .room-amenities .amenity-category ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.room-details .room-tabs .nav-tabs {
  border: none;
  margin-bottom: 30px;
}

.room-details .room-tabs .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--default-color);
  padding: 15px 30px;
  font-weight: 500;
  border-radius: 8px;
  margin-right: 10px;
}

.room-details .room-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.room-details .room-tabs .nav-tabs .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.room-details .room-tabs .tab-content-wrapper {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.room-details .room-tabs .tab-content-wrapper h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.room-details .room-tabs .tab-content-wrapper ul {
  list-style: none;
  padding: 0;
}

.room-details .room-tabs .tab-content-wrapper ul li {
  padding: 5px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.room-details .room-addons .addon-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.room-details .room-addons .addon-card:hover {
  transform: translateY(-5px);
}

.room-details .room-addons .addon-card .addon-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;
}

.room-details .room-addons .addon-card .addon-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.room-details .room-addons .addon-card h5 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.room-details .room-addons .addon-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.room-details .room-addons .addon-card .addon-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
}

.login-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 30%));
  color: var(--contrast-color);
  padding: 8px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  border: none; 
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s ease;
}

.login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.login-btn:hover::before {
  left: 100%;
}

.entrar-btn {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 30%));
  color: var(--contrast-color);
  padding: 12px 0; 
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  display: block;       
  width: 100%;          
  text-align: center;  
  position: relative;
  overflow: hidden;
  cursor: pointer;      
}


.entrar-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.6s ease;
}

.entrar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.entrar-btn:hover::before {
  left: 100%;
}
.position-relative .toggle-password {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}
