.contact-form-alert {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--red-color);
  background: rgba(228, 25, 22, 0.08);
  color: var(--gray-color-500);
}

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

.contact-form-help {
  display: block;
  margin-top: 6px;
  color: var(--accent-color);
  font-size: 13px;
}

.contact-success-modal .modal-content {
  width: min(92vw, 560px);
  padding: 32px;
  border: 0;
  border-radius: 0;
  background: var(--white-color);
}

.contact-success-modal .modal-title {
  font-weight: 700;
  text-transform: uppercase;
}

.contact-success-modal .modal-body {
  text-align: left;
}

.contact-success-modal .btn {
  border-radius: 0;
}

.contact-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
}

.contact-loading-overlay[hidden] {
  display: none;
}

.contact-loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  text-align: center;
  color: var(--gray-color-500);
}

.contact-loading-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(4, 115, 191, 0.22);
  border-top-color: var(--blue-color);
  border-radius: 50%;
  animation: contact-loading-spin 0.8s linear infinite;
}

.contact-loading-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

@keyframes contact-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
