.luxury-room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
     box-shadow: 0 2px 8px #0B3A7E;
    margin-bottom: 30px;
    position: relative;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: bold;
    color: #E03B3B;
    z-index: 1;
}

.room-thumb {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.room-content {
    padding: 25px;
}

.room-category {
    color: #E03B3B;
    font-size: 14px;
    margin-bottom: 10px;
}

.room-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.room-title a {
    color: #333;
    text-decoration: none;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.room-contact {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E03B3B;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.book-now-btn:hover {
    background: #c62828;
    color: #fff;
}

/* RTL Specific Styles */
.luxury-room-card[dir="rtl"] .price-tag {
    right: auto;
    left: 20px;
}

.luxury-room-card[dir="rtl"] .book-now-btn i {
    transform: rotate(180deg);
}
