        :root {
            --primary: #0a1f44; /* Deep Royal Blue */
            --gold: #c5a059;    /* Luxury Gold */
            --light-grey: #f9f9f9;
            --dark: #1a1a1a;
        }

        /* Global Reset for Mobile Scroll Issues */
        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            /* padding-bottom: 70px; Space for mobile sticky bar */
        }

        /* Prevent background scroll when modal is open */
         body.modal-open {

            overflow: hidden !important; 

            padding-right: 0 !important;

        }

        h1, h2, h3, .navbar-brand {
            font-family: 'Playfair Display', serif;
        }

        /* --- 1. RESPONSIVE HERO BANNER --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            /* DESKTOP IMAGE */
            background-image: linear-gradient(rgba(10, 31, 68, 0.4), rgba(10, 31, 68, 0.6)), url('images/banner1.jpg'); 
        }

        @media (max-width: 768px) {
            .hero {
                /* MOBILE IMAGE */
                background-image: linear-gradient(rgba(10, 31, 68, 0.3), rgba(10, 31, 68, 0.7)), url('images/banner2.jpg');
                background-position: center bottom;
                background-attachment: scroll; /* Fixes jitter on mobile scroll */
            }
            .hero h1 { font-size: 2.5rem; }
        }

        /* --- 2. MOBILE BOTTOM STICKY BAR (Refined Design) --- */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: white;
            z-index: 9999;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
            display: flex;
        }
        .mobile-nav-btn {
            flex: 1; /* Equal 50% width */
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            color: white;
            transition: 0.3s;
        }
        .btn-call-mobile {
            background-color: var(--primary);
        }
        .btn-enquire-mobile {
            background-color: var(--gold);
        }
        .mobile-nav-btn:active {
            opacity: 0.8;
        }

        /* --- 3. DESKTOP STICKY BUTTONS --- */
        .sticky-btn-left {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            z-index: 1050;
        }
        .enquire-tab {
            background-color: var(--gold);
            color: white;
            padding: 15px 5px;
            writing-mode: vertical-rl;
            font-weight: 700;
            letter-spacing: 2px;
            cursor: pointer;
            border-radius: 0 8px 8px 0;
            text-decoration: none;
            display: block;
            transition: 0.3s;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }
        .enquire-tab:hover { background-color: var(--primary); color: var(--gold); }

        .sticky-btn-right {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            z-index: 1050;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .action-icon-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-decoration: none;
            transition: 0.3s;
        }
        .btn-call { background-color: var(--primary); }
        .btn-wa { background-color: #25D366; }
        .action-icon-btn:hover { transform: scale(1.1); color: white; }

        /* --- 4. NAVBAR & BURGER MENU DESIGN --- */
        .navbar {
            background: rgba(10, 31, 68, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
        }
        .navbar-brand { font-size: 1.8rem; color: white !important; }
        .nav-link { color: rgba(255,255,255,0.8) !important; margin: 0 10px; transition: 0.3s; }
        .nav-link:hover { color: var(--gold) !important; }

        /* Mobile Menu Specific Styling */
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--primary); /* Solid background for readability */
                padding: 20px;
                border-radius: 0 0 15px 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                margin-top: 10px;
                text-align: center;
            }
            .nav-link {
                padding: 10px 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .btn-gold {
                width: 100%;
                margin-top: 15px;
            }
        }
        
        /* Buttons */
        .btn-gold {
            background-color: var(--gold);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 600;
            border: 2px solid var(--gold);
            transition: 0.3s;
        }
        .btn-gold:hover { background-color: transparent; color: var(--gold); }
        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn-outline-gold:hover { background-color: var(--gold); color: white; }

        .section-padding { padding: 80px 0; }
        
        /* --- Amenities Cards --- */
        .amenity-box {
            background: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.4s;
            border-bottom: 3px solid transparent;
            height: 100%;
        }
        .amenity-box:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid var(--gold);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .amenity-icon-circle {
            width: 70px;
            height: 70px;
            background: rgba(197, 160, 89, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--gold);
            font-size: 28px;
        }

        /* --- Locked Downloads Section --- */
        .locked-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s;
            border: 1px solid #eee;
            background: white;
        }
        .locked-card:hover { transform: translateY(-5px); }
        .blur-img-container {
            position: relative;
            height: 250px;
            background: #000;
            overflow: hidden;
        }
        .blur-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(4px);
            opacity: 0.7;
            transition: 0.3s;
        }
        .lock-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 100%;
        }
        .lock-overlay i { text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .lock-overlay h5 { text-shadow: 0 2px 10px rgba(0,0,0,0.8); font-weight: 700; }

        /* --- Visual Tour Tabs --- */
        .nav-pills-custom {
            display: inline-flex;
            background: #fff;
            padding: 10px;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 1px solid #eee;
            margin-bottom: 40px;
        }

        .nav-pills-custom .nav-link {
            color: var(--primary) !important; /* Forces Dark Blue on inactive */
            font-weight: 700;
            padding: 12px 35px;
            border-radius: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            background: transparent;
        }

        .nav-pills-custom .nav-link.active {
            background-color: var(--primary) !important;
            color: var(--gold) !important;
            box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
        }
        
        .nav-pills-custom .nav-link:hover:not(.active) {
            background-color: #f4f4f4;
        }

        /* --- Gallery --- */
        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

          .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .gallery-card:hover img { transform: scale(1.1); }
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: 0.3s;
        }
        .gallery-card:hover .gallery-overlay { opacity: 1; }
        .gallery-text h5 { color: var(--gold); margin: 0; font-weight: 700; }
        .gallery-text p { color: white; font-size: 0.85rem; margin-top: 5px; }

        /* --- Footer --- */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 0 20px;
        }
        
        /* Extra Tweaks for Small Mobile Screens */
        @media (max-width: 768px) {
            .nav-pills-custom { flex-direction: column; width: 100%; border-radius: 15px; }
            .nav-pills-custom .nav-link { margin-bottom: 5px; width: 100%; }
        }
   /* --- SWIPER FIX --- */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

/* Force specific height on the slide wrapper */
.swiper-slide {
    height: 350px !important; /* Fixed height for the box */
    display: flex;
    height: auto;
}

/* The Box Container */
.gallery-card {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Force Image to Fit */
.gallery-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* CRITICAL: Crops image to fit box */
    object-position: center !important;
    display: block;
}

/* Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background-color: var(--gold) !important;
}

/* --- FOOTER SOCIAL ICONS --- */
.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gold); /* Uses your gold theme color */
    color: #fff;
    transform: translateY(-3px);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px; /* Adjusts distance from right side */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.float-whatsapp:hover {
    background-color: #1ebd56;
    color: #fff;
    transform: scale(1.1); /* slight zoom on hover */
}

/* Mobile adjustment for WhatsApp button */
@media (max-width: 768px) {
    .float-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.footer-nav-list a {
    color: #666;
    text-decoration: none;
    cursor: pointer;
}

.footer-nav-list a:hover {
    color: #0b1c4b;
}

/* --- The Collapse Animation Logic --- */
.collapse-container {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* This '.show' class is toggled on click */
.collapse-container.show {
    max-height: 1000px; /* High enough to contain all tags */
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 30px;
}
/* --- Screenshot Tag Styling --- */
.divider-line {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 25px 0;
}

.drawer-title {
    text-align: center;
    color: #0b1c4b;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.keyword-cloud a {
    color: #55627e;
    text-decoration: none;
    background-color: #f4f6f9;
    border: 1px solid #e2e7ee;
    padding: 6px 14px;
    font-size: 13.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.keyword-cloud a:hover {
    background-color: #e2e7ee;
    color: #0b1c4b;
}