.zl-request__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.zl-request__steps {
  margin: 0 0 1.5rem;
}

.zl-request__steps-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zl-request__step {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zl-request__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(11, 47, 111, 0.22);
  border-radius: 50%;
  font-family: var(--zl-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--zl-navy);
  background: #fff;
}

.zl-request__step.is-current .zl-request__step-num {
  border-color: var(--zl-navy);
  color: #fff;
  background: var(--zl-navy);
}

.zl-request__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  margin-left: 0.65rem;
  background: rgba(11, 47, 111, 0.22);
}

.zl-request__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zl-request__group {
  margin: 0 0 1.75rem;
  padding: 0 0 1.75rem;
  border: 0;
  border-bottom: 1px solid rgba(11, 47, 111, 0.12);
  min-width: 0;
}

.zl-request__group:last-of-type {
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.zl-request__form .form-label {
  margin-bottom: 0.35rem;
  font-family: var(--zl-font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--zl-navy);
}

.zl-request__form .form-control,
.zl-request__form .form-select {
  width: 100%;
  border-color: rgba(11, 47, 111, 0.22);
  border-radius: 0.2rem;
  font-family: var(--zl-font-body);
  min-height: 2.65rem;
}

.zl-request__form .form-control:focus,
.zl-request__form .form-select:focus {
  border-color: var(--zl-navy);
  box-shadow: 0 0 0 0.2rem rgba(11, 47, 111, 0.12);
}

.zl-request__form .form-control.is-invalid,
.zl-request__form .form-select.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 0.15rem rgba(180, 35, 24, 0.15);
}

.zl-request__form .zl-form-status {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.2rem;
  font-family: var(--zl-font-body);
  font-size: 0.95rem;
  line-height: 1.4;
}

.zl-request__form .zl-form-status--success {
  color: #0b2f6f;
  background-color: rgba(11, 47, 111, 0.08);
  border: 1px solid rgba(11, 47, 111, 0.2);
}

.zl-request__form .zl-form-status--error {
  color: #7a1c14;
  background-color: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
}

.zl-request__form .zl-field-error {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #b42318;
}

.zl-request__form textarea.form-control {
  min-height: 8rem;
}

.zl-request__actions {
  margin-top: 0.25rem;
}

.zl-request__form .btn-primary,
.zl-request #continue-request-service,
.zl-request #avail-check-submit,
.zl-request #request-map-back {
  font-family: var(--zl-font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0.2rem;
  min-height: 2.65rem;
}

.zl-request #continue-request-service:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.zl-request__map-title {
  margin: 0 0 0.85rem;
  font-family: var(--zl-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--zl-navy);
}

.zl-request__map-lead {
  margin: 0 0 1rem;
  color: #151719;
}

.zl-request__map {
  min-height: min(50vh, 360px);
  border-radius: 0.25rem;
  border: 1px solid rgba(11, 47, 111, 0.14);
  box-shadow: 0 0.35rem 1.25rem rgba(11, 47, 111, 0.1);
}

@media (min-width: 768px) {
  .zl-request__map {
    min-height: 400px;
  }
}

.zl-request__map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.zl-request__map-actions .btn {
  flex: 1 1 8rem;
}

/* Loading overlay (page-scoped; keeps .spinner-container API) */
.zl-request .spinner-container {
  background: rgba(11, 47, 111, 0.28);
  gap: 1rem;
}

.zl-request__spinner {
  width: 2.75rem;
  height: 2.75rem;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--zl-orange);
  border-radius: 50%;
  animation: zl-request-spin 0.75s linear infinite;
}

@keyframes zl-request-spin {
  to {
    transform: rotate(360deg);
  }
}

.zl-request__loading-status {
  margin: 0;
  font-family: var(--zl-font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

.zl-request__success {
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(11, 47, 111, 0.14);
  border-radius: 0.25rem;
  background: #fff;
}

.zl-request__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  color: var(--zl-navy);
}

.zl-request__success-title {
  margin: 0 0 0.65rem;
  font-family: var(--zl-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--zl-navy);
}

.zl-request__success-message {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #151719;
}
