 .rooms-hero {
            height: 70vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                        url('../images/room1.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .rooms-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .rooms-hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .hero-stats {
            display: flex;
            gap: 60px;
            justify-content: center;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
        }

        .stat h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
            color: #ffd700;
        }

        .stat p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .room-categories {
            padding: 100px 20px;
            background: white;
        }

        .room-categories h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
            font-weight: 700;
        }

        .room-categories p {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .category-card:hover {
            background: white;
            border-color: #007bff;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #007bff, #0056b3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.1);
        }

        .category-icon i {
            font-size: 2rem;
            color: white;
        }

        .category-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        .category-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .category-price {
            color: #007bff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .category-btn {
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-btn:hover {
            background: linear-gradient(45deg, #20c997, #17a2b8);
            transform: translateY(-2px);
        }

        .rooms-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .rooms-header h2 {
            font-size: 2.2rem;
            color: #333;
            font-weight: 700;
        }

        .room-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 40px;
        }

        .room-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .room-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .room-item:hover .room-image img {
            transform: scale(1.05);
        }

        .room-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: white;
        }

        .room-badge.premium { background: linear-gradient(45deg, #007bff, #0056b3); }
        .room-badge.luxury { background: linear-gradient(45deg, #6f42c1, #5a2d91); }
        .room-badge.popular { background: linear-gradient(45deg, #28a745, #20c997); }
        .room-badge.budget { background: linear-gradient(45deg, #ffc107, #e0a800); }
        .room-badge.exclusive { background: linear-gradient(45deg, #dc3545, #c82333); }
        .room-badge.cozy { background: linear-gradient(45deg, #fd7e14, #e55a00); }

        .room-gallery-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .room-gallery-btn:hover {
            background: rgba(0, 123, 255, 0.9);
        }

        .room-details {
            padding: 30px;
        }

        .room-header {
            margin-bottom: 20px;
        }

        .room-header h3 {
            font-size: 1.6rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .room-rating {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #ffd700;
            font-size: 1.1rem;
        }

        .rating-score {
            background: #007bff;
            color: white;
            padding: 4px 8px;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .rating-count {
            color: #666;
            font-size: 0.9rem;
        }

        .room-specs {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .room-specs span {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 0.9rem;
            background: #f8f9fa;
            padding: 5px 10px;
            border-radius: 15px;
        }

        .room-specs i {
            color: #007bff;
        }

        .room-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .room-amenities {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .room-amenities span {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 0.85rem;
            background: #f8f9fa;
            padding: 6px 12px;
            border-radius: 15px;
        }

        .room-amenities i {
            color: #007bff;
        }

        .room-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .room-price {
            text-align: left;
        }

        .price-amount {
            font-size: 2rem;
            color: #007bff;
            font-weight: 700;
        }

        .price-unit {
            color: #666;
            font-size: 0.9rem;
        }

        .price-note {
            color: #999;
            font-size: 0.8rem;
            margin-top: 5px;
        }

        .room-actions {
            display: flex;
            gap: 15px;
        }

        .btn-secondary {
            background: white;
            color: #007bff;
            border: 2px solid #007bff;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-secondary:hover {
            background: #007bff;
            color: white;
        }

        .btn-primary {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #0056b3, #004085);
            transform: translateY(-2px);
        }

        .load-more-section {
            text-align: center;
            margin-top: 60px;
        }

        .load-more-btn {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .load-more-btn:hover {
            background: linear-gradient(45deg, #0056b3, #004085);
            transform: translateY(-2px);
        }

        .load-more-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .results-info {
            color: #666;
            font-size: 0.9rem;
        }

        .room-features-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .room-features-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #333;
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #007bff, #0056b3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: transform 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        .feature-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Room Modal Styles */
        .room-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            border-bottom: 1px solid #eee;
        }

        .modal-header h2 {
            font-size: 1.8rem;
            color: #333;
            margin: 0;
            font-weight: 600;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 10px;
            border-radius: 50%;
        }

        .modal-close:hover {
            color: #333;
            background: #f0f0f0;
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 30px;
        }

        .modal-gallery {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .main-image {
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail-images {
            display: flex;
            gap: 10px;
        }

        .thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .thumbnail:hover,
        .thumbnail.active {
            border-color: #007bff;
            transform: scale(1.05);
        }

        .modal-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .modal-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #f8f9fa;
            padding: 8px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            color: #666;
        }

        .spec-item i {
            color: #007bff;
        }

        .modal-description p {
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        .modal-amenities h4 {
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .amenities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .amenity-item {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #f8f9fa;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 0.85rem;
            color: #666;
        }

        .amenity-item i {
            color: #007bff;
        }

        .modal-booking {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .modal-price .price {
            font-size: 2rem;
            color: #007bff;
            font-weight: 700;
        }

        .modal-price .unit {
            color: #666;
            font-size: 0.9rem;
        }

        .modal-book-btn {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal-book-btn:hover {
            background: linear-gradient(45deg, #0056b3, #004085);
            transform: translateY(-2px);
        }

        .no-results-message {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 40px 0;
        }

        .no-results-content i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-results-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }

        .no-results-content p {
            color: #666;
            margin-bottom: 25px;
        }

        .clear-filters-btn {
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .clear-filters-btn:hover {
            background: linear-gradient(45deg, #20c997, #17a2b8);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .modal-body {
                grid-template-columns: 1fr;
            }
            
            .rooms-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .room-footer {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .rooms-hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .room-specs {
                justify-content: center;
            }

            .room-amenities {
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                margin: 10px;
                max-height: 95vh;
            }

            .modal-body {
                padding: 20px;
                gap: 20px;
            }

            .modal-booking {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .rooms-hero-content h1 {
                font-size: 2rem;
            }

            .rooms-hero-content p {
                font-size: 1.1rem;
            }

            .room-categories,
            .room-features-section {
                padding: 60px 15px;
            }

            .rooms-grid {
                padding: 60px 15px;
            }

            .room-details {
                padding: 20px;
            }

            .room-header h3 {
                font-size: 1.4rem;
            }

            .room-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn-secondary,
            .btn-primary {
                width: 100%;
                text-align: center;
            }

            .feature-item {
                padding: 30px 20px;
            }
        }