/* =========================
   INSURANCE FORM - PREMIUM UI
========================= */

.insurance_form_section {
  padding: 80px 0;
  background: #f6f9fc;
}

.insurance_form_section h2 {
  font-size: 34px;
  text-align: center;
  background: linear-gradient(90deg, #111, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insurance_form_section p {
  color: #666;
}

/* FORM BOX */
#multiStepForm {
  background: #ffffff;
  max-width: 650px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* STEP CONTAINER */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
  display: block;
}

/* INPUTS */
#multiStepForm input,
#multiStepForm select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fafafa;
}

#multiStepForm input:focus,
#multiStepForm select:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

/* HEADINGS INSIDE FORM */
.form-step h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

/* BUTTONS */
#prevBtn,
#nextBtn,
#submitBtn {
  padding: 12px 25px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
  margin: 5px;
}

/* BACK BUTTON */
#prevBtn {
  background: #e5e7eb;
  color: #333;
}

#prevBtn:hover {
  background: #d1d5db;
}

/* NEXT BUTTON */
#nextBtn {
  background: #2563eb;
  color: #fff;
}

#nextBtn:hover {
  background: #1d4ed8;
}

/* SUBMIT BUTTON */
#submitBtn {
  background: #16a34a;
  color: #fff;
}

#submitBtn:hover {
  background: #15803d;
}

/* STEP INDICATOR */
#stepNumber {
  font-weight: 700;
  color: #2563eb;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #multiStepForm {
    padding: 25px;
    margin: 20px;
  }
}

.progress_bar {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  max-width: 650px;
  margin: auto;
}

.progress_fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transition: 0.4s ease;
}

#multiStepForm {
  transform: translateY(0);
}

#multiStepForm:hover {
  transform: translateY(-3px);
}