:root {
  --wizard-primary: var(--theme);
  --wizard-success: #198754;
  --wizard-border: #dee2e6;
}
.wizard-container {
  max-width: 1100px;
  margin: auto;
}
.wizard-step {
  display: none;
}
.wizard-step.active {
  display: block;
}
.wizard-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 40px 0;
}
.wizard-stepper::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 4px;
  background: var(--wizard-border);
  z-index: 0;
}
.wizard-progress {
  position: absolute;
  top: 22px;
  left: 12%;
  width: 0;
  height: 4px;
  background: var(--wizard-primary);
  z-index: 1;
  transition: 0.3s;
}
.wizard-item {
  position: relative;
  z-index: 2;
  width: 25%;
  text-align: center;
}
.wizard-circle {
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 50%;
  border: 3px solid var(--wizard-border);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: all 0.25s ease;
}
.wizard-item.active .wizard-circle {
  background: var(--wizard-primary);
  border-color: var(--wizard-primary);
  color: #fff;
}
.wizard-item.done .wizard-circle {
  background: var(--wizard-primary);
  border-color: var(--wizard-border);
  color: #fff;
}
.wizard-title {
  /* margin-top: 10px; */
  font-weight: 600;
}
.wizard-subtitle {
  margin-top: -10px;
  font-size: 0.85rem;
  color: #6c757d;
}
.wizard-panel {
  border: 1px solid var(--wizard-border);
  border-radius: 16px;
  padding: 40px;
  background: #fff;
  min-height: 520px;
}
.wizard-footer {
  margin-top: 25px;
}
.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  background: var(--theme);
}
.icon i {
  color: var(--theme);
}
.btn-theme {
  background-color: color-mix(in srgb, var(--theme) 100%, black);
  color: #fff;
}

.btn-theme:hover {
  background-color: color-mix(in srgb, var(--theme) 85%, black);
  color: #fff;
}

.invalid-feedback {
  font-size: 12px;
  margin-top: -5px;
}

#packageError {
  display: none;
}

.package-list-error .package-card {
  border: 2px solid var(--bs-danger);
}

.package-card {
  transition: 0.25s ease;
}
.package-option {
  display: block;
  cursor: pointer;
  height: 100%;
  margin: 0;
}
.package-radio {
  display: none;
}
.package-card {
  height: 100%;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 24px 24px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04);
}
.package-option:hover .package-card {
  /* transform: translateY(-5px); */
  border-color: var(--theme);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
}
.package-speed {
  width: 145px;
  height: 145px;
  /* margin: 0 auto 24px; */
  border: 4px solid var(--theme);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: 0.25s;
}
.speed-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}
.speed-value {
  font-size: 52px;
  font-weight: 900;
  color: var(--theme);
  margin: 6px 0;
}
.speed-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
}
.package-price {
  margin-bottom: 20px;
}
.old-price {
  color: #adb5bd;
  text-decoration: line-through;
  font-size: 0.9rem;
  min-height: 22px;
}
.old-price:empty {
  display: none;
}
.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme);
  line-height: 1.2;
}
.current-price span {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 400;
}
.package-description {
  color: #6c757d;
  font-size: 0.92rem;
  margin-bottom: 22px;
  min-height: 44px;
}
.package-feature {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.package-feature li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.package-feature li:last-child {
  margin-bottom: 0;
}
.package-feature i {
  color: #198754;
  margin-top: 2px;
}
.package-radio:checked + .package-card {
  border-color: var(--theme);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.package-radio:checked + .package-card .package-speed {
  background: var(--theme);
}
.package-radio:checked + .package-card .speed-label,
.package-radio:checked + .package-card .speed-value,
.package-radio:checked + .package-card .speed-unit {
  color: #fff;
}
@media (max-width: 991px) {
  .package-card {
    padding: 22px 18px;
  }
  .package-speed {
    width: 125px;
    height: 125px;
  }
  .speed-value {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .package-card {
    padding: 20px 16px;
  }
  .package-speed {
    width: 110px;
    height: 110px;
  }
  .speed-value {
    font-size: 36px;
  }
  .current-price {
    font-size: 1.7rem;
  }
}
