/* Contact form feedback styles. Additive only — nothing here overrides
   existing layout or .hero__btn appearance. */

.contact-us__form button.hero__btn {
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.contact-us__form button.hero__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-us__form .form-control.is-invalid {
  border-color: #d93025;
}

.contact-us__form .field-error {
  display: none;
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-us__form .field-error.is-visible {
  display: block;
}

.contact-us__form .form-message {
  display: none;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-us__form .form-message--success,
.contact-us__form .form-message--error {
  display: block;
}

.contact-us__form .form-message--success {
  background: #e7f4ec;
  border: 1px solid #b6dfc5;
  color: #14663a;
}

.contact-us__form .form-message--error {
  background: #fdecea;
  border: 1px solid #f5c2bd;
  color: #a3261c;
}

.contact-us__form .form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

