html {
    scroll-behavior: smooth;
}

.booking-form {
    width: 100%;
    margin-top: 24px;
    scroll-margin-top: 24px;
}

.booking-form na12-widget {
    display: block;
    width: 100%;
}

.widget-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.widget-modal.is-open {
    display: flex;
}

.widget-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.widget-modal__panel {
    position: relative;
    width: min(1100px, 95vw);
    max-height: 95vh;
    background: transparent;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.widget-modal__close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-light);
    background: var(--color-accent);
    color: var(--color-light);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: background-color 0.15s, transform 0.15s;
}

.widget-modal__close:hover {
    background: var(--color-accent-dark);
    transform: scale(1.05);
}

.widget-modal__frame {
    width: 100%;
    height: 700px;
    min-height: 700px;
    border: 0;
    background: transparent;
}

body.widget-modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .widget-modal__panel {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}
