/* Contact Form 7 */
.wpcf7 {
  width: 100%;
}
/* Form spacing */
.wpcf7 p {
  margin: 0 0 1.25rem;
}
/* Labels */
.wpcf7 label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color, #333);
}
/* Inputs */
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="url"], .wpcf7 textarea, .wpcf7 select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
/* Textarea */
.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}
/* Focus state */
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  outline: none;
  border-color: #005fcc;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}
/* Placeholder */
.wpcf7 ::placeholder {
  color: #999;
}
/* Submit button */
.wpcf7 input[type="submit"] {
  display: block;
  width: 100%;
  margin: 3rem auto 0;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 999px;
  background: #95C11F;
  color: #333333;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.wpcf7 input[type="submit"]:hover {
  background: #FF7F00;
  color: #fff;
  transition: 0.3s ease-out;
}
.wpcf7 input[type="submit"]:active {
  transform: translateY(1px);
}
/* Validation messages */
.wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #d63638;
}
/* Success / error messages */
.wpcf7-response-output {
  margin: 1.5rem 0 0 !important;
  padding: 1rem !important;
  border-radius: 6px;
}
