/* Közös stílusok az időpontfoglaló és kapcsolatfelvételi űrlapokhoz */
.booking-form-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 35px;
}
.booking-form-wrap label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}
.booking-form-wrap .required::after {
    content: " *";
    color: #ff6600;
}
.booking-form-wrap select.form-control {
    appearance: auto;
}
.booking-form-wrap .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.booking-form-wrap .form-check input {
    margin-top: 4px;
}
.booking-form-wrap .form-check label {
    font-weight: 400;
    font-size: 13px;
    margin: 0;
}
.error_input {
    border-color: #ff6600 !important;
    background: rgba(255,102,0,.05) !important;
}
#booking_success, #booking_fail,
#contact_success, #contact_fail {
    display: none;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}
#booking_success, #contact_success {
    background: #e6f7ee;
    color: #167a45;
    border: 1px solid #b7ebce;
}
#booking_fail, #contact_fail {
    background: #fdeceb;
    color: #b23a2f;
    border: 1px solid #f6c8c3;
}
.trust-panel {
    background: linear-gradient(135deg, #0099cc, #0b5f74);
    color: #fff;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
}
.trust-panel h3 { color: #fff; }
.trust-panel ul { list-style: none; padding: 0; margin: 0 0 25px; }
.trust-panel ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.trust-panel ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: bold;
    color: #ffd280;
}
.trust-panel .phone-big {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: #ff6600;
    padding: 14px 18px;
    border-radius: 8px;
    text-align: center;
}
.trust-panel .phone-big:hover { background: #ff8533; text-decoration: none; color: #fff; }
.submit-btn {
    background: #ff6600;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s;
}
.submit-btn:hover { background: #ff8533; }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }
