/* ================== Centered Logo Navbar ================== */
.header--centered .navbar--centered {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header--centered .navbar-centered-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header--centered .nav-menu--left,
.header--centered .nav-menu--right {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header--centered .nav-menu--left {
    justify-content: flex-end;
}

.header--centered .nav-menu--right {
    justify-content: flex-start;
}

.header--centered .logo--centered {
    margin: 0 40px;
    flex-shrink: 0;
}

.header--centered .logo--centered img {
    max-height: 150px;
    width: auto;
    transition: max-height 0.3s ease;
}

.header--centered .nav-menu .nav-item {
    margin: 0 8px;
}

.header--centered .nav-menu .nav-link {
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 12px;
}

/* Mobile Header Bar - Menu Left, Logo Center, Language Right */
.mobile-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
}

.mobile-header-bar .navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    order: 1;
}

.mobile-header-bar .navbar-toggler i {
    font-size: 1.5rem;
    color: #ffffff;
}

.mobile-header-bar .mobile-logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-header-bar .mobile-logo img {
    max-height: 105px;
    width: auto;
    transition: filter 0.3s ease, max-height 0.3s ease;
}

.mobile-header-bar .mobile-logo img.logo-light {
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.header.fixed-header .mobile-header-bar .mobile-logo img.logo-light {
    filter: none;
}

.mobile-header-bar .mobile-lang {
    order: 3;
    position: relative;
}

.mobile-header-bar .mobile-lang .language-btn {
    padding: 8px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.mobile-header-bar .mobile-lang .flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.mobile-header-bar .mobile-lang .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    min-width: 150px;
    z-index: 99999 !important;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    margin-top: 8px;
}

/* .mobile-header-bar .mobile-lang .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #1a1a1a;
    gap: 10px;
} */

.mobile-header-bar .mobile-lang .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-header-bar .mobile-lang .dropdown-menu .flag {
    width: 20px;
    height: 20px;
    border: none;
}

.mobile-header-bar .mobile-lang-placeholder {
    width: 40px;
}

/* Offcanvas Header Bar - Close Left, Logo Center, Language Right */
.offcanvas-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.offcanvas-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #1a1a1a;
    padding: 8px;
    cursor: pointer;
    order: 1;
}

.offcanvas-close-btn:hover {
    color: #666;
}

.offcanvas-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
}

.offcanvas-logo img {
    max-height: 100px;
    width: auto;
}

.offcanvas-lang {
    order: 3;
}

.offcanvas-lang .language-btn {
    padding: 8px;
    display: flex;
    align-items: center;
}

.offcanvas-lang .flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.offcanvas-lang .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    min-width: 150px;
    z-index: 99999 !important;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    margin-top: 8px;
}

.offcanvas-lang-placeholder {
    width: 40px;
}

/* Mobile header transparent over banner */
@media (max-width: 991px) {
    .header--centered {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: transparent;
    }
}

/* Hide desktop logo on mobile */
@media (max-width: 991px) {
    .header--centered .logo--centered {
        display: none !important;
    }
}

/* Mobile responsive */
@media (max-width: 991px) {
    .header--centered .navbar-centered-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .header--centered .nav-menu--left,
    .header--centered .nav-menu--right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .header--centered .nav-menu .nav-item {
        margin: 0;
        width: 100%;
    }

    .header--centered .nav-menu .nav-link {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header--centered .mobile-menu-footer {
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Desktop logo positioning */
@media (min-width: 992px) {
    .header--centered .navbar-toggler {
        display: none;
    }

    .header--centered .navbar-brand.logo--centered {
        position: absolute;
        left: 43%;
        transform: translateX(-50%);
    }

    .header--centered .nav-menu--left {
        margin-right: auto;
        padding-right: 80px;
    }

    .header--centered .nav-menu--right {
        margin-left: auto;
        padding-left: 80px;
    }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

.select2-search--dropdown {
    padding: 10px 10px !important;
    border-color: #ced4da !important;
}

.selection {
    width: 100%;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #ced4da !important;
    padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
    padding: 12px 14px !important;
    border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
    text-align: center !important;
    padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 8px;
    border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.selec2-container:has(.select2-selection--single) {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    position: absolute;
    right: 10px;
    top: 3px;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: .3s;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
}

.select2-container--default .select2-selection--single {
    border-color: hsl(var(--border-color)) !important;
    border-width: 1px !important;
    border-radius: .375rem !important;
    padding: .375rem .75rem !important;
    height: 48px !important;
    background-color: hsl(var(--white)/.5) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
    transform: rotate(-180deg);
}

.select2-results__option:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f1f1f1 !important;
    color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: hsl(var(--base)) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
    border-radius: 4px;
}

.select2-dropdown .country-flag {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.select2-dropdown .gateway-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
    font-size: 12px;
    margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
    border-color: hsl(var(--base)) !important;
    border-radius: .375rem !important;
}

/* ================== Kempinski-Style Banner ================== */
.banner-fullscreen {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Hide banner overlay and body overlay on mobile */
@media (max-width: 767px) {

    .banner-overlay,
    .body-overlay {
        display: none !important;
    }
}

.banner-fullscreen .container {
    position: relative;
    z-index: 2;
}

.banner-content--minimal {
    text-align: center;
}

.banner-content__title--elegant {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-content__desc--subtle {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

/* Banner Book Button */
.banner-content__action {
    margin-top: 2rem;
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.banner-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.scroll-down-arrow i {
    line-height: 1;
}

.scroll-down-arrow:hover {
    color: #ffffff;
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Hide scroll button on mobile for better UX */
@media (max-width: 768px) {
    .banner-scroll-indicator {
        bottom: 20px;
    }

    .scroll-down-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Floating Booking Section on Banner */
.booking-section-floating {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 15px;
}

.booking-filter__wrapper {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.booking-filter__wrapper:hover,
.booking-filter__wrapper:focus-within {
    background: rgba(255, 255, 255, 0.95);
    border-color: transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.booking-filter__item {
    flex: 1;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color 0.4s ease;
}

.booking-filter__wrapper:hover .booking-filter__item,
.booking-filter__wrapper:focus-within .booking-filter__item {
    border-right-color: rgba(0, 0, 0, 0.08);
}

.booking-filter__item:last-child {
    border-right: none;
}

.booking-filter__item--dates {
    flex: 2;
}

.booking-filter__item--submit {
    flex: 0 0 auto;
    padding: 0;
    border-right: none;
}

.booking-filter__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    transition: color 0.4s ease;
}

.booking-filter__wrapper:hover .booking-filter__label,
.booking-filter__wrapper:focus-within .booking-filter__label {
    color: #888;
}

.booking-filter__input {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    padding: 0;
    width: 100%;
    outline: none;
    transition: color 0.4s ease;
}

.booking-filter__wrapper:hover .booking-filter__input,
.booking-filter__wrapper:focus-within .booking-filter__input {
    color: #1a1a1a;
}

.booking-filter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.4s ease;
}

.booking-filter__wrapper:hover .booking-filter__input::placeholder,
.booking-filter__wrapper:focus-within .booking-filter__input::placeholder {
    color: #999;
}

.booking-filter__input::-webkit-outer-spin-button,
.booking-filter__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-filter__input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.booking-filter__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--base-color, #1a1a1a);
    color: #fff;
    border: none;
    padding: 0 40px;
    height: 100%;
    min-height: 80px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.booking-filter__btn:hover {
    background: var(--base-color-dark, #333);
}

.booking-filter__btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.booking-filter__btn:hover i {
    transform: translateX(4px);
}

/* Date input with icon */
.booking-filter__date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-filter__date i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: color 0.4s ease;
}

.booking-filter__wrapper:hover .booking-filter__date i,
.booking-filter__wrapper:focus-within .booking-filter__date i {
    color: #888;
}

.booking-filter__date .booking-filter__input {
    cursor: pointer;
}

/* Flatpickr custom styles */
.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid #e0e0e0 !important;
    padding: 10px !important;
    font-family: inherit !important;
    z-index: 999999 !important;
    background: #fff !important;
}

.flatpickr-calendar.static {
    position: absolute !important;
    top: 100% !important;
    margin-top: 5px;
}

.flatpickr-calendar.static.open {
    display: block !important;
    z-index: 999999 !important;
}

.booking-section-floating .flatpickr-calendar {
    position: absolute !important;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
    display: none !important;
}

/* Flatpickr input wrapper */
.flatpickr-wrapper {
    display: block;
    width: 100%;
}

.flatpickr-input {
    cursor: pointer !important;
}

/* Alt input styling (the visible one) */
.flatpickr-input.flatpickr-mobile,
input.flatpickr-input[readonly]+input {
    cursor: pointer !important;
    background: transparent !important;
}

.flatpickr-months {
    padding: 10px 5px;
}

.flatpickr-months .flatpickr-month {
    height: 40px;
}

.flatpickr-current-month {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 600;
}

.flatpickr-weekdays {
    margin-top: 10px;
}

.flatpickr-weekday {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #888 !important;
    text-transform: uppercase;
}

.flatpickr-day {
    border-radius: 50% !important;
    font-weight: 500;
    color: #1a1a1a;
    height: 38px;
    line-height: 38px;
    margin: 2px;
}

.flatpickr-day:hover {
    background: #f5f5f5 !important;
    border-color: #f5f5f5 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--base-color, #1a1a1a) !important;
    border-color: var(--base-color, #1a1a1a) !important;
    color: #fff !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--base-color, #1a1a1a) !important;
    border-color: var(--base-color, #1a1a1a) !important;
}

.flatpickr-day.today {
    border-color: var(--base-color, #1a1a1a) !important;
}

.flatpickr-day.today:hover {
    background: var(--base-color, #1a1a1a) !important;
    color: #fff !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
    color: #ccc !important;
    background: transparent !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    padding: 8px !important;
    border-radius: 50% !important;
    transition: all 0.2s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: #f5f5f5;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #1a1a1a !important;
}

/* Ensure flatpickr shows above everything */
.flatpickr-calendar.open {
    z-index: 999999 !important;
}

/* Flatpickr inside booking section */
.booking-section-floating .flatpickr-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

/* The alt input that flatpickr creates (visible one) */
.booking-section-floating .flatpickr-alt-input,
.booking-section-floating input.form-control.input {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    padding: 0 !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
    transition: color 0.4s ease !important;
}

.booking-filter__wrapper:hover .flatpickr-alt-input,
.booking-filter__wrapper:focus-within .flatpickr-alt-input,
.booking-filter__wrapper:hover input.form-control.input,
.booking-filter__wrapper:focus-within input.form-control.input {
    color: #1a1a1a !important;
}

/* Hide the original input when alt input is used */
.booking-section-floating input.flatpickr-input[readonly] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Style the alt input properly */
.booking-filter__date input[readonly] {
    cursor: pointer !important;
    background: transparent !important;
}

/* Responsive: Tablet */
@media (max-width: 991px) {
    .booking-section-floating {
        bottom: 30px;
    }

    .booking-filter__wrapper {
        flex-wrap: wrap;
    }

    .booking-filter__item {
        flex: 1 1 calc(50% - 1px);
        padding: 14px 20px;
    }

    .booking-filter__item--submit {
        flex: 1 1 100%;
    }

    .booking-filter__btn {
        width: 100%;
        min-height: 56px;
        border-radius: 0 0 8px 8px;
    }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
    .booking-section-floating {
        position: relative;
        margin-top: -170px;
        padding: 0 15px;
        z-index: 100;
        bottom: 10px;
    }

    .booking-filter__wrapper {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .booking-filter__item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 14px 16px;
    }

    .booking-filter__wrapper:hover .booking-filter__item,
    .booking-filter__wrapper:focus-within .booking-filter__item {
        border-bottom-color: rgba(0, 0, 0, 0.08);
    }

    .booking-filter__item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .booking-filter__wrapper:hover .booking-filter__item:nth-child(odd),
    .booking-filter__wrapper:focus-within .booking-filter__item:nth-child(odd) {
        border-right-color: rgba(0, 0, 0, 0.08);
    }

    .booking-filter__item--submit {
        flex: 1 1 100%;
        border-bottom: none;
        border-right: none !important;
    }

    .booking-filter__btn {
        min-height: 52px;
        border-radius: 0 0 12px 12px;
    }

    .booking-filter__label {
        font-size: 0.65rem;
    }

    .booking-filter__input {
        font-size: 0.9rem;
    }

    .booking-filter__date i {
        font-size: 1rem;
    }

    /* Flatpickr mobile positioning */
    .flatpickr-calendar {
        width: 100% !important;
        max-width: 300px !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .booking-section-floating {
        margin-top: -170px;
    }

    .booking-filter__item {
        padding: 12px 14px;
    }

    .booking-filter__input {
        font-size: 0.85rem;
    }
}

/* Adjust banner height when booking is floating */
@media (min-width: 768px) {
    .banner-section:has(.booking-section-floating) {
        padding-bottom: 60px;
    }

    .banner-section:has(.booking-section-floating) .banner-content {
        margin-top: -40px;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .banner-content__title--elegant {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .banner-content__title--elegant {
        font-size: 2rem;
    }

    .banner-content__desc--subtle {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .banner-content__title--elegant {
        font-size: 1.75rem;
    }
}

.header-top {
    background-color: transparent !important;
}

.header {
    background-color: transparent !important;
     background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #ffffff;
}

.header:hover{
    background: rgb(255, 255, 255);
    color: #333333 !important;
}

/* Sticky Header */
.header.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    z-index: 9999;
}

.header.fixed-header .nav-menu .nav-item .nav-link {
    color: #333 !important;
}

.header.fixed-header .logo--centered img,
.header.fixed-header .mobile-logo img {
    max-height: 60px !important;
    transition: max-height 0.3s ease;
}

/* Logo light/dark switching */
.header .logo-dark {
    display: none;
}

.header.fixed-header .logo-light {
    display: none;
}

.header.fixed-header .logo-dark {
    display: block;
}

/* Mobile header dark styles on scroll */
.header.fixed-header .navbar-toggler,
.header.fixed-header .navbar-toggler i,
.header.fixed-header .mobile-header-bar .header-button,
.header.fixed-header .mobile-header-bar .header-button i {
    color: #333 !important;
}

.header.fixed-header .language-btn,
.header.fixed-header .language-btn .language-text {
    color: #333 !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .nav-menu .nav-item .nav-link {
        font-weight: 600;
        font-size: 1.2rem;
        padding: 16px 0;
        position: relative;
        cursor: pointer;
        color: white !important;
    }
}

@media (max-width: 991px) {
    .header--centered {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: transparent;
        overflow: visible;
        padding: 0px;
    }
}

/* ================== Banner Video Background ================== */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Desktop video - hide on mobile */
.banner-video--desktop {
    display: block;
}

/* Mobile video - hide on desktop, show on mobile */
.banner-video--mobile {
    display: none;
}

/* Mobile image - hide on desktop */
.banner-mobile-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Responsive: Show mobile media on smaller screens */
@media (max-width: 768px) {
    .banner-video--desktop {
        display: none;
    }

    .banner-video--mobile {
        display: block;
    }

    .banner-mobile-image {
        display: block;
    }

    /* Hide desktop background image on mobile when mobile image exists */
    .banner-section.has-mobile-image {
        background-image: none !important;
    }
}

.banner-section .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.banner-section .container {
    position: relative;
    z-index: 1;
}

.banner-section .banner-scroll-indicator {
    /* position: relative; */
    z-index: 1;
}

.nav-menu--right .nav-item {
    padding-right: 0px !important;
}
