/**
* Template Name: NiceHotel
* Template URL: https://bootstrapmade.com/nicehotel-bootstrap-hotel-website-template/
* Updated: Aug 20 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

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

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

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

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

.light-background {
    --background-color: #191b1e;
    --surface-color: #40484e;
}

.dark-background {
    --background-color: #0c0d0f;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #222427;
    --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #202224;
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

.header .topbar {
    background-color: var(--background-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

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

.header .logo img {
    max-height: 50px;
    margin-right: 8px;
    width: 182px;
}

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

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

.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

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

    .navmenu svg {
        height: 16px;
        padding-right: 10px;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 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,
    .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 .select-language ul {
        top: 0;
        left: -80%;
    }
}

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

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

    .navmenu svg {
        height: 16px;
        padding-right: 10px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-top {
    background-color: color-mix(in srgb, var(--background-color), white 5%);
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

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

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

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

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

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

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

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

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

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

.footer .copyright {
    padding: 30px 0;
}

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

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

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: var(--accent-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hotel Hero Section
--------------------------------------------------------------*/
.hotel-hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-hero .hero-content {
    position: relative;
    display: flex;
    align-items: center;
}

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

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

.hotel-hero .video-background .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    z-index: 2;
}

.hotel-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hotel-hero .hero-text {
    margin-bottom: 2rem;
}

.hotel-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hotel-hero .hero-text h1 {
        font-size: 2.5rem;
    }
}

.hotel-hero .hero-text .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hotel-hero .hero-text .hero-subtitle {
        font-size: 1.1rem;
    }
}

.hotel-hero .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hotel-hero .hero-actions .btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hotel-hero .hero-actions .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.hotel-hero .hero-actions .btn.btn-primary:hover {
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

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

.hotel-hero .hero-actions .btn.btn-outline:hover {
    transform: translateY(-2px);
}

.hotel-hero .booking-card {
    background-color: color-mix(in srgb, var(--surface-color), transparent 60%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hotel-hero .booking-card {
        padding: 1.5rem;
    }
}

.hotel-hero .booking-card .form-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

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

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

.hotel-hero .booking-card .btn-search {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1.9rem;
}

.hotel-hero .booking-card .btn-search: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);
}

@media (max-width: 768px) {
    .hotel-hero .booking-card .btn-search {
        margin-top: 1rem;
    }
}

.hotel-hero .hotel-highlights .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.hotel-hero .hotel-highlights .highlight-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.hotel-hero .hotel-highlights .highlight-item span {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.hotel-hero .hotel-highlights .highlight-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .hotel-hero .hero-content {
        min-height: 90vh;
    }
}

@media (max-width: 768px) {
    .hotel-hero .hero-content {
        min-height: 100vh;
    }

    .hotel-hero .booking-card {
        margin-top: 3rem;
    }

    .hotel-hero .booking-card .row.g-3>* {
        margin-bottom: 1rem;
    }
}

/*--------------------------------------------------------------
# About Home Section
--------------------------------------------------------------*/
.about-home .content-wrapper {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-home .content-wrapper .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.about-home .content-wrapper .section-badge i {
    font-size: 1rem;
}

.about-home .content-wrapper h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

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

.about-home .content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
}

.about-home .content-wrapper .highlight-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
    .about-home .content-wrapper .highlight-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.about-home .content-wrapper .highlight-stats .stat-item .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-home .content-wrapper .highlight-stats .stat-item .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.about-home .content-wrapper .amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.about-home .content-wrapper .amenities-list .amenity-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about-home .content-wrapper .amenities-list .amenity-tag i {
    font-size: 0.9rem;
}

.about-home .content-wrapper .cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-home .content-wrapper .cta-group .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about-home .content-wrapper .cta-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
    color: var(--contrast-color);
}

.about-home .content-wrapper .cta-group .btn-primary:hover i {
    transform: translateX(3px);
}

.about-home .content-wrapper .cta-group .btn-primary i {
    transition: transform 0.3s ease;
}

.about-home .content-wrapper .cta-group .btn-outline {
    padding: 16px 24px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-home .content-wrapper .cta-group .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .about-home .content-wrapper {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .about-home .content-wrapper .highlight-stats {
        justify-content: center;
    }

    .about-home .content-wrapper .amenities-list {
        justify-content: center;
    }

    .about-home .content-wrapper .cta-group {
        justify-content: center;
    }
}

.about-home .visual-section {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.about-home .visual-section .main-image-container {
    position: relative;
    flex: 1;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
}

.about-home .visual-section .main-image-container .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-home .visual-section .main-image-container .image-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 2rem;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge {
    background-color: var(--surface-color);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-text {
    display: flex;
    flex-direction: column;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-text .award-title {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
}

.about-home .visual-section .main-image-container .image-overlay-content .award-badge .award-text .award-year {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about-home .visual-section .secondary-images {
    display: flex;
    height: 120px;
    gap: 1px;
}

.about-home .visual-section .secondary-images .secondary-image {
    flex: 1;
    overflow: hidden;
}

.about-home .visual-section .secondary-images .secondary-image:first-child {
    border-radius: 0 0 0 24px;
}

.about-home .visual-section .secondary-images .secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-home .visual-section .secondary-images .secondary-image img:hover {
    transform: scale(1.05);
}

.about-home .visual-section .floating-experience {
    position: absolute;
    bottom: 140px;
    left: -2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 2;
}

.about-home .visual-section .floating-experience .experience-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.about-home .visual-section .floating-experience .experience-content p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.about-home .visual-section .floating-experience .experience-content .rating-stars {
    display: flex;
    gap: 0.2rem;
}

.about-home .visual-section .floating-experience .experience-content .rating-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .about-home .visual-section {
        min-height: 500px;
        margin-top: 2rem;
    }

    .about-home .visual-section .main-image-container {
        border-radius: 16px 16px 0 0;
    }

    .about-home .visual-section .secondary-images .secondary-image:first-child {
        border-radius: 0 0 0 16px;
    }

    .about-home .visual-section .secondary-images .secondary-image:last-child {
        border-radius: 0 0 16px 0;
    }

    .about-home .visual-section .floating-experience {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .about-home .visual-section .secondary-images {
        flex-direction: column;
        height: 160px;
    }

    .about-home .visual-section .secondary-images .secondary-image:first-child {
        border-radius: 0;
    }

    .about-home .visual-section .secondary-images .secondary-image:last-child {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 992px) {
    .about-home .row {
        flex-direction: column-reverse;
    }
}

/*--------------------------------------------------------------
# Rooms Showcase Section
--------------------------------------------------------------*/
.rooms-showcase .featured-suite-container {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.rooms-showcase .featured-suite-container:hover {
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.rooms-showcase .featured-suite-container .suite-header {
    padding: 32px 32px 0;
}

.rooms-showcase .featured-suite-container .suite-header .suite-category {
    margin-bottom: 16px;
}

.rooms-showcase .featured-suite-container .suite-header .suite-category .category-pill {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    color: var(--contrast-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rooms-showcase .featured-suite-container .suite-header .suite-title h3 {
    color: var(--heading-color);
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.rooms-showcase .featured-suite-container .suite-header .suite-title .suite-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.85rem;
}

.rooms-showcase .featured-suite-container .suite-header .suite-title .suite-location i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rooms-showcase .featured-suite-container .suite-image-wrapper {
    position: relative;
    margin: 24px 32px;
    border-radius: 12px;
    overflow: hidden;
}

.rooms-showcase .featured-suite-container .suite-image-wrapper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rooms-showcase .featured-suite-container .suite-image-wrapper:hover img {
    transform: scale(1.05);
}

.rooms-showcase .featured-suite-container .suite-image-wrapper .suite-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding: 40px 24px 24px;
}

.rooms-showcase .featured-suite-container .suite-image-wrapper .suite-overlay .suite-specs-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rooms-showcase .featured-suite-container .suite-image-wrapper .suite-overlay .suite-specs-row .spec-badge {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--contrast-color);
}

.rooms-showcase .featured-suite-container .suite-image-wrapper .suite-overlay .suite-specs-row .spec-badge i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.rooms-showcase .featured-suite-container .suite-info {
    padding: 0 32px 32px;
}

.rooms-showcase .featured-suite-container .suite-info .suite-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.rooms-showcase .featured-suite-container .suite-info .suite-highlights {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.rooms-showcase .featured-suite-container .suite-info .suite-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rooms-showcase .featured-suite-container .suite-info .suite-highlights .highlight-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.rooms-showcase .featured-suite-container .suite-info .suite-highlights .highlight-item span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.8rem;
    font-weight: 500;
}

.rooms-showcase .featured-suite-container .suite-info .suite-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rooms-showcase .featured-suite-container .suite-info .suite-booking .pricing-info {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.rooms-showcase .featured-suite-container .suite-info .suite-booking .pricing-info .rate {
    color: var(--accent-color);
    font-size: 2.2rem;
    font-weight: 200;
    letter-spacing: -1px;
}

.rooms-showcase .featured-suite-container .suite-info .suite-booking .pricing-info .period {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 0.85rem;
}

.rooms-showcase .featured-suite-container .suite-info .suite-booking .reserve-btn {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    color: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(54, 144, 231, 0.3);
}

.rooms-showcase .featured-suite-container .suite-info .suite-booking .reserve-btn:hover {
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(54, 144, 231, 0.4);
}

.rooms-showcase .room-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.rooms-showcase .room-selection-grid .selection-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.rooms-showcase .room-selection-grid .selection-item:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.rooms-showcase .room-selection-grid .selection-item .item-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.rooms-showcase .room-selection-grid .selection-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rooms-showcase .room-selection-grid .selection-item .item-image .price-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.rooms-showcase .room-selection-grid .selection-item .item-image:hover img {
    transform: scale(1.06);
}

.rooms-showcase .room-selection-grid .selection-item .item-details {
    padding: 20px;
}

.rooms-showcase .room-selection-grid .selection-item .item-details h5 {
    color: var(--heading-color);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
}

.rooms-showcase .room-selection-grid .selection-item .item-details .room-features {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.rooms-showcase .room-selection-grid .selection-item .item-details .room-features span {
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rooms-showcase .room-selection-grid .selection-item .item-details .room-features span i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.rooms-showcase .room-selection-grid .selection-item .item-details .view-btn {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.rooms-showcase .room-selection-grid .selection-item .item-details .view-btn:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.rooms-showcase .accommodation-overview .overview-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.rooms-showcase .accommodation-overview .overview-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.rooms-showcase .accommodation-overview .overview-card.special-offer {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    color: var(--contrast-color);
}

.rooms-showcase .accommodation-overview .overview-card.special-offer .offer-content {
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rooms-showcase .accommodation-overview .overview-card.special-offer .offer-content .offer-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.rooms-showcase .accommodation-overview .overview-card.special-offer .offer-content h6 {
    color: var(--contrast-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.rooms-showcase .accommodation-overview .overview-card.special-offer .offer-content p {
    color: var(--contrast-color);
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.rooms-showcase .accommodation-overview .overview-card.special-offer .offer-content .offer-link {
    color: var(--contrast-color);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rooms-showcase .accommodation-overview .overview-card.special-offer .offer-content .offer-link:hover {
    color: var(--contrast-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.rooms-showcase .accommodation-overview .overview-card .overview-image {
    height: 120px;
    overflow: hidden;
}

.rooms-showcase .accommodation-overview .overview-card .overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rooms-showcase .accommodation-overview .overview-card .overview-image:hover img {
    transform: scale(1.05);
}

.rooms-showcase .accommodation-overview .overview-card .overview-content {
    padding: 16px;
    text-align: center;
}

.rooms-showcase .accommodation-overview .overview-card .overview-content h6 {
    color: var(--heading-color);
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.rooms-showcase .accommodation-overview .overview-card .overview-content .starting-price {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.rooms-showcase .accommodation-overview .overview-card .overview-content .room-amenities {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.rooms-showcase .accommodation-overview .overview-card .overview-content .room-amenities i {
    color: var(--accent-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

.rooms-showcase .explore-rooms-btn {
    color: var(--heading-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 16px 32px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.rooms-showcase .explore-rooms-btn:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.rooms-showcase .explore-rooms-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.rooms-showcase .explore-rooms-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .rooms-showcase .room-selection-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rooms-showcase .room-selection-grid .selection-item .item-image {
        height: 120px;
    }
}

@media (max-width: 992px) {
    .rooms-showcase .featured-suite-container .suite-info .suite-highlights {
        gap: 16px;
    }

    .rooms-showcase .featured-suite-container .suite-info .suite-booking {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .rooms-showcase .featured-suite-container .suite-header {
        padding: 24px 24px 0;
    }

    .rooms-showcase .featured-suite-container .suite-header .suite-title h3 {
        font-size: 1.3rem;
    }

    .rooms-showcase .featured-suite-container .suite-image-wrapper {
        margin: 20px 24px;
    }

    .rooms-showcase .featured-suite-container .suite-image-wrapper img {
        height: 220px;
    }

    .rooms-showcase .featured-suite-container .suite-info {
        padding: 0 24px 24px;
    }

    .rooms-showcase .featured-suite-container .suite-info .suite-highlights {
        flex-direction: column;
        gap: 12px;
    }

    .rooms-showcase .room-selection-grid .selection-item .item-details {
        padding: 16px;
    }

    .rooms-showcase .room-selection-grid .selection-item .item-details .room-features {
        gap: 10px;
    }

    .rooms-showcase .accommodation-overview .overview-card .overview-image {
        height: 100px;
    }

    .rooms-showcase .accommodation-overview .overview-card .overview-content {
        padding: 12px;
    }
}

/*--------------------------------------------------------------
# Amenities Cards Section
--------------------------------------------------------------*/
.amenities-cards .amenity-card {
    background-color: var(--surface-color);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities-cards .amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.amenities-cards .amenity-icon {
    margin-bottom: 25px;
}

.amenities-cards .amenity-icon i {
    font-size: 48px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.amenities-cards .amenity-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

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

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

.amenities-cards .btn-amenities:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .amenities-cards .amenity-card {
        padding: 30px 25px;
    }

    .amenities-cards .amenity-icon i {
        font-size: 40px;
    }

    .amenities-cards .amenity-content h4 {
        font-size: 20px;
    }

    .amenities-cards .btn-amenities {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.testimonials .testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
    border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
    transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonials .testimonial-header .rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonials .testimonial-body {
    padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
    position: absolute;
}

.testimonials .testimonial-body p::before {
    top: -5px;
    left: -10px;
}

.testimonials .testimonial-body p::after {
    bottom: -20px;
    right: -5px;
}

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: block;
    margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
    transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600;
}

.testimonials .swiper-pagination {
    position: static;
    margin-top: 30px;
    text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

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

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 70px;
        height: 70px;
    }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 60px;
        height: 60px;
    }

    .testimonials .testimonial-item .testimonial-header .rating i {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 1rem;
    }

    .testimonials .testimonial-item .testimonial-footer span {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.3rem;
        bottom: 10px;
        right: 15px;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px;
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 55px;
        height: 55px;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.9rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.2rem;
    }

    .testimonials .swiper-navigation {
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# Offer Cards Section
--------------------------------------------------------------*/
.offer-cards .offer-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.offer-cards .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.offer-cards .offer-card.horizontal-card {
    display: flex;
    flex-direction: row;
    min-height: 280px;
}

@media (max-width: 768px) {
    .offer-cards .offer-card.horizontal-card {
        flex-direction: column;
        min-height: auto;
    }
}

.offer-cards .offer-card.premium {
    border: 2px solid var(--accent-color);
}

.offer-cards .offer-card.premium .premium-badge .discount {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
}

.offer-cards .offer-card.premium .btn-reserve {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.offer-cards .offer-card.premium .btn-reserve:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.offer-cards .offer-card .offer-image {
    position: relative;
    width: 45%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .offer-cards .offer-card .offer-image {
        width: 100%;
        height: 200px;
    }
}

.offer-cards .offer-card .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offer-cards .offer-card .offer-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.offer-cards .offer-card .offer-image .offer-badge .discount {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.offer-cards .offer-card .offer-image .premium-badge .discount {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
}

.offer-cards .offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-cards .offer-card .offer-content {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .offer-cards .offer-card .offer-content {
        width: 100%;
        padding: 25px;
    }
}

.offer-cards .offer-card .offer-content .content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .offer-cards .offer-card .offer-content .content-header {
        flex-direction: column;
        gap: 10px;
    }
}

.offer-cards .offer-card .offer-content .content-header h3 {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.offer-cards .offer-card .offer-content .content-header .price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

@media (max-width: 576px) {
    .offer-cards .offer-card .offer-content .content-header .price-section {
        align-items: flex-start;
    }
}

.offer-cards .offer-card .offer-content .content-header .price-section .offer-price {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.offer-cards .offer-card .offer-content .content-header .price-section .original-price {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 500;
}

.offer-cards .offer-card .offer-content p {
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-cards .offer-card .offer-content .offer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.offer-cards .offer-card .offer-content .offer-features .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.offer-cards .offer-card .offer-content .offer-features .feature-item i {
    color: var(--accent-color);
    font-size: 12px;
}

.offer-cards .offer-card .offer-content .offer-features .feature-item span {
    color: var(--heading-color);
}

.offer-cards .offer-card .offer-content .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    .offer-cards .offer-card .offer-content .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

.offer-cards .offer-card .offer-content .card-footer .validity-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    font-weight: 500;
}

.offer-cards .offer-card .offer-content .card-footer .validity-info i {
    color: var(--accent-color);
    font-size: 14px;
}

.offer-cards .offer-card .offer-content .card-footer .btn-reserve {
    background: color-mix(in srgb, var(--accent-color), transparent 5%);
    color: var(--contrast-color);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.offer-cards .offer-card .offer-content .card-footer .btn-reserve:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .offer-cards .offer-card .offer-content .card-footer .btn-reserve {
        text-align: center;
    }
}

.offer-cards .special-promotion {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.offer-cards .special-promotion .promotion-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.offer-cards .special-promotion .promotion-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-cards .special-promotion .promotion-background .promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.offer-cards .special-promotion .promotion-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 50px;
}

@media (max-width: 768px) {
    .offer-cards .special-promotion .promotion-content {
        padding: 30px 25px;
    }
}

.offer-cards .special-promotion .promotion-content .promo-text h2 {
    color: var(--contrast-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .offer-cards .special-promotion .promotion-content .promo-text h2 {
        font-size: 28px;
    }
}

.offer-cards .special-promotion .promotion-content .promo-text p {
    color: color-mix(in srgb, var(--contrast-color), transparent 10%);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .offer-cards .special-promotion .promotion-content .promo-text p {
        font-size: 16px;
    }
}

.offer-cards .special-promotion .promotion-content .promo-text .promo-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-cards .special-promotion .promotion-content .promo-text .promo-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--contrast-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.offer-cards .special-promotion .promotion-content .promo-text .promo-highlights li i {
    color: #ffd700;
    font-size: 14px;
}

.offer-cards .special-promotion .promotion-content .promo-action {
    text-align: center;
}

.offer-cards .special-promotion .promotion-content .promo-action .countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .offer-cards .special-promotion .promotion-content .promo-action .countdown-timer {
        gap: 10px;
        max-width: 280px;
    }
}

.offer-cards .special-promotion .promotion-content .promo-action .countdown-timer .timer-item {
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .offer-cards .special-promotion .promotion-content .promo-action .countdown-timer .timer-item {
        padding: 15px 8px;
    }
}

.offer-cards .special-promotion .promotion-content .promo-action .countdown-timer .timer-item span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--contrast-color);
    line-height: 1;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .offer-cards .special-promotion .promotion-content .promo-action .countdown-timer .timer-item span {
        font-size: 20px;
    }
}

.offer-cards .special-promotion .promotion-content .promo-action .countdown-timer .timer-item label {
    font-size: 11px;
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.offer-cards .special-promotion .promotion-content .promo-action .btn-flash-sale {
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #000;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-cards .special-promotion .promotion-content .promo-action .btn-flash-sale:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ffd700 100%);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

@media (max-width: 992px) {
    .offer-cards .special-promotion .promotion-content {
        text-align: center;
    }

    .offer-cards .special-promotion .promotion-content .promo-action {
        margin-top: 40px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    position: relative;
    overflow: hidden;
}

.call-to-action .container {
    position: relative;
    z-index: 1;
}

.call-to-action .content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

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

.call-to-action .content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.call-to-action .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--default-color);
}

.call-to-action .features-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.call-to-action .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.call-to-action .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.call-to-action .btn-secondary {
    background: transparent;
    color: var(--default-color);
    border: 2px solid var(--default-color);
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.call-to-action .btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.call-to-action .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.call-to-action .image-wrapper:hover img {
    transform: scale(1.05);
}

.call-to-action .image-wrapper .overlay-content {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
}

.call-to-action .image-wrapper .special-offer {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .image-wrapper .special-offer .label {
    display: block;
    color: var(--contrast-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.call-to-action .image-wrapper .special-offer .discount {
    display: block;
    color: var(--contrast-color);
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .call-to-action .image-wrapper {
        margin-top: 2rem;
    }

    .call-to-action .image-wrapper .overlay-content {
        top: 20px;
        right: 20px;
    }

    .call-to-action .image-wrapper .special-offer {
        padding: 12px 16px;
    }

    .call-to-action .image-wrapper .special-offer .label {
        font-size: 0.8rem;
    }

    .call-to-action .image-wrapper .special-offer .discount {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .call-to-action .content {
        margin-bottom: 2rem;
    }
}

/*--------------------------------------------------------------
# Events Cards Section
--------------------------------------------------------------*/
.events-cards .event-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 88%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.events-cards .event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 70%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.events-cards .event-card .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.events-cards .event-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.events-cards .event-card .card-image .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, color-mix(in srgb, var(--heading-color), transparent 60%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.events-cards .event-card .card-image .card-overlay .event-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.events-cards .event-card .card-image .card-overlay .event-badge i {
    font-size: 24px;
    color: var(--accent-color);
}

.events-cards .event-card .card-body {
    padding: 32px;
}

.events-cards .event-card .card-body .event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.events-cards .event-card .card-body .event-meta .event-category {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: var(--contrast-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events-cards .event-card .card-body .event-meta .event-capacity {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 13px;
    font-weight: 500;
}

.events-cards .event-card .card-body h3 {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.events-cards .event-card .card-body p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.events-cards .event-card .card-body .amenities-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.events-cards .event-card .card-body .amenities-list li {
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.events-cards .event-card .card-body .amenities-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
    font-weight: 600;
}

.events-cards .event-card .card-body .card-footer {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 24px;
}

.events-cards .event-card .card-body .card-footer .btn-explore {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.events-cards .event-card .card-body .card-footer .btn-explore span {
    transition: transform 0.3s ease;
}

.events-cards .event-card .card-body .card-footer .btn-explore i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.events-cards .event-card .card-body .card-footer .btn-explore:hover {
    color: var(--heading-color);
}

.events-cards .event-card .card-body .card-footer .btn-explore:hover span {
    transform: translateX(-3px);
}

.events-cards .event-card .card-body .card-footer .btn-explore:hover i {
    transform: translateX(8px) scale(1.1);
}

.events-cards .event-card:hover .card-image img {
    transform: scale(1.08);
}

.events-cards .event-card:hover .card-image .card-overlay {
    opacity: 1;
}

.events-cards .event-card:hover .card-image .card-overlay .event-badge {
    transform: translateY(0);
}

.events-cards .event-card:hover .card-body h3 {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .events-cards .event-card .card-image {
        height: 220px;
    }

    .events-cards .event-card .card-image .card-overlay .event-badge {
        width: 50px;
        height: 50px;
        top: 18px;
        left: 18px;
    }

    .events-cards .event-card .card-image .card-overlay .event-badge i {
        font-size: 20px;
    }

    .events-cards .event-card .card-body {
        padding: 24px;
    }

    .events-cards .event-card .card-body .event-meta {
        margin-bottom: 14px;
    }

    .events-cards .event-card .card-body .event-meta .event-category {
        font-size: 11px;
        padding: 4px 12px;
    }

    .events-cards .event-card .card-body .event-meta .event-capacity {
        font-size: 12px;
    }

    .events-cards .event-card .card-body h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .events-cards .event-card .card-body p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .events-cards .event-card .card-body .amenities-list {
        margin-bottom: 24px;
    }

    .events-cards .event-card .card-body .amenities-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .events-cards .event-card .card-body .amenities-list li i {
        font-size: 14px;
        margin-right: 10px;
    }

    .events-cards .event-card .card-body .card-footer {
        padding-top: 20px;
    }

    .events-cards .event-card .card-body .card-footer .btn-explore {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .events-cards .row>div:nth-child(n+3) {
        margin-top: 2rem;
    }
}

/*--------------------------------------------------------------
# Location Cards Section
--------------------------------------------------------------*/
.location-cards .location-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.location-cards .location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 82%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.location-cards .location-card:hover .location-visual img {
    transform: scale(1.1);
}

.location-cards .location-card:hover .distance-indicator {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.location-cards .location-card:hover .distance-indicator i {
    color: var(--contrast-color);
}

.location-cards .location-card .location-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-cards .location-card .location-visual {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.location-cards .location-card .location-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-cards .location-card .location-visual .distance-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    backdrop-filter: blur(12px);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.location-cards .location-card .location-visual .distance-indicator i {
    font-size: 14px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.location-cards .location-card .location-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-cards .location-card .location-details h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.location-cards .location-card .location-details p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.location-cards .location-card .location-details .location-highlights {
    display: flex;
    gap: 16px;
}

.location-cards .location-card .location-details .location-highlights span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.location-cards .location-card .location-details .location-highlights span i {
    color: var(--accent-color);
    font-size: 12px;
}

.location-cards .location-summary {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
    border-radius: 24px;
    padding: 35px 40px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    margin-top: 40px;
}

.location-cards .location-summary .summary-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.location-cards .location-summary .summary-content .summary-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-cards .location-summary .summary-content .summary-icon i {
    font-size: 28px;
    color: var(--contrast-color);
}

.location-cards .location-summary .summary-content .summary-text {
    flex: 1;
}

.location-cards .location-summary .summary-content .summary-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.location-cards .location-summary .summary-content .summary-text p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin: 0;
}

.location-cards .location-summary .summary-content .summary-action {
    flex-shrink: 0;
}

.location-cards .location-summary .summary-content .summary-action .explore-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.location-cards .location-summary .summary-content .summary-action .explore-btn:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
    transform: translateY(-2px);
}

.location-cards .location-summary .summary-content .summary-action .explore-btn:hover i {
    transform: translate(2px, -2px);
}

.location-cards .location-summary .summary-content .summary-action .explore-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .location-cards .location-summary .summary-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .location-cards .location-summary .summary-content .summary-action {
        width: 100%;
    }

    .location-cards .location-summary .summary-content .summary-action .explore-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .location-cards .location-card .location-visual img {
        height: 160px;
    }

    .location-cards .location-card .location-visual .distance-indicator {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .location-cards .location-card .location-details {
        padding: 20px;
    }

    .location-cards .location-card .location-details h5 {
        font-size: 16px;
    }

    .location-cards .location-card .location-details .location-highlights {
        flex-direction: column;
        gap: 8px;
    }

    .location-cards .location-summary {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .location-cards .location-summary .summary-content .summary-icon {
        width: 60px;
        height: 60px;
    }

    .location-cards .location-summary .summary-content .summary-icon i {
        font-size: 24px;
    }

    .location-cards .location-summary .summary-content .summary-text h4 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Gallery Showcase Section
--------------------------------------------------------------*/
.gallery-showcase .featured-gallery {
    margin-bottom: 2rem;
}

.gallery-showcase .featured-gallery .main-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-showcase .featured-gallery .main-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .featured-gallery .main-gallery-item:hover .gallery-lightbox {
    opacity: 1;
}

.gallery-showcase .featured-gallery .main-gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-showcase .featured-gallery .main-gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-showcase .featured-gallery .main-gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .gallery-showcase .featured-gallery .main-gallery-item img {
        height: 300px;
    }
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox .lightbox-icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-lightbox:hover .lightbox-icon i {
    color: var(--contrast-color);
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--contrast-color);
    padding: 30px 25px 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-info h4 {
    color: var(--contrast-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-showcase .featured-gallery .main-gallery-item .gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.gallery-showcase .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

@media (max-width: 768px) {
    .gallery-showcase .gallery-grid {
        height: 300px;
        gap: 10px;
    }
}

.gallery-showcase .gallery-grid .gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-showcase .gallery-grid .gallery-grid-item:hover {
    transform: scale(1.02);
}

.gallery-showcase .gallery-grid .gallery-grid-item:hover .grid-overlay {
    opacity: 1;
}

.gallery-showcase .gallery-grid .gallery-grid-item:hover img {
    transform: scale(1.05);
}

.gallery-showcase .gallery-grid .gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-showcase .gallery-grid .gallery-grid-item .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-grid .gallery-grid-item .grid-overlay i {
    color: var(--contrast-color);
    font-size: 2rem;
}

.gallery-showcase .gallery-thumbnails {
    margin: 3rem 0;
}

.gallery-showcase .gallery-thumbnails .thumbnail-gallery .swiper-wrapper {
    height: auto !important;
}

.gallery-showcase .gallery-thumbnails .thumbnail-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-showcase .gallery-thumbnails .thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.gallery-showcase .gallery-thumbnails .thumbnail-item:hover::after {
    opacity: 0.7;
}

.gallery-showcase .gallery-thumbnails .thumbnail-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-thumbnails .thumbnail-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .gallery-showcase .gallery-thumbnails .thumbnail-item img {
        height: 60px;
    }
}

.gallery-showcase .gallery-thumbnails .thumbnail-item .thumbnail-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.gallery-showcase .gallery-actions {
    margin-top: 2rem;
}

.gallery-showcase .gallery-actions .action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .gallery-showcase .gallery-actions .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.gallery-showcase .gallery-actions .btn-primary-gallery,
.gallery-showcase .gallery-actions .btn-secondary-gallery {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid;
}

.gallery-showcase .gallery-actions .btn-primary-gallery i,
.gallery-showcase .gallery-actions .btn-secondary-gallery i {
    font-size: 1.1rem;
}

.gallery-showcase .gallery-actions .btn-primary-gallery:hover,
.gallery-showcase .gallery-actions .btn-secondary-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {

    .gallery-showcase .gallery-actions .btn-primary-gallery,
    .gallery-showcase .gallery-actions .btn-secondary-gallery {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.gallery-showcase .gallery-actions .btn-primary-gallery {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.gallery-showcase .gallery-actions .btn-primary-gallery:hover {
    background: color-mix(in srgb, var(--accent-color), #000000 15%);
    border-color: color-mix(in srgb, var(--accent-color), #000000 15%);
    color: var(--contrast-color);
}

.gallery-showcase .gallery-actions .btn-secondary-gallery {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.gallery-showcase .gallery-actions .btn-secondary-gallery:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

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

.about .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}

.about .image-stack {
    position: relative;
    height: 500px;
}

@media (max-width: 768px) {
    .about .image-stack {
        height: 350px;
        margin-top: 2rem;
    }
}

.about .image-stack .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about .image-stack .overlay-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 5px solid var(--surface-color);
}

.about .stats-wrapper {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about .stats-wrapper .stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about .stats-wrapper .stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.about .stats-wrapper .stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--default-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about .stats-wrapper .stat-item:last-child {
    margin-bottom: 0;
}

.about .btn-wrapper {
    margin-top: 2rem;
}

.about .btn-wrapper .btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.about .btn-wrapper .btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about .features-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .features-section .feature-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.about .features-section .feature-item:hover {
    transform: translateY(-10px);
}

.about .features-section .feature-item:hover .icon i {
    transform: scale(1.1);
}

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

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

.about .features-section .feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about .features-section .feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--default-color);
}

.about .awards-section {
    margin-top: 4rem;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.about .awards-section .awards-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about .awards-section .awards-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about .awards-section .awards-header h3 {
        font-size: 1.8rem;
    }
}

.about .awards-section .awards-header p {
    font-size: 1.1rem;
    color: var(--default-color);
    max-width: 500px;
    margin: 0 auto;
}

.about .awards-section .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .about .awards-section .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.about .awards-section .award-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .awards-section .award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.about .awards-section .award-item .award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.about .awards-section .award-item .award-icon i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.about .awards-section .award-item .award-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.about .awards-section .award-item .award-content p {
    font-size: 0.9rem;
    color: var(--default-color);
    margin: 0;
}

@media (max-width: 992px) {

    .about .image-stack .main-image,
    .about .image-stack .overlay-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 1rem;
    }

    .about .image-stack .overlay-image {
        height: 250px;
    }
}

/*--------------------------------------------------------------
# Rooms 2 Section
--------------------------------------------------------------*/
.rooms-2 .filter-sort-bar {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}

.rooms-2 .filter-sort-bar .filter-label,
.rooms-2 .filter-sort-bar .sort-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-right: 15px;
    font-size: 14px;
}

.rooms-2 .filter-sort-bar .filter-group {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .rooms-2 .filter-sort-bar .filter-group {
        margin-top: 10px;
    }
}

.rooms-2 .filter-sort-bar .filter-select,
.rooms-2 .filter-sort-bar .sort-select {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 5px;
    padding: 8px 12px;
    background-color: var(--background-color);
    color: var(--default-color);
    font-size: 14px;
    min-width: 140px;
}

.rooms-2 .filter-sort-bar .filter-select:focus,
.rooms-2 .filter-sort-bar .sort-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.rooms-2 .filter-sort-bar .sort-options {
    text-align: right;
}

@media (max-width: 992px) {
    .rooms-2 .filter-sort-bar .sort-options {
        text-align: left;
        margin-top: 15px;
    }
}

.rooms-2 .rooms-grid .room-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.rooms-2 .rooms-grid .room-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.rooms-2 .rooms-grid .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rooms-2 .rooms-grid .room-image:hover img {
    transform: scale(1.05);
}

.rooms-2 .rooms-grid .room-image .room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rooms-2 .rooms-grid .room-image .room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: color-mix(in srgb, var(--default-color), transparent 10%);
    color: var(--contrast-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.rooms-2 .rooms-grid .room-image .room-price span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.rooms-2 .rooms-grid .room-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px);
}

.rooms-2 .rooms-grid .room-content h4 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.rooms-2 .rooms-grid .room-content .room-description {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.rooms-2 .rooms-grid .room-content .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.rooms-2 .rooms-grid .room-content .room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.rooms-2 .rooms-grid .room-content .room-features span i {
    color: var(--accent-color);
}

.rooms-2 .rooms-grid .room-content .room-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .rooms-2 .rooms-grid .room-content .room-actions {
        flex-direction: column;
    }
}

.rooms-2 .rooms-grid .room-content .btn-view-details {
    flex: 1;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms-2 .rooms-grid .room-content .btn-view-details:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.rooms-2 .rooms-grid .room-content .btn-book-now {
    flex: 1;
    padding: 12px 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rooms-2 .rooms-grid .room-content .btn-book-now:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.rooms-2 .load-more-section {
    text-align: center;
    margin-top: 50px;
}

.rooms-2 .load-more-section .btn-load-more {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rooms-2 .load-more-section .btn-load-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.rooms-2 .load-more-section .showing-results {
    margin-top: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
}

@media (max-width: 768px) {
    .rooms-2 .filter-sort-bar {
        padding: 15px;
    }

    .rooms-2 .filter-sort-bar .filter-group {
        width: 100%;
        justify-content: flex-start;
    }

    .rooms-2 .filter-sort-bar .filter-select,
    .rooms-2 .filter-sort-bar .sort-select {
        min-width: 120px;
    }

    .rooms-2 .rooms-grid .room-card .room-content {
        padding: 20px;
    }

    .rooms-2 .rooms-grid .room-card .room-content h4 {
        font-size: 20px;
    }

    .rooms-2 .rooms-grid .room-card .room-content .room-features {
        gap: 10px;
    }
}

/*--------------------------------------------------------------
# Room Details Section
--------------------------------------------------------------*/
.room-details .room-gallery-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.room-details .room-gallery-hero .gallery-slider {
    height: 500px;
}

@media (max-width: 768px) {
    .room-details .room-gallery-hero .gallery-slider {
        height: 350px;
    }
}

.room-details .room-gallery-hero .gallery-slider .swiper-wrapper {
    height: auto !important;
}

.room-details .room-gallery-hero .gallery-slider .swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .room-details .room-gallery-hero .gallery-slider .swiper-slide img {
        height: 350px;
    }
}

.room-details .room-gallery-hero .gallery-slider .swiper-pagination {
    bottom: 20px;
}

.room-details .room-gallery-hero .gallery-slider .swiper-pagination .swiper-pagination-bullet {
    background: var(--contrast-color);
    opacity: 0.7;
}

.room-details .room-gallery-hero .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.room-details .room-gallery-hero .gallery-slider .swiper-button-next,
.room-details .room-gallery-hero .gallery-slider .swiper-button-prev {
    color: var(--contrast-color);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.room-details .room-gallery-hero .gallery-slider .swiper-button-next:after,
.room-details .room-gallery-hero .gallery-slider .swiper-button-prev:after {
    font-size: 18px;
}

.room-details .room-gallery-hero .gallery-slider .swiper-button-next:hover,
.room-details .room-gallery-hero .gallery-slider .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.room-details .room-gallery-hero .room-overlay-info {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.room-details .room-gallery-hero .room-overlay-info .room-category {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.room-details .room-gallery-hero .room-overlay-info .room-rating {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.room-details .room-gallery-hero .room-overlay-info .room-rating .rating-score {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 16px;
}

.room-details .room-gallery-hero .room-overlay-info .room-rating .rating-stars {
    color: #ffc107;
    font-size: 14px;
}

.room-details .room-gallery-hero .room-overlay-info .room-rating .rating-stars i {
    margin-right: 1px;
}

.room-details .room-main-info .room-name {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .room-details .room-main-info .room-name {
        font-size: 2.2rem;
    }
}

.room-details .room-main-info .room-subtitle {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 35px;
    line-height: 1.6;
}

.room-details .room-main-info .room-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.room-details .room-main-info .room-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.room-details .room-main-info .room-specs .spec-item .spec-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.room-details .room-main-info .room-specs .spec-item .spec-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.room-details .room-main-info .room-specs .spec-item .spec-content h6 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.room-details .room-main-info .room-specs .spec-item .spec-content span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.room-details .booking-widget {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.room-details .booking-widget .pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.room-details .booking-widget .pricing-header .current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.room-details .booking-widget .pricing-header .current-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

.room-details .booking-widget .pricing-header .current-price .period {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.room-details .booking-widget .pricing-header .original-price {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    text-decoration: line-through;
    margin-top: 5px;
}

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

.room-details .booking-widget .booking-form .form-control,
.room-details .booking-widget .booking-form .form-select {
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    margin-bottom: 20px;
}

.room-details .booking-widget .booking-form .form-control:focus,
.room-details .booking-widget .booking-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.room-details .booking-widget .booking-form .btn-book-primary {
    width: 100%;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.room-details .booking-widget .booking-form .btn-book-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.room-details .booking-widget .booking-form .booking-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    justify-content: center;
}

.room-details .booking-widget .booking-form .booking-note i {
    color: #28a745;
}

.room-details .room-features-section .feature-block {
    padding-right: 30px;
}

@media (max-width: 992px) {
    .room-details .room-features-section .feature-block {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.room-details .room-features-section .feature-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-weight: 600;
}

.room-details .room-features-section .feature-block p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 18px;
}

.room-details .room-features-section .amenities-grid h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--heading-color);
    font-weight: 600;
}

.room-details .room-features-section .amenities-grid .amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 576px) {
    .room-details .room-features-section .amenities-grid .amenities-list {
        grid-template-columns: 1fr;
    }
}

.room-details .room-features-section .amenities-grid .amenities-list .amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.room-details .room-features-section .amenities-grid .amenities-list .amenity-item i {
    color: var(--accent-color);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.room-details .room-features-section .amenities-grid .amenities-list .amenity-item span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.room-details .info-tabs-section .info-nav {
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 30px;
}

.room-details .info-tabs-section .info-nav .nav-link {
    background: none;
    border: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.room-details .info-tabs-section .info-nav .nav-link.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.room-details .info-tabs-section .info-nav .nav-link:hover {
    color: var(--accent-color);
}

.room-details .info-tabs-section .info-tab-content .tab-inner {
    padding: 25px 0;
}

.room-details .info-tabs-section .info-tab-content .tab-inner h5 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.room-details .info-tabs-section .info-tab-content .tab-inner .detail-list {
    list-style: none;
    padding: 0;
}

.room-details .info-tabs-section .info-tab-content .tab-inner .detail-list li {
    padding: 8px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.room-details .info-tabs-section .info-tab-content .tab-inner .detail-list li:last-child {
    border-bottom: none;
}

.room-details .info-tabs-section .info-tab-content .tab-inner p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.room-details .addon-services .services-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--heading-color);
    font-weight: 600;
}

.room-details .addon-services .service-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.room-details .addon-services .service-card:hover {
    transform: translateY(-8px);
}

.room-details .addon-services .service-card .service-header {
    margin-bottom: 20px;
}

.room-details .addon-services .service-card .service-header .service-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.room-details .addon-services .service-card .service-header .service-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.room-details .addon-services .service-card .service-header h5 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.room-details .addon-services .service-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-details .addon-services .service-card .service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.room-details .final-cta .cta-container {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
    border-radius: 20px;
    padding: 50px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
    .room-details .final-cta .cta-container {
        padding: 30px 20px;
    }
}

.room-details .final-cta .cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: 700;
}

.room-details .final-cta .cta-content p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
    line-height: 1.6;
}

.room-details .final-cta .cta-content .cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-details .final-cta .cta-content .cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-details .final-cta .cta-content .cta-features .feature-item i {
    color: #28a745;
    font-size: 16px;
}

.room-details .final-cta .cta-content .cta-features .feature-item span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.room-details .final-cta .cta-booking {
    text-align: center;
}

@media (max-width: 992px) {
    .room-details .final-cta .cta-booking {
        margin-top: 30px;
    }
}

.room-details .final-cta .cta-booking .price-summary {
    margin-bottom: 25px;
}

.room-details .final-cta .cta-booking .price-summary .total-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.room-details .final-cta .cta-booking .price-summary .total-price .label {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.room-details .final-cta .cta-booking .price-summary .total-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.room-details .final-cta .cta-booking .price-summary .total-price .unit {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.room-details .final-cta .cta-booking .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.room-details .final-cta .cta-booking .cta-buttons .btn-cta-secondary:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities .amenity-feature {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.amenities .amenity-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.amenities .amenity-feature .feature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.amenities .amenity-feature .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.amenities .amenity-feature .feature-image .feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(54, 144, 231, 0.8), rgba(45, 70, 94, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenities .amenity-feature .feature-image .feature-overlay .feature-icon {
    background: var(--contrast-color);
    color: var(--accent-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.amenities .amenity-feature .feature-image:hover img {
    transform: scale(1.05);
}

.amenities .amenity-feature .feature-image:hover .feature-overlay {
    opacity: 1;
}

.amenities .amenity-feature .feature-image:hover .feature-overlay .feature-icon {
    transform: scale(1);
}

.amenities .amenity-feature .feature-content {
    padding: 30px;
}

.amenities .amenity-feature .feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.amenities .amenity-feature .feature-content p {
    color: var(--default-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.amenities .amenity-feature .feature-content .feature-details {
    margin-bottom: 25px;
}

.amenities .amenity-feature .feature-content .feature-details .detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.amenities .amenity-feature .feature-content .feature-details .detail-item i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 16px;
}

.amenities .amenity-feature .feature-content .feature-details .detail-item span {
    color: var(--default-color);
    font-size: 14px;
}

.amenities .amenity-feature .feature-content .btn-feature {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.amenities .amenity-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities .amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.amenities .amenity-card:hover .card-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.amenities .amenity-card .card-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 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.amenities .amenity-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.amenities .amenity-card p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 14px;
}

.amenities .dining-section {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .amenities .dining-section {
        padding: 30px 20px;
    }
}

.amenities .dining-section .dining-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .amenities .dining-section .dining-content h3 {
        font-size: 28px;
    }
}

.amenities .dining-section .dining-content .lead {
    font-size: 18px;
    color: var(--default-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.amenities .dining-section .dining-content .dining-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.amenities .dining-section .dining-content .dining-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--default-color);
}

.amenities .dining-section .dining-content .dining-highlights li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
}

.amenities .dining-section .dining-content .dining-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.amenities .dining-section .dining-content .dining-actions .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.amenities .dining-section .dining-content .dining-actions .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.amenities .dining-section .dining-images {
    position: relative;
}

.amenities .dining-section .dining-images .main-image {
    border-radius: 15px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.amenities .dining-section .dining-images .image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid var(--surface-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .amenities .dining-section .dining-images .image-overlay {
        bottom: -15px;
        right: -15px;
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .amenities .dining-section .dining-images .image-overlay {
        display: none;
    }
}

.amenities .dining-section .dining-images .image-overlay .overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .amenities .amenity-feature .feature-content {
        padding: 25px 20px;
    }

    .amenities .amenity-feature .feature-content h3 {
        font-size: 20px;
    }

    .amenities .amenity-card {
        padding: 25px 20px;
    }

    .amenities .amenity-card h4 {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
.offers .premium-offer {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.offers .premium-offer:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.offers .premium-offer .offer-header {
    position: relative;
}

.offers .premium-offer .offer-header .offer-image-wrapper {
    position: relative;
    overflow: hidden;
}

.offers .premium-offer .offer-header .offer-image-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offers .premium-offer .offer-header .offer-image-wrapper:hover img {
    transform: scale(1.08);
}

.offers .premium-offer .offer-header .offer-image-wrapper .discount-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    color: var(--contrast-color);
    padding: 12px 16px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 70px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offers .premium-offer .offer-header .offer-image-wrapper .discount-tag .discount-percent {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.offers .premium-offer .offer-header .offer-image-wrapper .discount-tag .discount-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.offers .premium-offer .offer-details {
    padding: 25px;
}

.offers .premium-offer .offer-details .offer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.offers .premium-offer .offer-details .offer-meta .offer-type {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.offers .premium-offer .offer-details .offer-meta .offer-duration {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 13px;
    font-weight: 500;
}

.offers .premium-offer .offer-details h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.offers .premium-offer .offer-details p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.offers .premium-offer .offer-details .price-comparison {
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.offers .premium-offer .offer-details .price-comparison .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.offers .premium-offer .offer-details .price-comparison .price-row:last-child {
    margin-bottom: 0;
}

.offers .premium-offer .offer-details .price-comparison .price-row.highlighted .price-label {
    color: var(--accent-color);
    font-weight: 600;
}

.offers .premium-offer .offer-details .price-comparison .price-row.highlighted .special-cost {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 800;
}

.offers .premium-offer .offer-details .price-comparison .price-row .price-label {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.offers .premium-offer .offer-details .price-comparison .price-row .original-cost {
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
}

.offers .premium-offer .offer-details .offer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.offers .premium-offer .offer-details .offer-actions .btn-reserve {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    color: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.offers .premium-offer .offer-details .offer-actions .btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.offers .premium-offer .offer-details .offer-actions .offer-expiry {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 13px;
}

.offers .premium-offer .offer-details .offer-actions .offer-expiry i {
    margin-right: 6px;
    color: var(--accent-color);
    font-size: 14px;
}

.offers .quick-offers-section {
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    padding: 40px 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.offers .quick-offers-section .section-header {
    text-align: center;
    margin-bottom: 35px;
}

.offers .quick-offers-section .section-header h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offers .quick-offers-section .section-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 16px;
    margin: 0;
}

.offers .quick-offers-section .offers-carousel .swiper-wrapper {
    height: auto !important;
}

.offers .quick-offers-section .offers-carousel .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.offers .quick-offers-section .offers-carousel .swiper-pagination .swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.offers .quick-offers-section .offers-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.offers .quick-offers-section .quick-offer-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.offers .quick-offers-section .quick-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.offers .quick-offers-section .quick-offer-card .card-image {
    position: relative;
    overflow: hidden;
}

.offers .quick-offers-section .quick-offer-card .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offers .quick-offers-section .quick-offer-card .card-image:hover img {
    transform: scale(1.05);
}

.offers .quick-offers-section .quick-offer-card .card-image .offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--heading-color);
    color: var(--contrast-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offers .quick-offers-section .quick-offer-card .card-content {
    padding: 20px;
}

.offers .quick-offers-section .quick-offer-card .card-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.offers .quick-offers-section .quick-offer-card .card-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.offers .quick-offers-section .quick-offer-card .card-content .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.offers .quick-offers-section .quick-offer-card .card-content .price-info .old-price {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    text-decoration: line-through;
    font-size: 14px;
}

.offers .quick-offers-section .quick-offer-card .card-content .price-info .new-price {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
}

.offers .quick-offers-section .quick-offer-card .card-content .quick-btn {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    font-size: 14px;
}

.offers .quick-offers-section .quick-offer-card .card-content .quick-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .offers .premium-offer .offer-details .offer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .offers .premium-offer .offer-details .offer-actions .offer-expiry {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .offers .quick-offers-section {
        padding: 30px 20px;
    }

    .offers .quick-offers-section .section-header h4 {
        font-size: 24px;
    }

    .offers .quick-offers-section .section-header p {
        font-size: 14px;
    }

    .offers .premium-offer .offer-details {
        padding: 20px;
    }

    .offers .premium-offer .offer-details .offer-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .offers .premium-offer .offer-details h3 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Restaurant Section
--------------------------------------------------------------*/
.restaurant {
    background-color: var(--surface-color);
}

.restaurant .about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.restaurant .about-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
}

.restaurant .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.restaurant .features-list {
    margin-top: 2rem;
}

.restaurant .features-list .feature-item {
    margin-bottom: 2rem;
}

.restaurant .features-list .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.restaurant .features-list .feature-item .feature-icon i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.restaurant .features-list .feature-item .feature-content h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.restaurant .features-list .feature-item .feature-content p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.restaurant .about-images {
    position: relative;
    height: 500px;
}

.restaurant .about-images .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
    z-index: 2;
}

.restaurant .about-images .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.restaurant .about-images .secondary-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 3;
}

.restaurant .about-images .secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--surface-color);
}

@media (max-width: 768px) {
    .restaurant .about-images {
        height: 400px;
    }

    .restaurant .about-images .main-image {
        width: 100%;
        height: 60%;
    }

    .restaurant .about-images .secondary-image {
        width: 70%;
        height: 50%;
    }
}

.restaurant .chef-quote {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.restaurant .chef-quote .chef-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.restaurant .chef-quote .quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 400;
}

.restaurant .chef-quote .quote-author {
    font-style: normal;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 768px) {
    .restaurant .chef-quote {
        padding: 2rem;
    }

    .restaurant .chef-quote .chef-avatar {
        margin-bottom: 1rem;
    }

    .restaurant .chef-quote .quote-text {
        font-size: 1.1rem;
    }
}

.restaurant .highlight-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.restaurant .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.restaurant .highlight-card .highlight-icon {
    width: 70px;
    height: 70px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.restaurant .highlight-card .highlight-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.restaurant .highlight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.restaurant .highlight-card p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    margin-bottom: 0;
}

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

    .restaurant .about-content h3 {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.menu .menu-filters li {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 10px;
    cursor: pointer;
    display: inline-block;
    padding: 8px 12px 10px 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: all ease-in-out 0.3s;
    font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
    color: var(--accent-color);
}

.menu .menu-filters li:last-child {
    margin-right: 0;
}

.menu .menu-item {
    margin-top: 50px;
    position: relative;
}

.menu .menu-img {
    width: 80px;
    border-radius: 50%;
    float: left;
    border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
    margin-left: 95px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.menu .menu-content::after {
    content: "......................................................................""....................................................................""....................................................................";
    position: absolute;
    left: 20px;
    right: 0;
    top: -4px;
    z-index: 1;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
    color: var(--heading-color);
    background: var(--background-color);
    padding-right: 10px;
    position: relative;
    z-index: 3;
    font-weight: 700;
    transition: 0.3s;
}

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

.menu .menu-content span {
    background: var(--background-color);
    color: var(--accent-color);
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
}

.menu .menu-ingredients {
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    font-family: var(--nav-font);
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Booking Section
--------------------------------------------------------------*/
.booking {
    background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--surface-color) 70%);
}

.booking .booking-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 991px) {
    .booking .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.booking .booking-visual {
    position: relative;
}

.booking .booking-visual .image-stack {
    position: relative;
    height: 500px;
}

.booking .booking-visual .image-stack .main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.booking .booking-visual .image-stack .secondary-image {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 50%;
    height: 60%;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--surface-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.booking .booking-visual .room-preview-card {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    min-width: 200px;
}

.booking .booking-visual .room-preview-card .price-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.booking .booking-visual .room-preview-card .price-badge .from {
    display: block;
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.25rem;
}

.booking .booking-visual .room-preview-card .price-badge .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.booking .booking-visual .room-preview-card .price-badge .period {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.booking .booking-visual .room-preview-card .rating {
    text-align: center;
}

.booking .booking-visual .room-preview-card .rating i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.booking .booking-visual .room-preview-card .rating .rating-text {
    display: block;
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.5rem;
}

.booking .booking-content .content-header {
    margin-bottom: 2rem;
}

.booking .booking-content .content-header .section-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
    color: var(--contrast-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.booking .booking-content .content-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

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

.booking .booking-content .content-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.booking .booking-content .quick-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .booking .booking-content .quick-features {
        grid-template-columns: 1fr;
    }
}

.booking .booking-content .quick-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.booking .booking-content .quick-features .feature-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateY(-2px);
}

.booking .booking-content .quick-features .feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    min-width: 20px;
}

.booking .booking-content .quick-features .feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--default-color);
}

.booking .modern-booking-form {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.booking .modern-booking-form .form-section {
    margin-bottom: 1.5rem;
}

.booking .modern-booking-form .date-row {
    display: flex;
    align-items: end;
    gap: 1rem;
}

@media (max-width: 576px) {
    .booking .modern-booking-form .date-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.booking .modern-booking-form .date-row .date-field {
    flex: 1;
}

.booking .modern-booking-form .date-row .date-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.booking .modern-booking-form .date-row .date-separator {
    padding-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .booking .modern-booking-form .date-row .date-separator {
        display: none;
    }
}

.booking .modern-booking-form .date-row .date-separator i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.booking .modern-booking-form .guest-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .booking .modern-booking-form .guest-row {
        grid-template-columns: 1fr;
    }
}

.booking .modern-booking-form .guest-row .guest-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.booking .modern-booking-form .contact-fields {
    display: grid;
    gap: 1rem;
}

.booking .modern-booking-form input[type=date],
.booking .modern-booking-form input[type=text],
.booking .modern-booking-form input[type=email],
.booking .modern-booking-form input[type=tel],
.booking .modern-booking-form select {
    color: var(--default-color);
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

.booking .modern-booking-form .room-preference {
    margin-bottom: 1rem;
}

.booking .modern-booking-form .submit-booking-btn {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
    border: none;
    border-radius: 14px;
    padding: 1.2rem 2rem;
    color: var(--contrast-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.booking .modern-booking-form .submit-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.booking .modern-booking-form .submit-booking-btn:hover .btn-effect {
    transform: translateX(100%);
}

.booking .modern-booking-form .submit-booking-btn:active {
    transform: translateY(-1px);
}

.booking .modern-booking-form .submit-booking-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.booking .modern-booking-form .submit-booking-btn .btn-content i {
    font-size: 1.2rem;
}

.booking .modern-booking-form .submit-booking-btn .btn-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: transform 0.6s ease;
}

.booking .booking-assurance {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
    .booking .booking-assurance {
        flex-direction: column;
        gap: 1rem;
    }
}

.booking .booking-assurance .assurance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking .booking-assurance .assurance-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.booking .booking-assurance .assurance-item span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

@media (max-width: 991px) {
    .booking .booking-visual .image-stack {
        height: 400px;
    }

    .booking .booking-visual .room-preview-card {
        position: static;
        margin-top: 2rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .booking .modern-booking-form {
        padding: 1.5rem;
    }

    .booking .booking-visual .image-stack {
        height: 300px;
    }

    .booking .booking-visual .image-stack .main-image {
        width: 100%;
    }

    .booking .booking-visual .image-stack .secondary-image {
        width: 60%;
        height: 50%;
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .gallery .section-heading {
        font-size: 2rem;
    }
}

.gallery .section-subheading {
    font-size: 1.125rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .gallery .section-subheading {
        font-size: 1rem;
    }
}

.gallery .gallery-filters {
    margin-bottom: 3rem;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .gallery-filters li {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    padding: 10px 20px;
    margin: 0 5px 10px 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery .isotope-container .gallery-item {
    margin-bottom: 30px;
}

.gallery .isotope-container .gallery-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover {
    transform: translateY(-5px);
}

.gallery .isotope-container .gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover img {
    transform: scale(1.05);
}

.gallery .isotope-container .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery .isotope-container .gallery-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery .isotope-container .gallery-content {
    color: white;
    text-align: left;
    width: 100%;
}

.gallery .isotope-container .gallery-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.gallery .isotope-container .gallery-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery .isotope-container .gallery-content .gallery-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery .isotope-container .gallery-content .gallery-link:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery .isotope-container .gallery-content {
        padding: 15px;
    }

    .gallery .isotope-container .gallery-content h4 {
        font-size: 1.125rem;
    }

    .gallery .isotope-container .gallery-content p {
        font-size: 0.875rem;
    }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-subtitle {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .events .section-subtitle {
        font-size: 2rem;
    }
}

.events .section-description {
    font-size: 1.1rem;
    color: var(--default-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.events .event-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.events .event-features .feature-item i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.events .event-features .feature-item span {
    color: var(--default-color);
    font-size: 1rem;
}

.events .hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.events .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.events .venues-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.events .venue-card {
    background: var(--surface-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events .venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.events .venue-card .venue-image {
    position: relative;
}

.events .venue-card .venue-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.events .venue-card .venue-details {
    padding: 1.5rem;
}

.events .venue-card .venue-details h4 {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 0.75rem;
}

.events .venue-card .venue-details p {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.events .venue-card .venue-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.events .venue-card .venue-specs .spec-item {
    display: flex;
    align-items: center;
}

.events .venue-card .venue-specs .spec-item i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.events .venue-card .venue-specs .spec-item span {
    color: var(--default-color);
    font-size: 0.9rem;
}

.events .venue-card .btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.events .venue-card .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.events .venue-card .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, black);
    border-color: color-mix(in srgb, var(--accent-color) 90%, black);
}

.events .packages-section .packages-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.events .packages-section .package-card {
    background: var(--surface-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.events .packages-section .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.events .packages-section .package-card .package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.events .packages-section .package-card .package-header h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.events .packages-section .package-card .package-header .package-subtitle {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.events .packages-section .package-card .package-content {
    flex: 1;
}

.events .packages-section .package-card .package-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events .packages-section .package-card .package-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.events .packages-section .package-card .package-content ul li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.events .packages-section .package-card .package-content ul li:last-child {
    border-bottom: none;
}

.events .packages-section .package-card .package-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.events .packages-section .package-card .package-footer .btn {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.events .packages-section .package-card .package-footer .btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.events .packages-section .package-card .package-footer .btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.events .testimonial-section {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
}

.events .testimonial-section .testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.events .testimonial-section .testimonial-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--default-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.events .testimonial-section .testimonial-content blockquote:before {
    content: "";
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: -30px;
}

.events .testimonial-section .testimonial-content .testimonial-auth strong {
    display: block;
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.events .testimonial-section .testimonial-content .testimonial-auth span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Hotel Location Section
--------------------------------------------------------------*/
.hotel-location .location-info h3 {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hotel-location .location-info .lead {
    font-size: 1.2rem;
    color: var(--default-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hotel-location .location-highlights .highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hotel-location .location-highlights .highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hotel-location .location-highlights .highlight-item .icon {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hotel-location .location-highlights .highlight-item .content h5 {
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-location .location-highlights .highlight-item .content p {
    color: var(--default-color);
    margin: 0;
    line-height: 1.5;
}

.hotel-location .attractions-grid h4 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.hotel-location .attractions-grid .attraction-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hotel-location .attractions-grid .attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hotel-location .attractions-grid .attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-location .attractions-grid .attraction-card .card-content {
    padding: 1.5rem;
}

.hotel-location .attractions-grid .attraction-card .card-content h6 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-location .attractions-grid .attraction-card .card-content .distance {
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.hotel-location .attractions-grid .attraction-card .card-content p {
    color: var(--default-color);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hotel-location .transportation-section {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--heading-color), transparent 95%) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.hotel-location .transportation-section h4 {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.hotel-location .transportation-section .transport-info .transport-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.hotel-location .transportation-section .transport-info .transport-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.hotel-location .transportation-section .transport-info .transport-item i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hotel-location .transportation-section .transport-info .transport-item h6 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hotel-location .transportation-section .transport-info .transport-item p {
    color: var(--default-color);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hotel-location .location-info h3 {
        font-size: 2rem;
    }

    .hotel-location .location-info .lead {
        font-size: 1.1rem;
    }

    .hotel-location .attractions-grid h4 {
        font-size: 1.75rem;
    }

    .hotel-location .attractions-grid .attraction-card img {
        height: 150px;
    }

    .hotel-location .transportation-section {
        padding: 2rem 1.5rem;
    }

    .hotel-location .transportation-section h4 {
        font-size: 1.75rem;
    }

    .hotel-location .transportation-section .transport-info .transport-item:hover {
        transform: none;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact .contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

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

.contact .contact-info-item .info-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

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

.contact .contact-form-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-form-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact .contact-form-card .form-control {
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 15px 20px;
    height: calc(3.5rem + 2px);
    background-color: var(--surface-color);
    color: var(--default-color);
    margin-bottom: 20px;
}

.contact .contact-form-card .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-card .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-card textarea.form-control {
    min-height: 150px;
    margin-bottom: 25px;
}

.contact .btn-submit {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

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

.contact .map-container {
    position: relative;
    margin-top: 50px;
    padding: 0;
}

.contact .map-container .map-overlay {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--background-color), transparent);
    z-index: 10;
}

.contact .map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form-card {
        padding: 30px;
    }

    .contact .map-container {
        margin-top: 40px;
    }

    .contact .map-container .map-overlay {
        top: -25px;
        height: 50px;
    }

    .contact .map-container iframe {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-wrapper {
        gap: 25px;
    }

    .contact .contact-info-item {
        gap: 15px;
    }

    .contact .contact-info-item .info-icon {
        width: 50px;
        height: 50px;
    }

    .contact .contact-form-card {
        padding: 25px;
    }

    .contact .contact-form-card h2 {
        font-size: 24px;
    }

    .contact .map-container {
        margin-top: 30px;
    }

    .contact .map-container .map-overlay {
        top: -20px;
        height: 40px;
    }

    .contact .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact .contact-form-card {
        padding: 20px;
    }

    .contact .map-container {
        margin-top: 25px;
    }

    .contact .map-container .map-overlay {
        top: -15px;
        height: 30px;
    }

    .contact .map-container iframe {
        height: 350px;
        border-radius: 8px;
    }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
    margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
    display: inline-block;
    padding: 8px 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.terms-of-service .tos-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
    color: #dc3545;
    font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
    content: "â€¢";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-contact {
    margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }

    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

.privacy .privacy-header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 40px;
}

.privacy .privacy-header .header-content .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;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/* --------------------------------------------------------------
     Booking preview tweaks (custom)
     -------------------------------------------------------------- */
.room-preview-card {
    background: rgba(34, 36, 38, 0.8);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    text-align: left;
    border: 1px solid rgba(197, 157, 95, 0.2);
}
.room-preview-card .room-title {
    margin: 0 0 6px 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0b2545;
}
.room-preview-card .price-badge {
    display: inline-block;
    background: rgba(197, 157, 95, 0.15);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #c59d5f;
    margin-bottom: 8px;
}
.room-preview-card .price-badge .amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: #c59d5f;
    margin: 0 6px;
}
.room-preview-card .room-specs {
    font-size: 0.9rem;
    color: #55687a;
}
.room-preview-card .room-specs .spec-value {
    color: #1f2d3d;
    font-weight: 600;
}
.room-preview-card #room-description {
    min-height: 36px;
    color: #6c757d;
    margin-bottom: 8px;
}
.booking-visual .main-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 220px;
}

@media (max-width: 991px) {
    .booking-wrapper { display: block; }
    .booking-visual { margin-bottom: 18px; }
    .room-preview-card { padding: 14px; }
}

/* small utility for the booking assurance spacing */
.booking-assurance .assurance-item { margin-bottom: 8px; }

/* Booking preview improvements */
.room-preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: rgba(34, 36, 38, 0.8);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 157, 95, 0.2);
}

.preview-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-left .image-stack {
    display: flex;
    gap: 8px;
}

.preview-left .main-image {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    max-height: 280px;
}

.room-preview-card {
    display: none;
}

.preview-right #room-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.preview-right #room-type {
    font-size: 0.95rem;
    color: #c59d5f;
    margin: 0;
    text-transform: capitalize;
}
.preview-right .room-specs {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
}
.preview-right .room-specs .spec {
    display: flex;
    flex-direction: column;
}
.preview-right .room-specs .spec strong {
    font-size: 0.85rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.preview-right .room-specs .spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}
.preview-right .room-extra {
    margin: 8px 0;
    font-size: 0.9rem;
}
.preview-right #room-bed,
.preview-right #room-view {
    color: #d4d9de;
}
.preview-right #room-description {
    font-size: 0.9rem;
    color: #c9cdd2;
    line-height: 1.4;
}
.preview-right #room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.preview-right #room-amenities .badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: #2d3436;
    color: #c59d5f;
    border: 1px solid #c59d5f;
    text-transform: capitalize;
}

.preview-left .price-badge {
    display: inline-block;
    background: rgba(197, 157, 95, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #c59d5f;
}
.preview-left .price-badge .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c59d5f;
}
.preview-left .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffb700;
}
.preview-left .rating .rating-text {
    color: #d4d9de;
    font-size: 0.9rem;
}

.preview-left #room-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.preview-left #room-thumbs img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #444;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}
.preview-left #room-thumbs img:hover {
    border-color: #c59d5f;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .room-preview-wrapper {
        grid-template-columns: 1fr;
    }
}

/* end booking preview tweaks */

/* end booking preview tweaks */