/* 🌿 Enquiry Modal Styling */
.enquiry-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
}

.enquiry-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 8px 25px rgba(0, 77, 37, 0.3);
  animation: popupFade 0.3s ease;
  position: relative;
}

@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #004D25;
  cursor: pointer;
  font-weight: bold;
}

.enquiry-content h2 {
  text-align: center;
  color: #004D25;
  margin-bottom: 20px;
}

.enquiry-content label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #004D25;
  font-weight: 500;
}

.enquiry-content input,
.enquiry-content textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.enquiry-content input:focus,
.enquiry-content textarea:focus {
  border-color: #008A4E;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #004D25, #008A4E);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #006837, #00A35C);
}

/* Mobile */
@media (max-width: 600px) {
  .enquiry-content {
    padding: 20px 15px;
  }
}
