/* Native contact form (replaces the removed HubSpot embed) */

.native-contact-form {
  margin-top: 1rem;
  /* .row-contact-info pulls the footer up by -5rem; keep clear separation */
  margin-bottom: 11rem;
  font-size: 1rem;
}

.native-contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.native-contact-form label {
  display: block;
  color: #33475b;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.native-contact-form label span {
  color: #e51c23;
}

.native-contact-form input,
.native-contact-form textarea {
  width: 100%;
  background: #f5f8fa;
  border: 1px solid #cbd6e2;
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1.1rem;
  color: #33475b;
  outline: none;
  box-sizing: border-box;
}

.native-contact-form input:focus,
.native-contact-form textarea:focus {
  border-color: #115fa0;
}

.native-contact-form .form-field-message {
  margin-top: 1.6rem;
}

.native-contact-form textarea {
  min-height: 7.2rem;
  resize: vertical;
}

.native-contact-form .form-submit {
  margin-top: 1.8rem;
  background: #14355c;
  color: #fff;
  border: 0;
  border-radius: 3px;
  padding: 1rem 2.4rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.native-contact-form .form-submit:hover {
  background: #115fa0;
}

.native-contact-form .form-submit[disabled] {
  opacity: 0.6;
  cursor: default;
}

.native-contact-form .form-status {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.native-contact-form .form-status.ok {
  color: #1d7a46;
}

.native-contact-form .form-status.fail {
  color: #e51c23;
}

.native-contact-form .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 991px) {
  .native-contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
