.ndl-contact-wrap {
  --ndl-navy: #13283f;
  --ndl-blue: #1e73be;
  --ndl-blue-dark: #155b98;
  --ndl-text: #25364a;
  --ndl-muted: #65758a;
  --ndl-border: #d9e2ec;
  --ndl-surface: #ffffff;
  --ndl-soft: #f5f8fb;
  max-width: 100%;
  margin: 0;
  color: var(--ndl-text);
}

.ndl-contact-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ndl-contact-heading {
  margin-bottom: 1.75rem;
}

.ndl-contact-heading h2 {
  margin: 0 0 0.45rem;
  color: var(--ndl-navy);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}

.ndl-contact-heading p {
  margin: 0;
  color: var(--ndl-muted);
}

.ndl-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ndl-field-full {
  grid-column: 1 / -1;
}

.ndl-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ndl-navy);
  font-size: 0.95rem;
  font-weight: 650;
}

.ndl-field label span {
  color: #b42318;
}

.ndl-field input,
.ndl-field textarea {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--ndl-border);
  border-radius: 8px;
  background: var(--ndl-soft);
  color: var(--ndl-text);
  font: inherit;
  line-height: 1.45;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.ndl-field textarea {
  min-height: 170px;
  resize: vertical;
}

.ndl-field input:focus,
.ndl-field textarea:focus {
  outline: none;
  border-color: var(--ndl-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.16);
}

.ndl-field-help {
  display: block;
  margin-top: 0.4rem;
  color: var(--ndl-muted);
  font-size: 0.82rem;
}

.ndl-recaptcha {
  margin: 1.35rem 0 1.2rem;
  overflow-x: auto;
}

.ndl-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.35rem;
  border: 0;
  border-radius: 8px;
  background: var(--ndl-blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.ndl-submit:hover,
.ndl-submit:focus-visible {
  background: var(--ndl-blue-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(30, 115, 190, 0.2);
}

.ndl-submit:focus-visible {
  outline: 3px solid rgba(30, 115, 190, 0.28);
  outline-offset: 3px;
}

.ndl-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.ndl-notice {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
}

.ndl-notice-success {
  border-color: #86c7a5;
  background: #edf9f2;
  color: #17663b;
}

.ndl-notice-error {
  border-color: #efa3a3;
  background: #fff3f3;
  color: #912018;
}

.ndl-notice-warning {
  border-color: #f1ca72;
  background: #fff9e8;
  color: #72520d;
}

.ndl-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 620px) {
  .ndl-contact-grid {
    grid-template-columns: 1fr;
  }

  .ndl-field-full {
    grid-column: auto;
  }

  .ndl-submit {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ndl-field input,
  .ndl-field textarea,
  .ndl-submit {
    transition: none;
  }
}
