.booking-cards-section {
    padding: 4rem 0;
    background: var(--gray-50);
}
.booking-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.booking-choice-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    flex: 1 1 300px;
    max-width: 550px;
    min-height: 360px;
    transition: all .3s;
    display: block;
}
.booking-choice-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.booking-choice-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.booking-choice-card:hover img {
    transform: scale(1.08);
}
.booking-choice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--primary) 0%, rgba(10,25,41,.8) 50%, transparent 100%);
}
.booking-choice-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.booking-choice-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.booking-choice-body p {
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

@media screen and (max-width: 991px){
    .booking-choice-card{
        min-height: 290px;
    }
}