.ben-booking-wrap {
    max-width: 760px;
    margin: 32px auto;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.ben-booking-title {
    margin: 0 0 20px;
    line-height: 1.2;
}

.ben-booking-form {
    margin: 0;
}

.ben-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ben-field {
    margin: 0 0 16px;
}

.ben-field label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.ben-field label span {
    color: #b42318;
}

.ben-field input,
.ben-field select,
.ben-field textarea {
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    background: #fff;
    font: inherit;
}

.ben-field textarea {
    min-height: 120px;
    resize: vertical;
}

.ben-submit-row {
    margin: 18px 0 0;
}

.ben-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.ben-submit-button:hover,
.ben-submit-button:focus {
    opacity: 0.86;
}

.ben-booking-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
}

.ben-booking-success {
    border: 1px solid #86efac;
    background: #f0fdf4;
    color: #166534;
}

.ben-booking-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.ben-hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 700px) {
    .ben-booking-wrap {
        padding: 20px;
        margin: 20px auto;
    }

    .ben-field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.ben-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ben-booking-modal.is-open {
    display: flex;
}

.ben-booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.ben-booking-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 18px;
    outline: none;
}

.ben-booking-modal .ben-booking-wrap {
    margin: 0;
    max-width: none;
}

.ben-booking-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.ben-booking-modal__close:hover,
.ben-booking-modal__close:focus {
    opacity: 0.86;
}

body.ben-booking-modal-open {
    overflow: hidden;
}

.ben-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 700px) {
    .ben-booking-modal {
        padding: 12px;
        align-items: flex-start;
    }

    .ben-booking-modal__dialog {
        max-height: calc(100vh - 24px);
    }
}
