/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* Hidden by default */
.hidden {
  display: none !important;
}

/* Popup Box Styling */
.popup-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

/* Heading */
.popup-heading {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Input Fields */
.form-input, .form-select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* Phone container */
.phone-container {
  display: flex;
  gap: 10px;
}

/* Submit Button */
.form-submit {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background-color: #0056b3;
}

/* Thank You Message */
#thankYouMessage {
  font-size: 1.2rem;
  text-align: center;
  color: green;
}
