/* ===== Overlay ===== */
#quickQueryOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(2px);
}

/* ===== Popup ===== */
#quickQueryPopup {
  background: #fdf6ec; /* soft cream */
  width: 90%;
  max-width: 440px;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: popupLuxury 0.4s ease;
  font-family: "Poppins", sans-serif;
}

/* Animation */
@keyframes popupLuxury {
  from {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Close */
#qqClose {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #7a5c2e;
}

/* Title */
.qq-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #5b3a1d;
  text-align: center;
}

/* Subtitle */
.qq-subtitle {
  margin: 8px 0 22px;
  font-size: 14px;
  color: #7a6a55;
  text-align: center;
}

/* Form */
#quickQueryForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inputs */
#quickQueryForm input,
#quickQueryForm textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d8c7ae;
  font-size: 14px;
  background: #fff;
  transition: all 0.25s ease;
}

/* Focus effect */
#quickQueryForm input:focus,
#quickQueryForm textarea:focus {
  outline: none;
  border-color: #b88a44;
  box-shadow: 0 0 0 2px rgba(184, 138, 68, 0.2);
}

#quickQueryForm textarea {
  resize: none;
}

/* Button */
#quickQueryForm button {
  margin-top: 6px;
  padding: 13px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #b88a44, #8f6b2f);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

#quickQueryForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 138, 68, 0.4);
}
