/* WhatsApp modal form + small helpers */

.wa-form-wrap {
  padding: 4px 0 0;
  text-align: center;
}

.wa-form-title {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #15192D;
  text-align: left;
}

.wa-form-subtitle {
  margin: 0 0 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3C5BE8;
  line-height: 1.4;
  text-align: left;
}

.wa-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wa-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.wa-field label,
.wa-field-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(21, 25, 45, 0.7);
  text-align: left;
}

.wa-field input[type="text"],
.wa-field input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #15192D;
  background: #fff;
  border: 1.5px solid rgba(21, 25, 45, 0.16);
  border-radius: 10px;
  outline: none;
}

.wa-field input:focus {
  border-color: #3C5BE8;
  box-shadow: 0 0 0 3px rgba(60, 91, 232, 0.15);
}

.wa-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wa-option {
  position: relative;
  cursor: pointer;
}

.wa-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wa-option span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(21, 25, 45, 0.75);
  background: #fff;
  border: 1.5px solid rgba(21, 25, 45, 0.16);
  border-radius: 999px;
  transition: all 0.15s ease;
  user-select: none;
}

.wa-option input[type="radio"]:checked + span {
  background: #3C5BE8;
  border-color: #3C5BE8;
  color: #E6E6E6;
}

.wa-submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #25D366;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.wa-submit:hover {
  background: #1EBE5A;
}

@media (max-width: 600px) {
  .wa-options {
    flex-direction: column;
  }
  .wa-option span {
    width: 100%;
    justify-content: center;
  }
}
