/* Progressbar */
.progressbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}
.progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background: #d3d3d3;
  z-index: -1;
  border-radius: 50px;
}
.progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: #ff0055;
  width: 0%;
  transform: translateY(-50%);
  transition: 0.4s ease-in-out;
  border-radius: 50px;
}
.progress-step {
  width: 25px;
  height: 25px;
  background: #d3d3d3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.4s ease-in-out;
}
.progress-step.active {
  background: #ff0055;
  transform: scale(1.2);
}
.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 40px;
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.form-step.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  background: #ff0055;
  color: #fff;
  padding: 10px 18px;
  margin-top: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  height: fit-content;
}
.btn:hover {
  background: #ff0055;
}
.buttons {
  display: flex;
  justify-content: center;
  gap:10px;
}
.buttons p {
  display: flex;
  gap: 10px;
}

.submit-wrap > p {
  flex-direction: column;
}

.ct-shortcode #wpcf7-f888-o2 {
  width: 50%;
  margin: auto;
  border: 1px solid #818ba0;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .ct-shortcode #wpcf7-f888-o2 {
    width: 100%;
    padding: 50px 25px;
  }
  .progress-step::after {
    white-space: wrap;
  }
  input[type="text"],
  input[type="email"],
  input[type="number"],
  select {
    width: 100%;
  }

  .airoi-result-box {
    padding: 0 !important;
  }
}



.buttons p .wpcf7-submit {
  border-radius: 6px;
  height: 38px;
  padding: 0 18px;
  margin-top: 15px;
}

.nucleus-animation2 {
  z-index: auto !important;
}

.airoi-result-box {
  padding: 30px;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-family: inherit;
}

.airoi-result-box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.airoi-result-box p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.airoi-result-box .result-for-month {
  margin-top: -10px;
  margin-bottom: 20px;
}

.airoi-result-box .schedule-meeting-txt {
  margin-top: 20px;
}

.airoi-result-box .hours span,
.airoi-result-box .months span {
  font-size: 36px;
  font-weight: bold;
  color: #d1004b; /* pinkish red like screenshot */
  display: block;
}

.schedule-btn {
  display: inline-block;
  background: #ff2d55;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.schedule-btn:hover {
  background: #e6264b;
}


