/* Brown Margin Decorative Borders for Book Now Content Box */
.book-now-margin-top {
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.book-now-margin-left {
    position: absolute;
    left: 20px;
    top: 20px;
    width: auto;
    height: calc(100% - 40px);
    z-index: 10;
    pointer-events: none;
}

.book-now-margin-right {
    position: absolute;
    right: 20px;
    top: 20px;
    width: auto;
    height: calc(100% - 40px);
    z-index: 9;
    /* Lower than image wrap */
    pointer-events: none;
}

.book-now-margin-bottom {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    height: auto;
    z-index: 10;
    pointer-events: none;
}

/* ============================================
   BOOK NOW SECTION STYLES
   ============================================ */

.book-now-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 80px 0;
    overflow: visible;
}

.book-now-inner {
    position: relative;
    margin: 0 auto;
    min-height: 284px;
}

/* Background Banner */
.book-now-banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 284px;
    background: #181818;
    z-index: 1;
}

/* White Content Box */
.book-now-content-box {
    position: relative;
    background: #FFFFFF;
    width: 100%;
    max-width: 976px;
    margin: 0 auto;
    padding: 51.289px;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    overflow: visible;
    top: 64px;
}

/* Content Left Side */
.book-now-content-left {
    flex: 0 0 auto;
    max-width: 437px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
}

.book-now-text {
    color: #181818;
    font-family: "General Sans Variable", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Image Right Side */
.book-now-image-wrap {
    position: relative;
    width: 580px;
    height: 246px;
    border: 3.324px solid #FFFFFF;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 11;
    /* Above margin right */
}

.book-now-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Desktop to Tablet: Switch to column at 1200px */
@media (max-width: 1200px) {
    .book-now-section {
        margin: 80px 0 300px;
    }

    .book-now-content-box {
        flex-direction: column;
        align-items: center;
        max-width: 90%;
        padding: 40px 25px 190px;
        gap: 32px;
    }

    .book-now-content-left {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .book-now-image-wrap {
        position: absolute;
        bottom: -130px;
        width: 100%;
        max-width: 500px;
        height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .book-now-section {
        margin: 60px 0 200px;
    }

    .book-now-banner {
        height: 200px;
    }

    .book-now-content-box {
        padding: 30px 25px 125px;
        top: 50px;
        gap: 24px;
    }

    .book-now-text {
        font-size: 18px;
    }

    .book-now-image-wrap {
        position: absolute;
        bottom: -65px;
        width: 100%;
        max-width: 320px;
        height: 160px;
        border: 1px solid #FFFFFF;
    }
}