/* A/B Test Hero Section Styles */

/* Error field styling */
.snow-removal-hero__input.error-field {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.snow-removal-hero__input.error-field:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Animation for showing/hiding form container */
.snow-removal-hero__form-container {
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.snow-removal-hero__form-container.hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

/* Button spacing adjustment when no fields */
[data-hero-variant="without_fields"] .button-container {
  margin-top: 32px;
}

[data-hero-variant="with_fields"] .button-container {
  margin-top: 24px;
}
