/* Booking popup */
.booking-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
}

.booking-modal-backdrop.show {
    display: flex;
}

.booking-modal {
    position: relative;
    width: min(460px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 38px 30px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: bookingPopupIn 0.25s ease-out;
}

.booking-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1c453;
    color: #111;
    font-size: 28px;
}

.booking-modal h3 {
    margin-bottom: 10px;
    color: #111;
    font-weight: 700;
}

.booking-modal p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.booking-phone {
    display: inline-block;
    margin-bottom: 22px;
    color: #a9780c;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.booking-phone:hover {
    color: #111;
}

.booking-call-btn {
    display: inline-block;
    background: #f1c453;
    color: #111;
    border: 0;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.booking-call-btn:hover {
    background: #111;
    color: #fff;
}

.booking-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@keyframes bookingPopupIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Form success popup */
.form-success-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100000;
}
.form-success-backdrop.show { display: flex; }
.form-success-modal {
    position: relative;
    width: min(460px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 38px 30px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    animation: formSuccessIn .25s ease-out;
}
.form-success-icon {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #f1c453; color: #111; font-size: 32px;
}
.form-success-modal h3 { margin-bottom: 10px; color: #111; font-weight: 700; }
.form-success-modal p { margin-bottom: 22px; color: #666; line-height: 1.6; }
.form-success-btn {
    border: 0; background: #f1c453; color: #111; padding: 11px 30px;
    border-radius: 30px; font-weight: 600; cursor: pointer;
}
.form-success-btn:hover { background: #111; color: #fff; }
.form-success-close {
    position: absolute; top: 10px; right: 14px; width: 36px; height: 36px;
    border: 0; background: transparent; color: #555; font-size: 28px; line-height: 1; cursor: pointer;
}
@keyframes formSuccessIn { from { opacity: 0; transform: translateY(15px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
