/* Contactformulier — HeRa Finance (UTF-8, geen BOM) */

.contact .contact-form-wrapper h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-form-wrapper h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.hf-contact-intro {
  margin-bottom: 1.25rem;
}

.hf-contact-alt {
  font-size: 14px;
  color: var(--default-color);
}

.hf-form-msg {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 14px;
}

.hf-form-msg--ok {
  color: #1b5e20;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
}

.hf-form-msg--err {
  color: #b71c1c;
  background: #ffebee;
  border: 1px solid #ef9a9a;
}

.contact .contact-form-wrapper .hf-contact-form select.form-control {
  height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .hf-contact-form select.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.hf-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.hf-optional {
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.92em;
}

.hf-captcha {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
}

.hf-captcha__label {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.hf-captcha__question {
  margin: 0 0 0.75rem;
  font-size: 14px;
  color: var(--default-color);
}

.hf-captcha__input {
  max-width: 8rem;
}

.hf-captcha__desc {
  margin: 0.5rem 0 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hf-contact-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hf-contact-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 12%);
  transform: translateY(-2px);
}

.hf-contact-submit.is-busy {
  opacity: 0.85;
  cursor: wait;
}

.hf-contact-submit__busy[hidden],
.hf-contact-submit__label[hidden] {
  display: none !important;
}
