/* --- Popup Container --- */
.popup-form-container {
  display: none;
  position: fixed;
  bottom: 80px; /* adjust if you have other floating icons */
  right: 20px;
  z-index: 9999;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  max-width: 360px;
  width: 90%;
  overflow: hidden;
  animation: popupFadeIn 0.3s ease;
}

/* --- Header --- */
.popup-form-header {
  background: #0073aa;
  color: #fff;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-close {
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}

/* --- Content --- */
.popup-form-content {
  padding: 15px;
}

/* --- Floating Button --- */
.popup-form-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.popup-form-btn:hover {
  background: #005f8a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .popup-form-container {
    right: 5%;
    left: 5%;
    bottom: 10%;
    width: 90%;
    max-width: none;
  }

  .popup-form-btn {
    right: 15px;
    bottom: 15px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* --- Animation --- */
@keyframes popupFadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
