.lc-booking-form-wrap {
  max-width: 100%;
}

.lc-booking-form {
  display: flex;
  flex-direction: column;
  /* This gap is the ONLY source of vertical spacing between fields.
     Elementor's responsive "Field Spacing" control overrides this value
     per breakpoint (desktop/tablet/mobile) via a higher-specificity rule
     scoped to this widget instance. No per-field margins exist anymore,
     so spacing is always uniform and fully controllable from one place. */
  gap: 18px;
}

.lc-form-field {
  display: flex;
  flex-direction: column;
}

.lc-form-field.lc-full-width {
  flex-basis: 100%;
}

.lc-form-field label {
  margin-bottom: 6px;
  font-weight: 600;
}

.lc-form-field .lc-required {
  color: #d9534f;
  margin-left: 2px;
}

.lc-booking-form input[type="text"],
.lc-booking-form input[type="email"],
.lc-booking-form input[type="tel"],
.lc-booking-form input[type="date"],
.lc-booking-form input[type="time"],
.lc-booking-form select,
.lc-booking-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
}

.lc-booking-form textarea {
  min-height: 100px;
  resize: vertical;
}

.lc-booking-form .lc-field-error {
  border-color: #d9534f !important;
  background: #fff5f5;
}

.lc-char-count {
  font-size: 12px;
  color: #667085;
  margin-top: 4px;
  text-align: right;
}

.lc-sub-services {
  display: none;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px dashed #d0d5dd;
  border-radius: 8px;
}

.lc-sub-services.is-visible {
  display: block;
}

.lc-sub-services-heading {
  margin: 0 0 10px;
  font-weight: 600;
}

.lc-sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
}

.lc-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.lc-checkbox-item input {
  margin-top: 3px;
}

.lc-consent-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 4px 2px;
}

.lc-consent-group.lc-field-error {
  outline: 1px solid #d9534f;
  outline-offset: 6px;
  border-radius: 4px;
}

.lc-radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.lc-submit-btn {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.lc-submit-btn.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
}

.lc-submit-btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  animation: lc-spin 0.7s linear infinite;
}

@keyframes lc-spin {
  to {
    transform: rotate(360deg);
  }
}

.lc-success-message,
.lc-error-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .lc-submit-btn {
    width: 100%;
  }
}
