/* ===============================
   MAYHAWK CONTACT FORM STYLING
=============================== */

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 35px 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: var(--font-body, 'Inter', sans-serif);
}

.contact-form label {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #ccc;
  border-radius: 9px;
  background-color: #fff;
  transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077e0;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.contact-form button[type="submit"],
.contact-form .button-black {
  align-self: start;
  padding: 10px 27px;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-form .button-black:hover {
  background-color: #333;
}

/* ===============================
   INLINE SVG CHALLENGE – INLINE ROW STYLE
=============================== */

.svg-challenge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.svg-challenge-row svg {
  width: 33px;
  height: auto;
  display: inline-block;
  margin-top:-5px;
}

.svg-challenge-questionmark {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  top: -3px; /* nudges the ? up to align visually */
}

/* ============================================
   FORM FEEDBACK – GENTLE FADE-IN MESSAGE
============================================ */

.contact-form-feedback {
  opacity: 0;
  animation: fadeInSoft 0.95s ease-out forwards;
  background-color: #d7f4dc;
  border: 1px solid #b6e5c2;
  padding: 1em 1.25em;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1c472b;
}

@keyframes fadeInSoft {
  to {
    opacity: 1;
  }
}

/* ===============================
   CONTACT FORM FEEDBACK COLOURS
=============================== */

.contact-form-feedback {
  background-color: #e4f5e9;
  border: 1px solid #1a5c2d;
  border-radius: 8px;
  padding: 16px 22px;
  margin: 0 auto 30px;
  max-width: 640px;
  font-size: 1rem;
  color: #222;
}

.contact-form-feedback p {
  margin: 0;
  font-weight: 500;
  color: #1a5c2d;
}

/* ===============================
   EMAIL = OBFUS == CATION 
=============================== */

.email-obfuscated {
  color: #0077e3;
  font-weight: 500;
}

/* ===============================
   HONEY == POT == FIELD
=============================== */

.mayhawk-response {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ===============================
   MOBILE RESPONSIVENESS
=============================== */

@media screen and (max-width: 640px) {
  .contact-form {
    padding-left: 0px;
    padding-right: 35px;
  }

  .contact-form-feedback {
    padding-left: 0px;
    padding-right: 25px;
  }
}



