
#renovation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  flex-direction: column;
  margin-bottom: 50px;
}

#renovation-form {
  width: 100%;
  max-width: 600px;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}

.step {
  display: none;
}
.step.active {
  display: block;
}

#renovation-form h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #333;
}

#renovation-form input[type="text"],
#renovation-form input[type="email"],
#renovation-form input[type="tel"],
#renovation-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

#renovation-form button {
  padding: 10px 20px;
  background-color: #007cba;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 10px;
}
#renovation-form button:hover {
  background-color: #005fa3;
}

.progress-bar {
  background: #eee;
  border-radius: 10px;
  height: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.progress-bar-fill {
  background: #4caf50;
  height: 100%;
  width: 0;
  color: white;
  text-align: center;
  line-height: 20px;
  transition: width 0.3s ease;
}

label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

#form-response {
  display: none;
  font-size: 1.5em;
  font-weight: 500;
  color: green;
  text-align: center;
  margin-top: 40px;
}
