 /* Root Variables */
        :root {
            --primary: #ff1e8d;
            --secondary: #8a2be2;
            --accent: #ffd700;
            --light: #f8f9fa;
            --dark: #343a40;
            --text-light: #f7f7f7;
            --text-dark: #2c3e50;
            --bg-gradient-1: linear-gradient(135deg, #ff9a8b 0%, #ff1e8d 55%, #ff69b4 100%);
            --bg-gradient-2: linear-gradient(135deg, #FFD3A5 0%, #ff4500 100%);
            --bg-gradient-3: linear-gradient(135deg, #ffd700 0%, #ff1493 100%);
            --bg-gradient-4: linear-gradient(120deg, #8a2be2 0%, #00bfff 100%);
            --header-height: 70px; /* Reduced height for better content fit */
            --header-bg: rgba(255, 255, 255, 0.95); /* More opaque for better contrast */
            --nav-text: #2c3e50;
            --nav-highlight: #ff1e8d;
        }
        
        /* Base Styles */
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
            background-color: #FFFFFF;
            width: 100%;
            max-width: 100%;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
        }
        
        img {
            max-width: 100%;
        }
        
        /* Creative Header Styles - Revamped */
        .creative-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            transition: all 0.4s ease;
            height: var(--header-height);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .header-inner {
            background: var(--header-bg); /* Always have a background color */
            height: 100%;
            transition: all 0.4s ease;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .header-scrolled .header-inner {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand-creative {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--nav-text);
            transition: all 0.3s ease;
            /* Fit content only - no excess space */
            flex-shrink: 0;
            padding: 0.5rem 0;
        }
        
        .logo-container {
            height: 45px;
            width: 45px;
            margin-right: 12px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            transform-origin: center;
        }
        
        .brand-logo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        
        .brand-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin: 0;
            position: relative;
            color: var(--nav-text);
        }
        
        .brand-subtitle {
            font-family: 'Dancing Script', cursive;
            font-size: 1rem;
            color: var(--primary);
            margin-top: 2px;
        }
        
        .navbar-brand-creative:hover .logo-container {
            transform: scale(1.1) rotate(10deg);
        }
        
        /* Navigation Menu */
        .nav-menu-creative {
            display: flex;
            align-items: center;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            height: 100%;
        }
        
        .nav-item-creative {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .nav-link-creative {
            padding: 0 1rem;
            font-weight: 500;
            color: var(--nav-text);
            text-decoration: none;
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .nav-link-creative::before {
            content: '';
            position: absolute;
            bottom: 25%;
            left: 1rem;
            width: 6px;
            height: 6px;
            background-color: var(--nav-highlight);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
        }
        
        .nav-link-creative:hover,
        .nav-link-creative.active {
            color: var(--nav-highlight);
        }
        
        .nav-link-creative:hover::before,
        .nav-link-creative.active::before {
            opacity: 1;
            transform: scale(1);
        }
        
        .nav-link-creative::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--nav-highlight) 50%, transparent 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .nav-link-creative:hover::after,
        .nav-link-creative.active::after {
            transform: scaleX(1);
        }
        
        /* Mobile Navigation - Opens from the RIGHT */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--nav-text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1031;
            padding: 0.5rem;
        }
        
        .menu-toggle:hover {
            color: var(--nav-highlight);
        }
        
        /* Decorative Elements */
        .header-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--primary) 15%, 
                var(--accent) 30%, 
                var(--secondary) 50%,
                var(--accent) 70%,
                var(--primary) 85%,
                transparent 100%);
        }
        
        /* Page Header */
        .page-header {
            padding-top: calc(var(--header-height) + 3rem);
            background: var(--bg-gradient-1);
            color: white;
            padding-bottom: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            width: 100%;
        }
        
        .page-header h1 {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 700;
        }
        
        /* Amenity-specific styles from original CSS */
        /* Amenity Cards */
        .amenity-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            margin-bottom: 30px;
            text-align: center;
            padding: 2rem;
            background-color: var(--light);
        }
        
        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .amenity-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .amenity-card h4 {
            margin-bottom: 1rem;
        }
        
        /* Feature Box */
        .feature-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: rgba(255, 30, 141, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .feature-content {
            flex-grow: 1;
        }
        
        .feature-content h5 {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        /* Category Headers */
        .category-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .category-header h2 {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 30px;
            font-size: 1.8rem;
        }
        
        /* Testimonials */
        .testimonial {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            position: relative;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .testimonial::before {
            content: '\201C';
            font-size: 5rem;
            font-family: 'Playfair Display', serif;
            position: absolute;
            top: -1rem;
            left: 1rem;
            color: var(--primary);
            opacity: 0.2;
        }
        
        /* What to Bring */
        .what-to-bring {
            background-color: var(--light);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 3rem;
        }
        
        .what-to-bring h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .what-to-bring-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .what-to-bring-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 30, 141, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .what-to-bring-content {
            flex-grow: 1;
        }
        
        .what-to-bring-content h5 {
            margin-bottom: 0.25rem;
            font-weight: 600;
        }
        
        /* Breadcrumbs */
        .breadcrumb {
            background: transparent;
            padding: 0.5rem 0;
            margin-bottom: 2rem;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--text-dark);
        }
        
        /* Sections */
        .section {
            padding: 3rem 0;
            width: 100%;
            overflow: hidden;
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
        }
        
        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255, 30, 141, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s infinite linear;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* Call Button */
        .call-now-btn {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .call-now-btn:hover {
            background-color: var(--primary);
            transform: scale(1.1);
        }
        
        /* Contact Tooltip */
        .contact-buttons-tooltip {
            position: fixed;
            bottom: 160px;
            right: 25px;
            background-color: white;
            color: var(--text-dark);
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .contact-buttons-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Image lazy loading */
        .lazy-load {
            opacity: 0;
            transition: opacity 1s;
        }
        
        .lazy-loaded {
            opacity: 1;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
            margin-top: 3rem;
        }
        
        footer a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: var(--accent);
        }
        
        footer h5 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        footer ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        footer ul li {
            margin-bottom: 0.5rem;
        }
        
        /* Social Icons */
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            margin-right: 0.5rem;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Button styles */
        .btn-primary {
            background: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-primary:hover {
            background: #d83a7c;
            border-color: #d83a7c;
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline-primary:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu-creative {
                position: fixed;
                top: var(--header-height);
                right: -280px; /* Start from right */
                width: 270px;
                height: calc(100vh - var(--header-height));
                background: var(--header-bg);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                padding: 2rem;
                overflow-y: auto;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); /* Shadow on left side */
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                flex-direction: column;
                align-items: flex-start;
                z-index: 1030;
            }
            
            .nav-menu-creative.active {
                right: 0; /* Move to visible area from right */
            }
            
            .nav-list {
                flex-direction: column;
                width: 100%;
                height: auto;
            }
            
            .nav-item-creative {
                width: 100%;
                height: auto;
                margin: 0.5rem 0;
            }
            
            .nav-link-creative {
                width: 100%;
                padding: 0.8rem 0;
                height: auto;
            }
            
            .nav-link-creative::before {
                left: -15px;
                bottom: auto;
                top: 50%;
                transform: translateY(-50%) scale(0);
            }
            
            .nav-link-creative:hover::before,
            .nav-link-creative.active::before {
                transform: translateY(-50%) scale(1);
            }
            
            .nav-link-creative::after {
                display: none;
            }
            
            .amenity-card {
                padding: 1.5rem;
            }
            
            .amenity-card i {
                font-size: 2.5rem;
            }
            
            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
                margin-right: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 2rem 0;
            }
            
            .page-header {
                padding-top: calc(var(--header-height) + 2rem);
            }
            
            .amenity-card {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            :root {
                --header-height: 60px; /* Smaller on mobile */
            }
            
            .logo-container {
                height: 35px;
                width: 35px;
                margin-right: 8px;
            }
            
            .brand-title {
                font-size: 1.2rem;
            }
            
            .brand-subtitle {
                font-size: 0.8rem;
            }
            
            .page-header {
                padding-top: calc(var(--header-height) + 2rem);
            }
            
            .whatsapp-btn, .call-now-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .call-now-btn {
                bottom: 80px;
            }
            
            .contact-buttons-tooltip {
                bottom: 140px;
            }
            
            .container {
                padding-left: 15px;
                padding-right: 15px;
                max-width: 100%;
                width: 100%;
            }
            
            .row {
                margin-left: -15px;
                margin-right: -15px;
            }
            
            .amenity-card {
                padding: 1.25rem;
            }
            
            .amenity-card i {
                font-size: 2.25rem;
                margin-bottom: 1rem;
            }
            
            .category-header h2 {
                font-size: 1.5rem;
                padding: 0.5rem 1.5rem;
            }
        }