
/* Book In Banner */
.book-in-banner {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.book-in-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    padding: 24px 40px;
}

.book-in-banner-heading {
    color: #fff !important;
    font-family: 'Urbanist', sans-serif !important;
    font-size: 3.25rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
}

.book-in-banner-button {
    display: inline-block;
    flex-shrink: 0;
    background: #fff;
    color: #191716 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem !important;
    white-space: nowrap;
}

/* Responsive - stack heading above button on mobile */
@media (max-width: 768px) {
    .book-in-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
