/* ============================================================
   custom-booking-modal.css
   Standalone booking-request modal + form, styled to match the
   site's look (teal accent rgb(97,179,163), light backgrounds).
   Replaces the original Creatium modal (#modal-form), whose
   contents were served dynamically by the page-builder backend
   and are not available in this static copy.
   ============================================================ */

.hb-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.hb-modal-overlay.hb-open {
    display: flex;
}

.hb-modal-box {
    background: #fff;
    border-radius: 6px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px 30px 25px;
    position: relative;
    box-sizing: border-box;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.hb-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hb-modal-close:hover { color: #333; }

.hb-modal-title {
    font-size: 22px;
    text-align: center;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.3;
}

.hb-modal-hr {
    border: none;
    border-top: 1px solid #e6e6e6;
    margin: 18px 0 20px;
}

.hb-field {
    margin-bottom: 16px;
}
.hb-field label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}
.hb-field input[type="text"],
.hb-field input[type="email"],
.hb-field input[type="tel"],
.hb-field input[type="date"],
.hb-field select,
.hb-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #f5f5f5;
    font-size: 15px;
    font-family: inherit;
    color: #333;
}
.hb-field textarea {
    min-height: 70px;
    resize: vertical;
}
.hb-field input:focus,
.hb-field select:focus,
.hb-field textarea:focus {
    outline: none;
    border-color: rgb(97, 179, 163);
    background: #fff;
}

.hb-row3 {
    display: flex;
    gap: 12px;
}
.hb-row3 .hb-field { flex: 1; margin-bottom: 16px; }

.hb-submit-btn {
    width: 100%;
    padding: 14px;
    background: rgb(97, 179, 163);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.hb-submit-btn:hover { background: rgb(81, 160, 145); }
.hb-submit-btn:disabled { opacity: 0.6; cursor: default; }

.hb-status-msg {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
    display: none;
}
.hb-status-msg.hb-success { color: rgb(60, 140, 100); display: block; }
.hb-status-msg.hb-error { color: #c0392b; display: block; }

.hb-honeypot { position: absolute; left: -9999px; top: -9999px; }
