/* ========= TFC Contact Form — underline (stroke-only) style ========= */

/* Optional: control colors + sizes in one place */
.tfc-form--plant-rental{
  --tfc-ink: #141c46;
  --tfc-muted: #141c46;
  --tfc-line: #c36f6c;
  --tfc-line-focus: #141c46;
  --tfc-radius: 0px; /* keep 0 for "only underline" feel */
  --tfc-gap: 18px;
}

/* layout */
.tfc-form--plant-rental .tfc-form__row{
  margin: 0 0 var(--tfc-gap);
}

.tfc-form--plant-rental .tfc-form__row--two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px){
  .tfc-form--plant-rental .tfc-form__row--two{
    grid-template-columns: 1fr;
  }
}

/* labels */
.tfc-form--plant-rental label{
  display: block;
  margin: 0 0 8px;
  color: var(--tfc-muted);
  font-size: 0.95rem;
  line-height: 1.2;
}

/* inputs: underline only */
.tfc-form--plant-rental input[type="text"],
.tfc-form--plant-rental input[type="email"],
.tfc-form--plant-rental input[type="tel"],
.tfc-form--plant-rental input[type="number"],
.tfc-form--plant-rental select,
.tfc-form--plant-rental textarea{
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  color: var(--tfc-ink);

  border: 0;
  border-bottom: 1px solid var(--tfc-line);
  border-radius: var(--tfc-radius);

  padding: 10px 0 10px;
  outline: none;

  font: inherit;
}

/* select arrow (keeps it clean) */
.tfc-form--plant-rental select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  padding-right: 26px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--tfc-muted) 50%),
    linear-gradient(135deg, var(--tfc-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 55%,
    calc(100% - 9px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* textarea sizing */
.tfc-form--plant-rental textarea{
  min-height: 140px;
  resize: vertical;
}

/* focus: stronger underline */
.tfc-form--plant-rental input[type="text"]:focus,
.tfc-form--plant-rental input[type="email"]:focus,
.tfc-form--plant-rental input[type="tel"]:focus,
.tfc-form--plant-rental input[type="number"]:focus,
.tfc-form--plant-rental select:focus,
.tfc-form--plant-rental textarea:focus{
  border-bottom-color: var(--tfc-line-focus);
}

/* placeholders */
.tfc-form--plant-rental ::placeholder{
  color: rgba(17,17,17,.35);
}

/* radios + acceptance keep minimal */
.tfc-form--plant-rental input[type="radio"],
.tfc-form--plant-rental input[type="checkbox"]{
  accent-color: var(--tfc-ink);
}

.tfc-form--plant-rental .tfc-form__privacy{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 4px;
  color: var(--tfc-muted);
  font-size: 0.95rem;
}
.tfc-form--plant-rental .tfc-form__privacy input[type="checkbox"]{
  margin-top: 3px;
}

/* actions + submit: outlined / stroke style */
.tfc-form--plant-rental .tfc-form__actions{
  margin-top: 10px;
}

.tfc-form--plant-rental input[type="submit"],
.tfc-form--plant-rental button,
.tfc-form--plant-rental .wpcf7-submit{
  cursor: pointer;
  background: transparent;
  color: var(--tfc-ink);
  border: 1px solid var(--tfc-line-focus);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  transition: transform .08s ease, background-color .2s ease, border-color .2s ease;
}
.tfc-form--plant-rental input[type="submit"]:hover,
.tfc-form--plant-rental button:hover,
.tfc-form--plant-rental .wpcf7-submit:hover{
  background: rgba(17,17,17,.04);
}
.tfc-form--plant-rental input[type="submit"]:active,
.tfc-form--plant-rental button:active,
.tfc-form--plant-rental .wpcf7-submit:active{
  transform: translateY(1px);
}

/* Contact Form 7 validation underline */
.tfc-form--plant-rental .wpcf7-not-valid{
  border-bottom-color: #c62828;
}
.tfc-form--plant-rental .wpcf7-not-valid-tip{
  margin-top: 6px;
  font-size: .9rem;
}


#quote-form {
  margin-top: 20px;
}