 /* ===== CSS VARIABLES ===== */
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --gold: #D4AF37;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        /* ===== RESET & BASE ===== */
        * {

            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        header {
            background: var(--primary-dark);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            background: rgba(26, 26, 46, 0.98);
        }

        /* --- Header Layout --- */
        .header-container {
            display: flex;
            justify-content: space-between;
            /* Logo Left, Actions Right */
            align-items: center;
            position: relative;
            padding: 15px 0;
        }

        /* --- Right Side Actions --- */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            /* Space between Phone, Buttons, and Hamburger */
            margin-left: auto;
            /* Forces this section to the far right */
        }

        .header-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        /* --- Button Fixes (Crucial for Responsiveness) --- */
        /* Override the global width: 100% that was breaking your header */
        #header .enquire-btn {
            width: auto !important;
            min-width: auto !important;
            max-width: none !important;
            padding: 10px 20px;
            font-size: 13px;
            white-space: nowrap;
            /* Prevents text from wrapping to two lines */
            margin: 0;
            /* Remove any default margins */
        }

        /* --- Call Button --- */
        .call-now {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
        }

        /* --- Hamburger Menu --- */
        .hamburger {
            display: none;
            /* Hidden on Desktop */
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1000;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-dark);
            display: block;
        }

        /* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

        /* Tablet & Mobile (Max Width 992px) */
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }

            /* Show Hamburger on Mobile */
            .hamburger {
                display: flex;
                order: 3;
                /* Ensure hamburger is always last on right */
            }

            /* Hide Standard Nav Links */
            .nav-menu {
                display: none;
                /* Or toggle via JS class */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            /* Mobile Strategy for Buttons: 
       Option A: Hide them (Cleaner) 
       Option B: Stack them below logo (Visible) 
       Below is Option B to keep them visible on right/center */

            .header-actions {
                width: 100%;
                justify-content: space-between;
                margin-top: 10px;
                order: 2;
            }

            .header-buttons {
                display: flex;
                gap: 10px;
            }

            /* Make buttons smaller on mobile to fit */
            #header .enquire-btn {
                padding: 8px 15px;
                font-size: 11px;
            }

            /* Hide Phone Text on Small Mobile, Keep Icon */
            .call-now span {
                display: none;
            }
        }

        /* Small Mobile (Max Width 576px) */
        @media (max-width: 576px) {
            .header-actions {
                justify-content: flex-end;
                /* Push everything to right */
                gap: 10px;
            }

            /* If screen is too small, stack buttons vertically or hide one */
            .header-buttons {
                display: none;
                /* Hiding buttons on very small screens is often best UX */
                /* OR: Keep them visible but stack them */
                /* 
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        padding: 10px;
        border: 1px solid #ddd;
        */
            }
        }

        .logo {
            margin-right: 40px;
        }

        nav {
            flex: 1;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            margin-left: 10px;
        }

        .logo-text span {
            color: var(--gold);
        }

        .nav-menu {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--white);
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }







        .header-actions {
            display: flex;
            align-items: center;
            gap: px;
        }

        .call-now {
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 14px;
        }

        .call-now i {
            color: var(--gold);
            font-size: 18px;
        }

        .enquire-btn {
            background: var(--gold);
            color: var(--primary-dark);
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
        }

        .enquire-btn:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            margin-top: 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }

        /* Hero background - transparent image only, NO color overlay */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/Hero img.jpeg') center/cover no-repeat;
            /* Only subtle brightness for text readability - NO color tint */
            filter: brightness(0.92);
            z-index: 1;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .hero-section h1 {
            font-size: 52px;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }

        .hero-section h1 span {
            color: var(--gold);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .hero-section p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            line-height: 1.7;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-stats {
            display: flex;
            gap: 35px;
            margin: 35px 0;
        }

        .stat-item {
            text-align: left;
        }

        .stat-item h3 {
            font-size: 34px;
            color: var(--gold);
            font-weight: 700;
            line-height: 1;
        }

        .stat-item p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            margin: 5px 0 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--primary-dark);
            padding: 14px 35px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 14px 35px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: 2px solid var(--white);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Hero Form - Right Side (Simplified) */
        .hero-form-container {
            flex-shrink: 0;
            width: 100%;
            max-width: 380px;
        }

        .hero-form {
            background: rgba(255, 255, 255, 0.95);
            padding: 30px 25px;
            border-radius: 12px;
            box-shadow: var(--shadow-hover);
            border-top: 4px solid var(--gold);
            backdrop-filter: blur(5px);
        }

        .hero-form h4 {
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .hero-form p {
            color: var(--text-light);
            font-size: 13px;
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-family: inherit;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 18px;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 2px;
        }

        .checkbox-group label {
            font-size: 10px;
            color: var(--text-light);
            line-height: 1.4;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            color: var(--gold);
            transform: translateY(-2px);
        }

        .form-note {
            font-size: 10px;
            color: var(--text-light);
            text-align: center;
            margin-top: 12px;
            line-height: 1.3;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            z-index: 2;
        }

        .scroll-indicator i {
            color: var(--white);
            font-size: 28px;
            opacity: 0.9;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* ===== SECTION STYLES ===== */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--primary-dark);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 42px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .divider {
            width: 80px;
            height: 3px;
            background: var(--gold);
            margin: 20px auto;
        }

        /* ===== OVERVIEW SECTION ===== */
        .overview-section {
            background: var(--off-white);
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .overview-content h3 {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .overview-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .feature-list {
            list-style: none;
            margin: 30px 0;
        }

        .feature-list li {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            /* color: var(--text-dark); */
            color: #202947;
            font-size: 15px;
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 16px;
        }

        .overview-image {
            position: relative;
        }

        .overview-image img {
            border-radius: 10px;
            box-shadow: var(--shadow-hover);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: var(--gold);
            color: var(--primary-dark);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .experience-badge h4 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 14px;
            margin: 0;
            font-weight: 600;
        }

        /* ===== AMENITIES SECTION ===== */
        .amenities-section {
            background: var(--primary-dark);
            color: var(--white);
        }

        .amenities-section .section-header h2 {
            color: var(--white);
        }

        .amenities-section .section-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .amenity-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .amenity-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
        }

        .amenity-icon {
            width: 80px;
            height: 80px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .amenity-icon i {
            font-size: 32px;
            color: var(--primary-dark);
        }

        .amenity-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--white);
        }

        .amenity-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            background: var(--white);
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .gallery-tab {
            padding: 12px 35px;
            border: 2px solid var(--gold);
            background: transparent;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .gallery-tab.active,
        .gallery-tab:hover {
            background: var(--gold);
            color: var(--primary-dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--gold);
            font-size: 40px;
        }

        /* ===== LOCATION SECTION ===== */
        .location-section {
            background: var(--off-white);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-info h3 {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .location-info>p {
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .distance-list {
            display: grid;
            gap: 15px;
        }

        .distance-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .distance-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-hover);
        }

        .distance-item i {
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .distance-item div {
            flex: 1;
        }

        .distance-item h5 {
            font-size: 15px;
            color: var(--primary-dark);
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .distance-item span {
            color: var(--gold);
            font-weight: 700;
            font-size: 14px;
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-content h3 {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .stat-box {
            background: var(--primary-dark);
            color: var(--white);
            padding: 35px 25px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .stat-box h4 {
            font-size: 42px;
            color: var(--gold);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-box p {
            font-size: 14px;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--white);
        }

        .contact-section .section-header h2 {
            color: var(--white);
        }

        .contact-section .section-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--white);
        }

        .contact-info>p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .contact-details {
            display: grid;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-item div h5 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .contact-item div p {
            margin: 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-form {
            background: var(--white);
            padding: 40px 35px;
            border-radius: 10px;
            box-shadow: var(--shadow-hover);
        }

        .contact-form h4 {
            font-size: 24px;
            color: var(--primary-dark);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 5px;
            font-family: inherit;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 22px;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 3px;
        }

        .checkbox-group label {
            font-size: 11px;
            color: var(--text-light);
            line-height: 1.5;
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 25px;
            color: var(--gold);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ===== POPUP - QUICK ENQUIRY (Name + Number Only) ===== */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9998;
            backdrop-filter: blur(5px);
        }

        .popup-overlay.active {
            display: block;
        }

        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--white);
            padding: 35px 30px;
            border-radius: 12px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
            z-index: 9999;
            max-width: 420px;
            width: 90%;
            border-top: 5px solid var(--gold);
        }

        .popup.active {
            display: block;
            animation: popupSlide 0.3s ease;
        }

        @keyframes popupSlide {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }

            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .popup-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-dark);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .popup-close:hover {
            background: var(--off-white);
            color: var(--gold);
        }

        .popup h3 {
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-size: 24px;
            text-align: center;
        }

        .popup p.popup-desc {
            color: var(--text-light);
            text-align: center;
            margin-bottom: 22px;
            font-size: 13px;
            line-height: 1.5;
        }

        .popup .form-group input {
            padding: 14px 18px;
            font-size: 14px;
        }

        .popup .submit-btn {
            margin-top: 8px;
            padding: 14px;
            font-size: 14px;
        }

        .popup-note {
            font-size: 10px;
            color: var(--text-light);
            text-align: center;
            margin-top: 18px;
            line-height: 1.3;
        }

        /* ===== MOBILE FLOATING BUTTONS ===== */
        .mobile-floating {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 0 20px;
            gap: 10px;
        }

        .mobile-floating a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            flex: 1;
            max-width: 200px;
        }

        .mobile-call {
            background: var(--gold);
            color: var(--primary-dark);
        }

        .mobile-enquire {
            background: var(--primary-dark);
            color: var(--white);
        }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-dark);
                flex-direction: column;
                padding: 40px;
                gap: 25px;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .header-actions .call-now {
                display: none;
            }

            .hero-section {
                margin-top: 70px;
                padding: 40px 0 60px;
                min-height: auto;
            }

            .hero-content-wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
                order: 1;
            }

            .hero-form-container {
                max-width: 100%;
                width: 100%;
                order: 2;
                margin: 0 auto;
            }

            .hero-section h1 {
                font-size: 38px;
            }

            .hero-section h1 .koregaon {
                font-size: 24px !important;
            }

            .hero-stats {
                justify-content: center;
            }

            .stat-item {
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .overview-grid,
            .location-grid,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .experience-badge {
                left: 20px;
                bottom: -20px;
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 32px;
            }

            .hero-section h1 .koregaon {
                font-size: 22px !important;
            }

            .hero-section h1 img {
                height: 60px !important;
            }

            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }

            .stat-item h3 {
                font-size: 28px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 25px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .mobile-floating {
                display: flex;
            }

            .hero-form {
                padding: 25px 20px;
            }

            .hero-form h4 {
                font-size: 19px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-outline {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 30px 0 50px;
            }

            .hero-section h1 {
                font-size: 26px;
            }

            .hero-section h1 .koregaon {
                font-size: 20px !important;
            }

            .hero-section h1 img {
                height: 50px !important;
            }

            .hero-stats {
                gap: 15px;
            }

            .stat-item h3 {
                font-size: 24px;
            }

            .gallery-tabs {
                flex-direction: column;
                align-items: center;
            }

            .gallery-tab {
                width: 100%;
                max-width: 300px;
            }

            .hero-form {
                padding: 20px 18px;
            }

            .form-group label {
                font-size: 11px;
            }

            .form-group input {
                padding: 10px 14px;
                font-size: 13px;
            }

            .submit-btn {
                padding: 12px;
                font-size: 12px;
            }
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        section:target {
            scroll-margin-top: 100px;
        }







        /* ===== ENHANCED RESPONSIVE STYLES ===== */

        /* Tablet & Small Laptop (992px and below) */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-dark);
                flex-direction: column;
                padding: 40px 20px;
                gap: 20px;
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 16px;
                padding: 12px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .hamburger {
                display: flex;
                padding: 10px;
                z-index: 1001;
            }

            .header-actions .call-now {
                display: none;
            }

            .hero-section {
                margin-top: 70px;
                padding: 40px 0 60px;
                min-height: auto;
            }

            .hero-content-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
                order: 1;
            }

            .hero-form-container {
                max-width: 100%;
                width: 100%;
                order: 2;
                margin: 0 auto;
            }

            .hero-section h1 {
                font-size: clamp(28px, 7vw, 38px);
                line-height: 1.2;
            }

            .hero-section h1 .koregaon {
                font-size: clamp(18px, 5vw, 24px) !important;
            }

            .hero-section h1 img {
                height: clamp(50px, 12vw, 80px) !important;
            }

            .hero-stats {
                justify-content: center;
                gap: 25px;
                flex-wrap: wrap;
            }

            .stat-item {
                text-align: center;
                min-width: 120px;
            }

            .stat-item h3 {
                font-size: clamp(24px, 6vw, 34px);
            }

            .hero-buttons {
                justify-content: center;
                gap: 12px;
            }

            .overview-grid,
            .location-grid,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .experience-badge {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 20px;
                display: inline-flex;
                align-items: center;
                gap: 15px;
                padding: 15px 25px;
            }

            .experience-badge h4 {
                font-size: 32px;
                margin: 0;
            }

            .map-container {
                height: 400px;
            }
        }

        /* Mobile Landscape & Small Tablet (768px and below) */
        @media (max-width: 768px) {
            :root {
                --section-padding: 60px 0;
            }

            section {
                padding: var(--section-padding);
            }

            .container {
                padding: 0 16px;
            }

            .hero-section {
                padding: 30px 0 50px;
            }

            .hero-section h1 {
                font-size: clamp(24px, 8vw, 32px);
            }

            .hero-section p {
                font-size: clamp(14px, 4vw, 16px);
            }

            .hero-badge {
                font-size: 10px;
                padding: 6px 14px;
                letter-spacing: 1px;
            }

            .hero-stats {
                gap: 15px;
            }

            .stat-item h3 {
                font-size: clamp(22px, 7vw, 28px);
            }

            .stat-item p {
                font-size: 11px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .btn-primary,
            .btn-outline,
            .enquire-btn {
                width: 100%;
                max-width: 320px;
                padding: 14px 20px;
                font-size: 14px;
                text-align: center;
            }

            .hero-form {
                padding: 24px 20px;
                margin: 0 8px;
            }

            .hero-form h4 {
                font-size: 18px;
            }

            .form-group label {
                font-size: 11px;
            }

            .form-group input {
                padding: 12px 14px;
                font-size: 14px;
                min-height: 44px;
                /* Touch target */
            }

            .checkbox-group label {
                font-size: 11px;
                line-height: 1.4;
            }

            .submit-btn {
                padding: 14px;
                font-size: 13px;
                min-height: 44px;
            }

            .section-header h2 {
                font-size: clamp(24px, 7vw, 32px);
            }

            .section-header p {
                font-size: clamp(13px, 4vw, 15px);
            }

            /* Gallery - Fix horizontal scroll */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .gallery-item {
                aspect-ratio: 4/3;
                border-radius: 8px;
            }

            .gallery-tabs {
                gap: 8px;
                margin-bottom: 30px;
            }

            .gallery-tab {
                padding: 10px 20px;
                font-size: 12px;
                min-height: 40px;
                /* Touch target */
            }

            /* Amenities */
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .amenity-card {
                padding: 25px 20px;
            }

            .amenity-icon {
                width: 60px;
                height: 60px;
            }

            .amenity-icon i {
                font-size: 24px;
            }

            .amenity-card h4 {
                font-size: 16px;
            }

            .amenity-card p {
                font-size: 13px;
            }

            /* Location */
            .map-container {
                height: 300px;
                border-radius: 8px;
            }

            .distance-item {
                padding: 15px;
                gap: 12px;
            }

            .distance-item i {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .distance-item h5 {
                font-size: 14px;
            }

            .distance-item span {
                font-size: 13px;
            }

            /* About Stats */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .stat-box {
                padding: 25px 15px;
            }

            .stat-box h4 {
                font-size: 32px;
            }

            .stat-box p {
                font-size: 12px;
            }

            /* Contact Form */
            .contact-form {
                padding: 30px 20px;
            }

            .contact-item {
                gap: 15px;
            }

            .contact-item i {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h4 {
                font-size: 16px;
            }

            .social-links {
                justify-content: center;
            }

            .footer-links {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Popup */
            .popup {
                padding: 30px 20px;
                margin: 0 16px;
                max-width: calc(100% - 32px);
            }

            .popup h3 {
                font-size: 20px;
            }

            /* Mobile Floating Buttons - Ensure visibility */
            .mobile-floating {
                display: flex;
                padding: 12px 16px 20px;
                gap: 12px;
                background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
            }

            .mobile-floating a {
                padding: 14px 20px;
                font-size: 13px;
                min-height: 48px;
                border-radius: 12px;
            }
        }

        /* Small Mobile (480px and below) */
        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: clamp(22px, 9vw, 26px);
                line-height: 1.3;
            }

            .hero-section h1 br {
                display: none;
                /* Remove line breaks on very small screens */
            }

            .hero-section h1 .koregaon {
                display: block;
                font-size: clamp(16px, 5.5vw, 20px) !important;
                margin-top: 8px;
            }

            .hero-section h1 img {
                height: 44px !important;
            }

            .hero-stats {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }

            .stat-item h3 {
                font-size: clamp(20px, 8vw, 24px);
            }

            .overview-content h3,
            .location-info h3,
            .about-content h3 {
                font-size: clamp(20px, 6vw, 24px);
            }

            .overview-content p,
            .location-info>p,
            .about-content p {
                font-size: clamp(13px, 4vw, 14px);
                line-height: 1.7;
            }

            .feature-list li {
                font-size: 14px;
                padding-left: 30px;
                padding: 8px 0 8px 30px;
            }

            .feature-list li::before {
                font-size: 14px;
                left: 2px;
            }

            /* Amenities on very small screens */
            .amenities-grid {
                grid-template-columns: 1fr;
            }

            /* Gallery tabs stack vertically */
            .gallery-tabs {
                flex-direction: column;
                align-items: center;
            }

            .gallery-tab {
                width: 100%;
                max-width: 280px;
            }

            /* Distance list */
            .distance-list {
                gap: 12px;
            }

            .distance-item {
                flex-direction: column;
                text-align: center;
                padding: 16px 12px;
            }

            .distance-item div {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 4px;
            }

            /* Stats boxes */
            .stats-grid {
                grid-template-columns: 1fr;
            }

            /* Contact form labels */
            .form-group label {
                font-size: 10px;
                letter-spacing: 0.3px;
            }

            .checkbox-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .checkbox-group input {
                margin-top: 0;
            }

            /* Footer bottom */
            .footer-bottom p {
                font-size: 12px;
                padding: 0 10px;
            }

            /* Ensure no horizontal scroll */
            img,
            video,
            iframe,
            embed,
            object {
                max-width: 100%;
                height: auto;
            }

            /* Fix long words breaking layout */
            body {
                word-wrap: break-word;
                overflow-wrap: break-word;
                hyphens: auto;
            }
        }

        /* Extra Small Mobile (320px - iPhone SE, small Android) */
        @media (max-width: 360px) {
            .container {
                padding: 0 12px;
            }

            .hero-form {
                padding: 20px 16px;
            }

            .form-group input {
                padding: 10px 12px;
                font-size: 13px;
            }

            .submit-btn,
            .btn-primary,
            .btn-outline {
                padding: 12px 16px;
                font-size: 12px;
            }

            .section-header h2 {
                font-size: 22px;
            }

            .stat-item h3 {
                font-size: 20px;
            }

            .stat-item p {
                font-size: 10px;
            }

            .amenity-card h4 {
                font-size: 15px;
            }

            .amenity-card p {
                font-size: 12px;
            }

            .distance-item h5 {
                font-size: 13px;
            }

            .contact-item div h5 {
                font-size: 14px;
            }

            .contact-item div p {
                font-size: 12px;
            }

            /* Popup on smallest screens */
            .popup {
                padding: 25px 16px;
                width: calc(100% - 24px);
            }

            .popup h3 {
                font-size: 18px;
            }

            .popup p.popup-desc {
                font-size: 12px;
            }

            .popup .form-group input {
                padding: 10px 12px;
                font-size: 13px;
            }

            .popup-note {
                font-size: 9px;
            }
        }

        /* ===== UTILITY FIXES FOR ALL SCREENS ===== */

        /* Prevent horizontal overflow globally */
        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Ensure images/iframe scale properly */
        img,
        picture,
        video,
        canvas,
        svg,
        iframe {
            display: block;
            max-width: 100%;
            height: auto;
        }

        /* Improve touch targets for accessibility */
        button,
        a,
        input[type="submit"],
        input[type="button"],
        .gallery-tab,
        .enquire-btn,
        .btn-primary,
        .btn-outline,
        .submit-btn,
        .popup-close,
        .hamburger,
        .nav-menu a,
        .social-links a,
        .footer-links a {
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Fix form inputs on iOS */
        input,
        textarea,
        select {
            font-size: 16px;
            /* Prevents iOS zoom on focus */
            -webkit-appearance: none;
            appearance: none;
        }

        /* Smooth font rendering */
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Fix viewport height on mobile browsers */
        @supports (-webkit-touch-callout: none) {

            .hero-section,
            section {
                min-height: -webkit-fill-available;
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Dark mode support (optional enhancement) */
        @media (prefers-color-scheme: dark) {

            /* Only adjust non-brand colors for better mobile night viewing */
            .overview-section,
            .location-section,
            .gallery-section,
            .about-section {
                background: #8a8e94;
            }

            .overview-section p,
            .location-section p,
            .gallery-section p,
            .about-section p {
                color: rgba(255, 255, 255, 0.8);
            }
        }


        /* ===== MOBILE HERO FIX: Remove background image, show text on solid ===== */
        @media (max-width: 768px) {
            .hero-section::before {
                /* Hide the background image overlay on mobile */
                display: none;
            }

            .hero-section {
                /* Add solid background for mobile text readability */
                background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
                min-height: auto;
                padding: 80px 0 40px;
            }

            .hero-content h1,
            .hero-content p,
            .hero-content .hero-badge,
            .stat-item h3,
            .stat-item p {
                /* Ensure text colors work on dark solid background */
                text-shadow: none;
            }

            .hero-content h1 {
                color: var(--white);
            }

            .hero-content p {
                color: rgba(255, 255, 255, 0.9);
            }

            .hero-stats {
                background: rgba(255, 255, 255, 0.05);
                padding: 20px;
                border-radius: 8px;
                margin: 25px 0;
            }

            /* Optional: Show a smaller hero image BELOW text on mobile instead of as background */
            .hero-content::before {
                content: '';
                display: block;
                width: 100%;
                height: 200px;
                background: url('../img/Hero img.jpeg') center/cover no-repeat;
                border-radius: 8px;
                margin-bottom: 20px;
                /* space between image & text */
                box-shadow: var(--shadow);
            }
        }

        /* Extra small mobile refinement */
        @media (max-width: 480px) {
            .hero-section {
                padding: 70px 0 30px;
            }

            .hero-content::after {
                height: 160px;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                /* Hidden off-screen */
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
                /* Slides in when .active is added */
            }

            .hamburger {
                display: flex;
                /* Visible on mobile */
            }
        }

        @media (min-width: 992px) {
            .hamburger {
                display: none;
                /* Hidden on desktop */
            }
        }