/* ====== Booking Section ====== */
.booking-section {
    --accent: #2A6E83;
    --ink: #D0A066;
    --text: #6B7885;
    --cta: #D0A066;
    --cta-h: #BE8E55;
    --img-br: 10px;
}

.booking-imgwrap {
    position: relative;
    border-radius: var(--img-br);
    overflow: hidden;
    border: 1px solid #E5E9ED;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
    background: #f7f9fa;
    aspect-ratio: 4 / 3;
}

.booking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-imgwrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    filter: drop-shadow(0 2px 0 rgba(0, 0, 0, .05));
}

html[dir="rtl"] .booking-imgwrap::before {
    left: 0;
    border-width: 22px 0 0 22px;
    border-color: transparent transparent transparent #D9E1E5;
    transform: translate(-1px, 1px);
}

html[dir="ltr"] .booking-imgwrap::before {
    right: 0;
    border-width: 22px 22px 0 0;
    border-color: #D9E1E5 transparent transparent transparent;
    transform: translate(1px, 1px);
}

.booking-title {
    color: var(--accent);
    font-weight: 700;
    line-height: 100%;
    font-size: 40px;
    text-align: start;
    left: calc(50% - 260px / 2 + 426px);
}

.title-ink {
    position: relative;
    display: inline-block;
    padding-inline: .25rem;
}


.booking-text {
    color: var(--text);
    margin: 0;
    text-align: start;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;

}

.booking-cta {
    background: var(--cta);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    padding: .65rem 1.25rem;
    border: none;
    border-radius: .45rem;
    text-decoration: none;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .08) inset;
    width: 195px;

}

.booking-cta:hover {
    background: var(--cta-h);
    color: #fff;
}

.booking-title {
    color: var(--accent);
    font-weight: 800;
    line-height: 1.25;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    text-align: start;
}

.ink-wrap {
    position: relative;
    display: inline-block;
    z-index: 0;
    padding-inline: .15rem;
}

.ink-svg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.7em;
    width: 100%;
    height: .70em;
    display: block;
    pointer-events: none;
    z-index: -1;
}

.ink-svg path {
    fill: var(--ink, #D0A066);
}



@media (min-width: 761px) and (max-width: 1024px) {
    .booking-section .booking-title {
        font-size: 36px;
        line-height: 120%;
    }

    .booking-section .booking-text {
        font-size: 17px;
        line-height: 30px;
    }

    .booking-section .booking-cta {
        width: 200px;
        height: 50px;
        font-size: 16px;
    }

    .booking-section .ink-svg {
        bottom: -.58em;
        height: .58em;
    }

    .booking-section .booking-imgwrap {
        aspect-ratio: 16/11;
        --img-br: 10px;
    }
}


@media (max-width: 760px) and (min-width: 569px) {
    .booking-section .booking-title {
        font-size: 32px;
        line-height: 125%;
    }

    .booking-section .booking-text {
        font-size: 16.5px;
        line-height: 28px;
    }

    .booking-section .booking-cta {
        width: 220px;
        height: 48px;
        font-size: 16px;
    }

    .booking-section .ink-svg {
        bottom: -.55em;
        height: .55em;
    }

    .booking-section .booking-imgwrap {
        margin-top: 14px;
        aspect-ratio: 16/11;
    }
}


@media (max-width: 568px) {
    .booking-section .booking-title {
        font-size: 28px;
        line-height: 130%;
    }

    .booking-section .booking-text {
        font-size: 16px;
        line-height: 28px;
    }

    .booking-section .booking-cta {
        width: 100%;
        height: 46px;
        font-size: 15px;
    }

    .booking-section .ink-svg {
        bottom: -.5em;
        height: .5em;
    }

    .booking-section .booking-imgwrap {
        margin-top: 12px;
        aspect-ratio: 16/10;
        --img-br: 8px;
    }

    html[dir="rtl"] .booking-section .booking-imgwrap::before {
        border-width: 16px 0 0 16px;
    }

    html[dir="ltr"] .booking-section .booking-imgwrap::before {
        border-width: 16px 16px 0 0;
    }
}