/* ====== Popup Overlay ====== */
#enquiry-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Poppins", Arial, sans-serif;
}

.enquiry-popup-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* ====== Popup Box ====== */
.enquiry-popup-content {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 30px 25px 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: left;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== Close Button ====== */
.close-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
}
.close-btn:hover { color: #333; }

/* ====== Header & Text ====== */
.enquiry-header {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  text-align: center;
}
.product-title {
  font-size: 15px;
  margin-bottom: 15px;
  text-align: center;
  color: #555;
}

/* ====== Form Styles ====== */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #444;
}

.form-group .required {
  color: #e63946;
  font-weight: bold;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #0073aa;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* ====== Submit Button ====== */
.submit-btn {
  background: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit-btn:hover {
  background: #005f8a;
}

/* ====== Enquire Button (Product Page) ====== */
.enquire-now-btn {
  background-color: rgba(220, 194, 121, 1) !important;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 15px !important;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.enquire-now-btn:hover {
  background: #e65c00;
  transform: translateY(-2px);
}
