/* ==========================================================================
   Masterpiece Painting Contractors — Service Wizard (index.php)
   ========================================================================== */

.wizard-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  background:
    linear-gradient(180deg, rgba(4, 20, 30, 0.35) 0%, rgba(4, 20, 30, 0.15) 45%, rgba(4, 20, 30, 0.4) 100%),
    linear-gradient(135deg, var(--secundary-color-mp) 0%, var(--main-color-mp) 100%);
  overflow: hidden;
  isolation: isolate;
}

.wizard-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../masterpiece/assets/images/bg.webp");
  background-size: cover;
  background-position: center;
  opacity: .3;
  z-index: -2;
}

.wizard-hero::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  left: -18%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.wizard-card {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 30px 60px rgba(3, 15, 23, 0.35);
  text-align: center;
}

.wizard-title {
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  line-height: 1.2;
  margin-bottom: .6rem;
  text-wrap: balance;
}

.wizard-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.wizard-step-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--secundary-color-mp);
  margin-bottom: 1.25rem;
}

.wizard-option {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 1rem;
  border: 2px solid #e3eef2;
  border-radius: 1rem;
  background: #fff;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  transition: border-color .18s ease, transform .15s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.wizard-option i {
  font-size: 1.8rem;
  color: var(--main-color-mp);
  transition: color .18s ease;
}

.wizard-option:hover,
.wizard-option:focus-visible {
  border-color: var(--main-color-mp);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 174, 239, 0.18);
}

.wizard-option.is-selected {
  background: var(--main-color-mp);
  border-color: var(--main-color-mp);
  color: #fff;
}

.wizard-option.is-selected i {
  color: #fff;
}

@media (max-width: 575.98px) {
  .wizard-card {
    padding: 2.25rem 1.5rem;
  }
}
