/* 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%);
        }
        
        /* Hero Section */
        .hero {
            padding-top: var(--header-height);
            width: 100%;
            overflow: hidden;
        }
        
        /* Image optimization */
        .carousel-img {
            height: 85vh;
            object-fit: cover;
            filter: brightness(0.7);
            width: 100%;
        }
        
        .room-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .gallery-img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Design for Header */
        @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;
            }
        }
        
        @media (max-width: 576px) {
            :root {
                --header-height: 60px; /* Even smaller on mobile */
            }
            
            .logo-container {
                height: 35px;
                width: 35px;
                margin-right: 8px;
            }
            
            .brand-title {
                font-size: 1.2rem;
            }
            
            .brand-subtitle {
                font-size: 0.8rem;
            }
            
            .carousel-img {
                height: 70vh;
            }
            
            .room-img {
                height: 180px;
            }
            
            .gallery-img {
                height: 200px;
            }
            
            .section {
                padding: 3rem 0;
            }
        }
        
        /* Sections */
        .section {
            padding: 5rem 0;
            scroll-margin-top: var(--header-height);
            width: 100%;
            overflow: hidden;
        }
        
        .section-title {
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }
        
        /* Cards */
        .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;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Rooms */
        .room-card .card-footer {
            background: transparent;
            border-top: none;
        }
        
        /* Pricing */
        .pricing {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px 0;
            padding: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .testimonial-content {
            position: relative;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .quote-icon {
            color: var(--primary);
            font-size: 24px;
            opacity: 0.3;
            margin-bottom: 15px;
            display: block;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .testimonial-avatar-container {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--primary);
        }
        
        .testimonial-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }
        
        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;
        }
        
        /* 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);
        }
        
        /* 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;
        }
        
        /* Additional mobile fixes */
        @media (max-width: 767px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
                max-width: 100%;
                width: 100%;
            }
            
            .row {
                margin-left: -15px;
                margin-right: -15px;
            }
            
            .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, 
            .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, 
            .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, 
            .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, 
            .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, 
            .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, 
            .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, 
            .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, 
            .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, 
            .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, 
            .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, 
            .col-xl-auto {
                padding-right: 15px;
                padding-left: 15px;
            }
        }