#popup-form {
  font-family: 'Inter', sans-serif;
  height: 600px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.form-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.progress-container {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  width: 20%;
  height: 100%;
  background: #1a73e8;
  transition: width 0.3s ease;
}

.form-step {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 16px;
}

.form-step.active {
  display: flex;
}

.step-heading {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 16px 24px 12px;
  margin: 0;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 16px;
}

.radio-box {
  border: 1px solid #ddd;
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border 0.2s ease;
}

.radio-box:hover {
  border-color: #1a73e8;
}

.radio-box input[type="radio"],
.radio-box input[type="checkbox"] {
  accent-color: #1a73e8;
  transform: scale(1.2);
}

.other-input {
  display: none;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 8px;
  width: 100%;
}

.button-row {
  display: flex;
  justify-content: right;
  gap: 16px;
  padding: 0 20px 24px;
}

.back-btn {
  background-color: white;
  color: #1a73e8;
  border: 2px solid #1a73e8;
  padding: 12px 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex: 1;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #f2f2f2;
}

.continue-btn {
  background-color: #1a73e8;
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.continue-btn:hover {
  background-color: #145ab8;
}
	
/* STEP 7 Contact Form */
#step-7 .step-heading {
  font-size: 24px;
  font-weight: 800;
}

#step-7 .form-subtext {
  font-size: 15px;
  font-weight: 500;
  margin: 0 20px 20px;
  color: #111;
	text-align: center;
}

#step-7 .form-group {
  margin: 10px 20px;
  display: flex;
  flex-direction: column;
}

#step-7 .form-group.two-cols {
  flex-direction: row;
  gap: 12px;
}

#step-7 .styled-input,
#step-7 .styled-textarea {
  padding: 14px 16px 14px 16px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 18px;
}

#step-7 .styled-input:focus,
#step-7 .styled-textarea:focus {
  border-color: #1a73e8;
}

#step-7 input[placeholder*="Full Name"] {
}

#step-7 input[placeholder*="Email"] {
	width: 50%;
}

#step-7 input[placeholder*="Phone"] {
	width: 50%;
}

#step-7 textarea[placeholder] {
  resize: vertical;
}