/* Honeypot. Positioned off-screen rather than display:none, because some bots
   skip fields that are explicitly hidden. Real visitors never see or tab into
   these; anything that fills them in is automated. */
.hld-hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Validation feedback */
#getQuoteForm .form-control.is-invalid,
#getQuoteForm .form-control.hld-invalid {
    border-color: #dc3545;
}

#getQuoteForm .help-block.hld-error {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.hld-form-error {
    display: none;
    margin: 1rem 0;
    padding: 0.75rem 1.25rem;
    border: 1px solid #f5c6cb;
    border-radius: 0.25rem;
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
}

.hld-form-error.is-visible {
    display: block;
}

.hld-captcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}
