
        /* --- General Styles --- */
        body {
            background-color: #F5F2EA;
            color: #1a1a1a;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* --- Buttons --- */
        .btn-gradient-gold {
            background: linear-gradient(90deg, #D4AF7A 0%, #B38B59 100%);
            color: white !important;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 6px;
            box-shadow: 0 10px 20px -10px rgba(179, 139, 89, 0.5);
            transition: all 0.3s ease;
            text-transform: capitalize;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-gradient-gold:hover {
            background: linear-gradient(90deg, #B38B59 0%, #D4AF7A 100%);
            transform: translateY(-2px);
            box-shadow: 0 15px 25px -10px rgba(179, 139, 89, 0.7);
        }

        /* --- Text Gradients --- */
        .text-gold-gradient {
            background: linear-gradient(90deg, #B38B59 0%, #D4AF7A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        /* --- Swiper --- */
        .swiper-button-next,
        .swiper-button-prev {
            color: white !important;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            width: 45px !important;
            height: 45px !important;
            border-radius: 50%;
        }

        .swiper-pagination-bullet-active {
            background: #C6A87C !important;
            width: 25px !important;
            border-radius: 5px;
        }

        /* --- Gallery --- */
        .gallery-slide img {
            height: 350px;
            width: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.5s ease;
        }

        .gallery-slide:hover img {
            transform: scale(1.03);
        }

        /* --- Tabs --- */
        .nav-pills .nav-link {
            color: #0B1C18;
            border: 1px solid #C6A87C;
            padding: 10px 25px;
            margin: 0 5px;
            transition: all 0.3s;
        }

        .nav-pills .nav-link.active {
            background-color: #0B1C18 !important;
            color: #C6A87C !important;
            border-color: #0B1C18 !important;
        }

        /* --- FIX: Accordion Visibility Issue --- */
        /* Tailwind sets 'collapse' to visibility:collapse, making it invisible even if open. 
           We override this to allow Bootstrap to handle display property. */
        .accordion-collapse {
            visibility: visible !important;
        }

        .accordion-button:not(.collapsed) {
            color: #0B1C18;
            background-color: rgba(198, 168, 124, 0.1);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(198, 168, 124, 0.5);
        }

        /* --- Modal Animation --- */
        #enquireModal {
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        #enquireModal.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        #enquireModal:not(.hidden) {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .bg-grid-light {
            background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* FIX: Mobile Offcanvas Full Visibility */
@media (max-width: 991px) {
    .offcanvas {
        height: 100vh !important;
    }

    .offcanvas-body {
        overflow-y: auto !important;
        padding-bottom: 90px; /* bottom CTA space */
    }
}

/* FIX: Hide bottom CTA when menu open */
body.offcanvas-open .mobile-cta-bar {
    display: none !important;
}
.highlights-swiper .swiper-slide {
    height: auto;
}

.highlights-swiper .swiper-pagination-bullet-active {
    background: #C6A87C !important;
}


    