.inquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9999;
  padding: 20px;
}

.inquiry-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.inquiry-modal-locked {
  overflow: hidden;
}

.inquiry-modal {
  background: #fff;
  border-radius: 8px;
  padding: 35px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.2s ease;
}

.inquiry-modal-overlay.is-open .inquiry-modal {
  transform: translateY(0);
}

.inquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #888;
}

.inquiry-modal-close:hover {
  color: #222;
}

.inquiry-modal h2 {
  margin-bottom: 6px;
}

.inquiry-modal-subtitle {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.inquiry-modal .form-group {
  margin-bottom: 16px;
}

.inquiry-modal .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.inquiry-form-message {
  min-height: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.inquiry-form-message.is-error {
  color: #c0392b;
}

.inquiry-form-message.is-success {
  color: #27ae60;
}

/* Honeypot field: hidden from sighted users, still present in the DOM for bots */
.inquiry-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}