/* Adapt contact form styles - Daybreak Plumbing */
.adapt-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.adapt-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: inherit;
}
.adapt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .adapt-form-row { grid-template-columns: 1fr; }
}
.adapt-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adapt-form-field label {
  font-size: 14px;
  font-weight: 600;
  color: #191919;
}
.adapt-form--hero .adapt-form-field label {
  color: #ffffff;
}
.adapt-form-field input,
.adapt-form-field select,
.adapt-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #191919;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.adapt-form-field input:focus,
.adapt-form-field select:focus,
.adapt-form-field textarea:focus {
  outline: none;
  border-color: #CC202E;
  box-shadow: 0 0 0 3px rgba(204, 32, 46, 0.15);
}
.adapt-form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.adapt-form-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.adapt-form-submit {
  display: inline-block;
  padding: 14px 28px;
  background: #CC202E;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.adapt-form-submit:hover {
  background: #a11820;
}
.adapt-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-message {
  max-width: 640px;
  margin: 12px auto 0;
}
