/* ============================================
   ADAPT FORM — MW Pro Services
   Brand: Primary #009BDC, Secondary #005BA9, Accent #FF8605
   ============================================ */

.adapt-form-wrapper {
  width: 100%;
  max-width: 100%;
}

.adapt-form {
  display: block;
  width: 100%;
  background: transparent;
  font-family: inherit;
  color: #2b2b2b;
}

.adapt-form-legend {
  display: none;
}

.adapt-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.adapt-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  flex: 1 1 100%;
}

.adapt-form-row .adapt-form-field {
  margin-bottom: 0;
}

.adapt-form-field--half {
  flex: 1 1 calc(50% - 7px);
  min-width: 220px;
}

.adapt-form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1f2937;
  margin-bottom: 6px;
  line-height: 1.3;
}

.adapt-required {
  color: #d93025;
  font-weight: 700;
  margin-left: 2px;
}

.adapt-form-field input[type="text"],
.adapt-form-field input[type="tel"],
.adapt-form-field input[type="email"],
.adapt-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.adapt-form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.adapt-form-field input:focus,
.adapt-form-field textarea:focus {
  outline: none;
  border-color: #009BDC;
  box-shadow: 0 0 0 3px rgba(0, 155, 220, 0.18);
}

.adapt-form-field input:user-invalid,
.adapt-form-field textarea:user-invalid {
  border-color: #d93025;
}

.adapt-form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.adapt-form-submit {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: #FF8605;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 6px;
}

.adapt-form-submit:hover,
.adapt-form-submit:focus {
  background: #e57704;
  outline: none;
}

.adapt-form-submit:active {
  transform: translateY(1px);
}

.adapt-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-message {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .adapt-form-field--half {
    flex: 1 1 100%;
  }
  .adapt-form-row {
    gap: 0;
  }
  .adapt-form-row .adapt-form-field {
    margin-bottom: 14px;
  }
}

/* ============================================
   THANK-YOU PAGE
   ============================================ */
.adapt-thankyou {
  max-width: 720px;
  margin: 80px auto;
  padding: 48px 32px;
  text-align: center;
  font-family: inherit;
}

.adapt-thankyou h1 {
  color: #005BA9;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.adapt-thankyou p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.adapt-thankyou-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #FF8605;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.adapt-thankyou-cta:hover {
  background: #e57704;
  color: #fff;
}

.adapt-thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #009BDC;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
