/* Contact Form 7 Base Styling */
.wpcf7 form p {
  margin-bottom: 1rem;
}

/* Inputs & Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.6rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Textarea specific */
.wpcf7 textarea {
  resize: vertical; /* user can expand if needed */
}

/* Section-based variants */
.bg-white .wpcf7 input,
.bg-white .wpcf7 select,
.bg-white .wpcf7 textarea {
  border: 1px solid var(--lightest-green);
  background-color: #fff;
}

.bg-lightest-green .wpcf7 input,
.bg-lightest-green .wpcf7 select,
.bg-lightest-green .wpcf7 textarea {
  border: 1px solid #fff;
  background-color: var(--lightest-green);
}

/* Focus glow effect */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--dark-green);
  box-shadow: 0 0 8px rgba(0, 100, 0, 0.25);
}

/* Submit button */
.wpcf7 input.wpcf7-submit {
  background-color: var(--dark-green);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7 input.wpcf7-submit:hover,
.wpcf7 input.wpcf7-submit:focus {
  background-color: #084c3a;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
