       :root {
            --primary: #FF7A00;
            --primary-dark: #E66E00;
            --secondary: #2D3436;
            --accent: #FFD700;
            --bg-light: #F9FAFB;
            --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-light);
            color: var(--secondary);
            scroll-behavior: smooth;
        }

        h1, h2, h3, .font-serif {
            font-family: 'Playfair Display', serif;
        }

        .glass {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .hotel-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hotel-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #FF4D00);
            color: white;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            box-shadow: 0 10px 20px -5px rgba(255, 122, 0, 0.4);
            transform: scale(1.02);
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-fade {
            animation: fadeIn 0.6s ease forwards;
        }

        .badge-best-value {
            background: linear-gradient(90deg, #00b894, #00cec9);
            color: white;
        }

        .star-rating {
            color: #FFD700;
        }

        #hotelModal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(4px);
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .seo-hidden {
            display: none;
        }
        
        .blog-content-wrapper p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #4A5568;
        }
        .blog-content-wrapper h2 {
            margin-top: 2.5rem;
            margin-bottom: 1.25rem;
            color: #1A202C;
            font-weight: 800;
        }
        .blog-content-wrapper h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #2D3748;
            font-weight: 700;
        }
        .faq-item-expanded {
            background-color: white;
            border: 1px solid #E2E8F0;
            border-radius: 1rem;
            margin-bottom: 1rem;
        }
        .seloo{
            color: blue;
        border:1px solid black;
            
            
        }
        