/* Booking welcome page */
.booking-welcome-page {
    background: #f6f6f6;
}

.booking-welcome {
    padding: 28px 0 56px;
    margin: 0 15px;
}

.booking-welcome__container {
    max-width: 1320px;
    margin: 0 auto;
}

.booking-welcome__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.2;
}

.booking-welcome__breadcrumbs a,
.booking-welcome__breadcrumbs div {
    color: #8a8a8a;
    text-decoration: none;
}

.booking-welcome__breadcrumbs div {
    color: #ec1213;
    font-weight: 700;
}

.booking-welcome__breadcrumbs span {
    width: 8px;
    height: 8px;
    border-top: 2px solid #ec1213;
    border-right: 2px solid #ec1213;
    transform: rotate(45deg);
}

.booking-welcome__head {
    margin-bottom: 16px;
}

.booking-welcome__title {
    margin: 0;
    color: #111216;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: 0;
}

.booking-welcome__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.booking-welcome-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 288px;
    padding: 14px 48px 14px 14px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 12px;
    background: #f2f4f6;
    color: #ffffff;
    text-decoration: none;
}

.booking-welcome-card:hover,
.booking-welcome-card:focus {
    color: #ffffff;
    text-decoration: none;
}

.booking-welcome-card__image,
.booking-welcome-card__image img,
.booking-welcome-card__overlay {
    position: absolute;
    inset: 0;
}

.booking-welcome-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.35s ease;
}

.booking-welcome-card:hover .booking-welcome-card__image img,
.booking-welcome-card:focus .booking-welcome-card__image img {
    transform: scale(1.04);
}

.booking-welcome-card__overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 18, 24, 0.04) 0%, rgba(15, 18, 24, 0.18) 48%, rgba(15, 18, 24, 0.74) 100%);
}

.booking-welcome-card__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.booking-welcome-card__title {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
}

.booking-welcome-card__action {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ec1213;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.booking-welcome-card__action img {
    object-fit: contain;
}

.booking-welcome-card:hover .booking-welcome-card__action,
.booking-welcome-card:focus .booking-welcome-card__action {
    opacity: 1;
    transform: translateX(0);
}

.booking-welcome-card:hover .booking-welcome-card__action,
.booking-welcome-card:focus .booking-welcome-card__action {
    background: #d70f10;
}

@media (hover: none) {
    .booking-welcome-card__action {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1199px) {
    .booking-welcome__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .booking-welcome {
        padding: 14px 0 36px;
    }

    .booking-welcome__breadcrumbs {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .booking-welcome__head {
        margin-bottom: 24px;
    }

    .booking-welcome__title {
        font-size: 30px;
    }

    .booking-welcome__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-welcome-card {
        min-height: 180px;
    }
}
