:root {
            --primary: #FFFFFF;
            --secondary: #9B2239;
            --accent: #64748B;
            --light: #F8FAFC;
            --white: #FFFFFF;
            --gold: #D4AF37;
            --dark-bg: #FFFFFF;
            --card-bg: #F8FAFC;
            --text-primary: #1F2937;
            --text-secondary: #4B5563;
            --border-color: #E5E7EB;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--primary);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: #9B2239;
        }

        .text-white {
            color: var(--white);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: #9B2239;
            border-radius: 5px;
        }
        
        /* Glass Effect - Updated for light theme */
        .glass-effect {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        /* Gradient Text */
        .gradient-text {
            background: #9B2239;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes slideIn {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .slide-up {
            animation: slideIn 0.8s ease-out forwards;
        }
        
        /* Button Styles */
        .btn-primary {
            background: #9B2239;
            color: var(--white);
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(155, 34, 57, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            background: #8a1c31;
            box-shadow: 0 15px 30px rgba(155, 34, 57, 0.4);
        }
        
        .btn-outline {
            border: 2px solid #9B2239;
            color: #9B2239;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
            cursor: pointer;
        }
        
        .btn-outline:hover {
            background: rgba(155, 34, 57, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(155, 34, 57, 0.2);
        }
        
        /* Banner headings - keep original colors */
        .banner h1,
        .banner h2,
        .banner h3,
        .banner h4,
        .banner h5,
        .banner h6,
        .hero h1,
        .hero h2,
        .hero h3,
        .hero h4,
        .hero h5,
        .hero h6,
        section[class*="hero"] h1,
        section[class*="hero"] h2,
        section[class*="hero"] h3,
        section[class*="hero"] h4,
        section[class*="hero"] h5,
        section[class*="hero"] h6 {
            color: var(--text-primary) !important;
        }

        /* Typography Scale */
        .text-hero {
            font-size: clamp(2rem, 3vw, 2rem);
            line-height: 1.1;
            color: #9B2239;
        }
        
        .text-section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.2;
            color: #9B2239;
        }
        
        .text-card-title {
            font-size: 1.5rem;
            line-height: 1.3;
            color: #9B2239;
        }
        
        .text-body {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }
        
        .text-small {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--text-secondary);
        }
        
        /* Image Zoom Effect */
        .image-zoom {
            overflow: hidden;
            border-radius: 12px;
        }
        
        .image-zoom img {
            transition: transform 0.8s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-zoom:hover img {
            transform: scale(1.1);
        }
        
        /* Feature Tag */
        .feature-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(155, 34, 57, 0.1);
            border-radius: 50px;
            font-size: 0.875rem;
            color: #9B2239;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        /* Room Feature Tag */
        .room-feature-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(155, 34, 57, 0.1);
            border-radius: 50px;
            font-size: 0.875rem;
            color: #9B2239;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        /* Loading Animation */
        .loading-dot {
            width: 10px;
            height: 10px;
            background: #9B2239;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            animation: loading 1.4s infinite ease-in-out both;
        }
        
        .loading-dot:nth-child(1) { animation-delay: -0.32s; }
        .loading-dot:nth-child(2) { animation-delay: -0.16s; }
        
        @keyframes loading {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }
        
        /* Page Transition */
        .page-transition {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        .page-transition.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Active Page Indicator */
        .active-page {
            color: #9B2239 !important;
            position: relative;
        }
        
        .active-page::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #9B2239;
        }
        
        /* Card Hover Effect */
        .card-hover {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Spacing */
        .section-padding {
            padding: 80px 0;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .text-hero {
                font-size: clamp(2rem, 6vw, 3rem);
            }
            
            .text-section-title {
                font-size: clamp(1.75rem, 5vw, 2.5rem);
            }
        }

        /* Utility Classes */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Navigation Styles - Light Theme */
        nav {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
        }

        nav a {
            color: var(--text-primary) !important;
        }

        nav a:hover {
            color: #9B2239 !important;
        }

        /* Loading Screen - Light Theme */
        #loading {
            background: var(--primary) !important;
        }

        #loading p {
            color: #9B2239 !important;
        }

        /* Footer - Light Theme */
        footer {
            background: var(--card-bg) !important;
            border-top: 1px solid var(--border-color);
            color: var(--text-primary);
        }

        footer a {
            color: var(--text-secondary);
        }

        footer a:hover {
            color: #9B2239;
        }

        /* Forms - Light Theme */
        input, textarea, select {
            background: var(--white) !important;
            border: 1px solid var(--border-color) !important;
            color: var(--text-primary) !important;
        }

        input:focus, textarea:focus, select:focus {
            border-color: #9B2239 !important;
            outline: none;
        }

        input::placeholder, textarea::placeholder {
            color: var(--text-secondary) !important;
        }

        /* Modal - Light Theme */
        .modal-content {
            background: var(--white) !important;
            color: var(--text-primary);
        }

        /* Rating System - Light Theme */
        .gr-dark-wrap,
        .hs-dark-wrap,
        .fac-dark-wrap,
        .hr-dark-wrap {
            background-color: var(--white) !important;
            color: var(--text-primary) !important;
            border: 1px solid var(--border-color);
        }

        .gr-dark-title,
        .hs-dark-top h2,
        .fac-dark-top h2,
        .hr-dark-top h2 {
            color: #9B2239 !important;
        }

        .gr-dark-text,
        .hs-col li span,
        .fac-col li,
        .hr-value {
            color: var(--text-secondary) !important;
        }

        .gr-dark-btn,
        .hs-btn,
        .fac-btn,
        .hr-btn {
            background: #9B2239 !important;
            color: var(--white) !important;
        }

        /* Override dark theme text colors */
        .text-white,
        .text-accent,
        .text-body,
        .text-small {
            color: var(--text-primary) !important;
        }

        .text-accent {
            color: var(--text-secondary) !important;
        }

        /* Card backgrounds for light theme */
        .bg-card-bg {
            background: var(--card-bg) !important;
            border: 1px solid var(--border-color) !important;
        }

        .bg-dark-bg {
            background: var(--white) !important;
        }

        /* Primary background */
        .bg-primary {
            background: var(--primary) !important;
        }

        /* Secondary text colors */
        .text-secondary {
            color: #9B2239 !important;
        }

        .text-gold {
            color: var(--gold) !important;
        }

        /* Border colors */
        .border-accent\/10 {
            border-color: var(--border-color) !important;
        }

        .border-white\/10 {
            border-color: var(--border-color) !important;
        }

        .border-white\/5 {
            border-color: var(--border-color) !important;
        }
