
/* OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* POPUP BOX */
.popup-box {
  background: #ffffff;
  width: 92%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 24px 28px;
  border-radius: 16px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  transition: color .15s ease;
}
.popup-close:hover {
 color: #000000;
  background: transparent;
}

.popup-content {
  margin-top: 10px;
}

/* HEADINGS */
.step-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
  margin: 0 0 4px;
}

.step-heading {
  font-size: 20px;
  margin: 0 0 14px;
  color: #111827;
}

/* FORM ELEMENTS */
.popup-content input[type="text"],
.popup-content input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #010101;
  font-size: 14px;
  margin: 6px 0 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.popup-content input[type="text"]:focus,
.popup-content input[type="email"]:focus {
  outline: none;
  border-color: #ad1e0e;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 9px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, transform .05s ease;
}

.btn-primary {
  background: #ad1e0e;
  color: #ffffff;

}
.btn-primary:hover {
  transform: translateY(-1px);
	  color: #ffffff;
		  background: #ad1e0e;
}
.btn-secondary {
  background: #f3f4f6;
  color: #111827;
}
.btn-secondary:hover {
  background: #e5e7eb;
	 color: #111827;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

/* CATEGORY CHECKBOXES BEAUTIFUL */
.category-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.category-option {
  position: relative;
  display: block;
}

.category-option input[type="checkbox"] {
  display: none;
}

.category-option span {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
  color: #111827;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}
.category-option span:hover {
  background: #f3f4f6;
}

.category-option input[type="checkbox"]:checked + span {
  border-color: #ad1e0e;
  background: #eff6ff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* SERVICE RADIO OPTIONS BEAUTIFUL */
.services-group {
  display: none;
  margin-bottom: 16px;
}

.service-option {
  display: block;
  margin-bottom: 6px;
}

.service-option input[type="radio"] {
  display: none;
}

.service-option span {
  display: block;
  width: 100%;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.service-option span:hover {
  background: #f3f4f6;
}

.service-option input[type="radio"]:checked + span {
  border-color: #ad1e0e;
  background: #eff6ff;
}

/* YES/NO BUTTONS */
.yesno-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* SUMMARY */
#summaryServices p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #111827;
}
.summary-total {
  margin-top: 8px;
  font-size: 15px;
}
