/* Velasquez Auto Spa Booking Form - Frontend */
.vas-booking-wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

.vas-booking-intro {
  margin: 0 0 24px;
  color: #cfcfcf !important;
  font-size: 16px;
  line-height: 1.65;
}

.vas-booking-form,
.vas-booking-form * {
  box-sizing: border-box;
}

.vas-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vas-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vas-field-full,
.vas-preferred-time-field {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

.vas-preferred-time-field select,
#vas_preferred_time {
  width: 100% !important;
}

.vas-field label {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.vas-field label span {
  color: #e0e0e0 !important;
}

.vas-field input,
.vas-field select,
.vas-field textarea {
  width: 100% !important;
  min-height: 48px;
  padding: 13px 14px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  background: #191919;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  outline: none;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vas-field select option {
  color: #ffffff !important;
  background: #191919 !important;
}

.vas-field input:-webkit-autofill,
.vas-field input:-webkit-autofill:hover,
.vas-field input:-webkit-autofill:focus,
.vas-field textarea:-webkit-autofill,
.vas-field textarea:-webkit-autofill:hover,
.vas-field textarea:-webkit-autofill:focus,
.vas-field select:-webkit-autofill,
.vas-field select:-webkit-autofill:hover,
.vas-field select:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  box-shadow: 0 0 0 1000px #191919 inset !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}

.vas-field textarea {
  resize: vertical;
}

.vas-field input:focus,
.vas-field select:focus,
.vas-field textarea:focus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #ffffff;
  background: #1f1f1f;
}

.vas-field select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.vas-field input::placeholder,
.vas-field textarea::placeholder {
  color: rgba(255,255,255,0.48) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.48) !important;
}

.vas-terms-note {
  margin: 18px 0 0;
  color: #cfcfcf !important;
  font-size: 14px;
  line-height: 1.5;
}

.vas-terms-note a {
  color: #ffffff !important;
  text-decoration: underline;
}

.vas-submit-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff !important;
  background: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  padding: 15px 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vas-submit-btn:hover,
.vas-submit-btn:focus,
.vas-submit-btn:active {
  background: #ffffff !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  border-color: #ffffff !important;
}

.vas-submit-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.vas-booking-response {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.vas-booking-response.success {
  color: #9be79b !important;
}

.vas-booking-response.error {
  color: #ff9b9b !important;
}

@media (max-width: 767px) {
  .vas-booking-wrap {
    padding: 0 !important;
  }

  .vas-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vas-submit-btn {
    width: 100% !important;
  }
}
