
/* Card container */
.form-card {
  background: #111;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Section labels */
.section-label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Inputs */
.form-input {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder {
  color: #555;
}
.form-input:focus {
  border-color: #67C269;
}
.form-input.invalid {
  border-color: #ef4444 !important;
}

/* Select */
.form-select {
  appearance: auto;
  cursor: pointer;
}
.form-select option {
  background: #1a1a1a;
  color: #fff;
}

/* Service cards */
.service-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.service-card:hover {
  border-color: rgba(103,194,105,0.4);
}
.service-card.active {
  border-color: #67C269;
  background: rgba(103,194,105,0.08);
}
.card-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  transition: filter 0.2s;
}
.service-card.active .card-emoji {
  filter: hue-rotate(0deg) saturate(2) brightness(1.2);
}
.card-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.card-subtitle {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}

/* Slider box */
.slider-box {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.slider-label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.slider-value {
  color: #67C269;
  font-weight: 900;
  font-size: 20px;
}
.slider-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: #555;
}

/* Custom slider */
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #67C269;
  border: 2px solid #0A0A0A;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(103,194,105,0.4);
}
.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #67C269;
  border: 2px solid #0A0A0A;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(103,194,105,0.4);
}

/* Submit button */
.submit-btn {
  width: 100%;
  background: #67C269;
  color: #0A0A0A;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  box-shadow: 0 0 24px rgba(103,194,105,0.3);
  transform: translateY(-2px);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
