/* Hero */
.hero {
  text-align: center;
  padding-top: 32px;
  background-image: url("../images/bg-booking.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 194.5px);
  padding-bottom: 50px;
}

.hero h1 {
  padding-top: 40px;
  letter-spacing: 0.03em;
}
.subtitle {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 62px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: 50px;
    padding-top: 62px;
    max-width: 25ch;
    margin: 0 auto;
    letter-spacing: 0;
  }
  .subtitle {
    font-family: var(--font-plus-jakarta);
    padding-top: 24px;
    max-width: 50ch;
    margin: 0 auto;
  }
  .cta {
    margin-top: 24px;
  }
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  margin-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  position: relative;
  border: 3px solid #13316b;
}

.step-label {
  margin-top: 10px;
  font-size: 16px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.step.active .step-circle {
  background-color: #2862ff;
  border: none;
}

.step.active .step-circle::after {
  content: "\2713"; /* Unicode for checkmark */
  position: absolute;
  font-size: 20px;
  color: white;
}
.step-line {
  height: 3px;
  flex: 1;
  background-color: #13316b;
  max-width: 200px;
}
@media (min-width: 1024px) {
  .step-circle {
    width: 40px;
    height: 40px;
    border: 4px solid #13316b;
  }
  .step-line {
    height: 4px;
  }
  .step.active .step-circle::after {
    font-size: 24px;
  }
}
