body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; }
        
        /* Custom Colors */
        .text-primary-custom { color: #0056b3; }
        .bg-orange-custom { background-color: #ff6600; color: white; }
        .bg-orange-custom:hover { background-color: #e65c00; color: white; }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1400&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            color: white;
        }

        .search-box {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-top: -50px;
        }

        /* Card Styling */
        .room-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .price-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 86, 179, 0.9);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
        }
        .badge-status {
            position: absolute;
            top: 15px;
            right: 15px;
        }