:root {
    --primary: #000B16;
    --secondary: #D4AF37;
    --gradient: linear-gradient(135deg, #061017 0%, #071826 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient);
    color: #f9f9f9;
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Glass Morphism */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Floating Buttons - Enhanced */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    display: flex;
    gap: 20px;
    z-index: 9999;
}

.floating-buttons.left {
    left: 30px;
}

.floating-buttons.right {
    right: 30px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

/* Amenity Badges - Enhanced */
.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* Booking Partners Ticker - Improved */
.partners-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    overflow: hidden;
}

.partners-ticker {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Room Modal - Enhanced */
.room-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 99999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.room-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #071826 0%, #061017 100%);
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.close-modal:hover {
    background: var(--secondary);
    transform: rotate(90deg);
    border-color: var(--secondary);
}

/* Image Slider - Enhanced */
.modal-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 100%;
}

.slider-img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--secondary);
    width: 35px;
    border-radius: 6px;
    border-color: var(--secondary);
}

/* Attractions Cards - Enhanced */
.attraction-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.attraction-card img {
    transition: transform 0.5s ease;
}

.attraction-card:hover img {
    transform: scale(1.1);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--secondary) 0%, #FFA500 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Enhanced CTA Button */
.cta-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
    }

    .floating-buttons.left {
        left: 20px;
    }

    .floating-buttons.right {
        right: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .modal-slider {
        height: 350px;
    }
}

html {
    scroll-behavior: smooth;
}

.partner-logo img {
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.partners-ticker {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Backdrop */
#mobileMenuBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#mobileMenuBackdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Current Page Navigation Style */
.nav-current {
    color: #D4AF37 !important;
    font-weight: 600;
    position: relative;
}

.nav-current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Mobile Menu Button Animation */
#mobileMenuButton.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#mobileMenuButton.active span:nth-child(2) {
    opacity: 0;
}

#mobileMenuButton.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Menu Item */
.menu-item {
    transition: all 0.3s ease;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.menu-item:last-child {
    border-bottom: none;
}

/* Dining Option Cards */
.dining-card {
    transition: all 0.3s ease;
}

.dining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

html {
    scroll-behavior: smooth;
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Current Page Indicator */
.current-page {
    position: relative;
    color: #D4AF37 !important;
    font-weight: 600;
}

.current-page::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Contact Cards */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Map Container */
.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

html {
    scroll-behavior: smooth;
}

/* Current Page Navigation Style */
.nav-current {
    color: #D4AF37 !important;
    font-weight: 600;
    position: relative;
}

.nav-current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card {
    transition: all 0.4s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.event-label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.label-premium {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.label-signature {
    background: linear-gradient(135deg, #db2777, #ec4899);
}

.label-popular {
    background: linear-gradient(135deg, #1e40af, #3730a3);
}

.counter {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

html {
    scroll-behavior: smooth;
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Current page indicator */
.current-page {
    color: #D4AF37 !important;
    position: relative;
}

.current-page::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D4AF37;
    border-radius: 2px;
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #d1d5db;
    line-height: 1.7;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 20px;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

html {
    scroll-behavior: smooth;
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Current page indicator for desktop navigation */
.nav-link.current-page {
    color: #D4AF37;
    position: relative;
}

.nav-link.current-page::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D4AF37;
}

/* Improved header behavior */
header {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 11, 22, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Highlight for search results */
mark {
    background-color: #D4AF37;
    color: #000;
    padding: 2px 4px;
    border-radius: 2px;
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Glass Morphism */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Uniform Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

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

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 11, 22, 0.8));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-category {
    opacity: 1;
    transform: translateY(0);
}

/* Fixed Filter Section */
.filter-section {
    position: fixed;
    top: 80px;
    /* Position below header */
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(6, 16, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #f9f9f9;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--secondary), #FFD700);
    color: #000B16;
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Enhanced Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-nav:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 0;
    color: white;
    font-size: 14px;
    opacity: 0.8;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    display: flex;
    gap: 20px;
    z-index: 9999;
}

.floating-buttons.left {
    left: 30px;
}

.floating-buttons.right {
    right: 30px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Backdrop */
#mobileMenuBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#mobileMenuBackdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Current Page Navigation Style */
.nav-current {
    color: #D4AF37 !important;
    font-weight: 600;
    position: relative;
}

.nav-current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Mobile Menu Button Animation */
#mobileMenuButton.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#mobileMenuButton.active span:nth-child(2) {
    opacity: 0;
}

#mobileMenuButton.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .filter-section {
        top: 70px;
        /* Adjust for smaller header on mobile */
        padding: 1rem 0;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
    }

    .floating-buttons.left {
        left: 20px;
    }

    .floating-buttons.right {
        right: 20px;
    }

    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
    }

    .lightbox-close {
        top: -50px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-counter {
        bottom: -40px;
        font-size: 12px;
    }

    /* Adjust gallery content padding for mobile */
    .gallery-content {
        padding-top: 140px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        /* Square on very small screens */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add padding to main content to account for fixed filter */
.gallery-content {
    padding-top: 120px;
    /* Header height + filter section height */
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* TOC Sticky */
.toc {
    position: sticky;
    top: 120px;
}

.toc a {
    display: block;
    padding: 12px 18px;
    color: #d1d5db;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
}

.toc a:hover,
.toc a.active {
    color: var(--secondary);
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
}

/* Policy Content */
.policy-section {
    scroll-margin-top: 120px;
}

.policy-section h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.policy-section h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.policy-section p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section li:before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

html {
    scroll-behavior: smooth;
}

/* Header scroll behavior */
header {
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

/* Improved content layout */
.policy-content {
    max-width: 100%;
}

.policy-section {
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .toc {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

:root {
    --primary: #000B16;
    --secondary: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    color: #f9f9f9;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Room Cards */
.room-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* Amenity Badge */
.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 11px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.misty-bot-btn {
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: float-bot 3s ease-in-out infinite;
}

@keyframes float-bot {

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

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

/* Room Image Gallery */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.room-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.room-gallery img:hover {
    transform: scale(1.05);
}

.room-gallery img:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 368px;
}

/* Room Details Section */
.room-details-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.amenity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-icon i {
    color: #D4AF37;
    font-size: 18px;
}

/* Highlights Section */
.highlights-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.highlight-tag {
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-size: 14px;
    font-weight: 500;
}

/* Booking Section */
.booking-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

/* Current page indicator */
.current-page {
    color: #D4AF37 !important;
    position: relative;
}

.current-page::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #D4AF37;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .room-gallery {
        grid-template-columns: 1fr;
    }

    .room-gallery img:first-child {
        grid-column: 1;
        grid-row: 1;
        height: 250px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Styles */
#mobileMenu {
    background: linear-gradient(135deg, #061017 0%, #071826 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateX(0);
}

#mobileMenu.hidden {
    transform: translateX(100%);
}

/* Mobile Menu Scrollbar */
#mobileMenu ::-webkit-scrollbar {
    width: 4px;
}

#mobileMenu ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 2px;
}

#mobileMenu ::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #02111b, #06263b);
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

label {
    display: block;
    margin-top: 12px;
    font-size: 14px;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 6px;
    background: #0c3b56;
    color: white;
}

input:focus,
select:focus {
    outline: none;
    background: #114b6d;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background: #f9a826;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #ffb83d;
}

/* Booking Page */

.booking-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.booking-left {
    padding: 40px;
}

.booking-left h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.booking-subtitle {
    opacity: 0.7;
    margin-bottom: 30px;
}

.booking-image {
    width: 100%;
    border-radius: 12px;
    margin-top: 10px;
}

.booking-right {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #D4AF37;
}

.form-group input,
.form-group select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.book-btn {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile */

@media(max-width:768px) {

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-left {
        display: none;
    }

}

.booking-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.booking-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.room-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.room-card {
    background: #071826;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 15px;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.booking-panel {
    padding: 30px;
    border-radius: 14px;
}

.date-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,
select {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #061017;
    color: white;
}

.price-box {
    margin-top: 20px;
    font-size: 18px;
    color: #D4AF37;
}

.book-btn {
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #D4AF37;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

@media(max-width:900px) {

    .booking-grid {
        grid-template-columns: 1fr;
    }

}

.booking-container {
    max-width: 1300px;
    margin: auto;
    padding: 80px 20px;
}

.booking-title {
    text-align: center;
    font-size: 44px;
    margin-bottom: 50px;
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.rooms-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.room-card {
    background: #071826;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 20px;
}

.room-info ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    opacity: 0.7;
}

.select-room {
    margin-top: 10px;
    padding: 10px 18px;
    background: #D4AF37;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.booking-panel {
    padding: 30px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-panel input,
.booking-panel select {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #061017;
    color: white;
}

.cost-box {
    margin-top: 20px;
    font-size: 20px;
    color: #D4AF37;
}

.book-btn {
    margin-top: 10px;
    padding: 15px;
    background: #D4AF37;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

@media(max-width:900px) {

    .booking-layout {
        grid-template-columns: 1fr;
    }

}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.booking-panel {
    padding: 30px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

.booking-panel label {
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

.booking-panel input,
.booking-panel select {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border-radius: 10px;
    border: none;
    background: #081822;
    color: white;
}

.book-btn {
    margin-top: 20px;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: black;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.book-btn:hover {
    transform: scale(1.05);
}

.cost-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
}

/* Room Card Carousel */
.room-card {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--secondary);
}

.carousel-btn.prev {
    left: 5px;
}

.carousel-btn.next {
    right: 5px;
}

.carousel-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Success/Failure Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #071826;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: #10b981;
}

.modal-icon.failed {
    color: #ef4444;
}

.modal h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.modal p {
    color: #d1d5db;
    margin-bottom: 25px;
}

.modal-close {
    padding: 12px 30px;
    background: var(--secondary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-container {
        height: 150px;
    }
}

.booking-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-panel h2 {
    grid-column: span 2;
}

.booking-panel .cost-box,
.booking-panel .book-btn {
    grid-column: span 2;
}

.form-row {
    display: contents;
    /* so children are placed directly in the grid */
}

.form-group {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .booking-panel {
        grid-template-columns: 1fr;
    }

    .booking-panel h2,
    .booking-panel .cost-box,
    .booking-panel .book-btn {
        grid-column: span 1;
    }
}

/* Room Cards with better visuals */
.room-card {
    background: linear-gradient(135deg, #0b1a26, #071826);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: #D4AF37;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.amenity-badge i {
    font-size: 0.7rem;
}

.select-room {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-room:hover {
    background: var(--secondary);
    color: #000;
}

/* Booking panel two-column layout */
.booking-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-panel h2 {
    grid-column: span 2;
    margin-top: 0;
}

.booking-panel .form-group {
    display: flex;
    flex-direction: column;
}

.booking-panel label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #D4AF37;
}

.booking-panel input,
.booking-panel select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.booking-panel .cost-box,
.booking-panel .book-btn {
    grid-column: span 2;
}

.cost-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    line-height: 1.6;
}

.book-btn {
    padding: 14px;
    background: var(--secondary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-panel {
        grid-template-columns: 1fr;
    }

    .booking-panel h2,
    .booking-panel .cost-box,
    .booking-panel .book-btn {
        grid-column: span 1;
    }

    .room-card {
        margin-bottom: 20px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.service-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.service-option:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.service-option input {
    width: auto !important;
    margin-top: 0 !important;
}

.text-gold {
    color: #D4AF37;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}