/* Footer contact form — matches the site's dark theme */
html { scroll-behavior: smooth; }

#contact-form.ca-contact {
  background: #0c0c0c;
  border-top: 1px solid #222;
  padding: 55px 20px 65px;
  text-align: center;
  scroll-margin-top: 20px;
}
#contact-form .ca-inner { max-width: 640px; margin: 0 auto; text-align: left; }
#contact-form .ca-contact-title {
  font-family: "Oxygen", sans-serif;
  letter-spacing: 5px;
  color: #17481d;
  font-size: 33px;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 8px;
}
#contact-form .ca-contact-sub {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  color: #d5d5d5;
  font-size: 15px;
  text-align: center;
  margin: 0 0 30px;
}
#contact-form label {
  display: block;
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 0 0 6px;
}
#contact-form .ca-field { margin: 0 0 20px; }
#contact-form input,
#contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 3px;
  color: #f0f0f0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  letter-spacing: .5px;
  padding: 12px 14px;
  transition: border-color .15s ease;
}
#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #4cc9a4;
}
#contact-form textarea { min-height: 140px; resize: vertical; }
#contact-form .ca-actions { text-align: center; margin-top: 6px; }
#contact-form button {
  font-family: "Oxygen", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 15px;
  color: #faf6f6;
  background: #a82e2e;
  border: none;
  border-radius: 3px;
  padding: 13px 42px;
  cursor: pointer;
  transition: background .15s ease;
}
#contact-form button:hover { background: #4cc9a4; }
#contact-form button:disabled { opacity: .55; cursor: default; }
#contact-form .ca-status {
  font-family: "Raleway", sans-serif;
  letter-spacing: 1px;
  font-size: 15px;
  text-align: center;
  min-height: 22px;
  margin: 18px 0 0;
}
#contact-form .ca-status.ok  { color: #4cc9a4; }
#contact-form .ca-status.err { color: #c23b3b; }
/* honeypot — visually hidden, off-screen, not display:none (bots skip display:none) */
#contact-form .ca-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
