/* Sticky button */
.enquire-now-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  cursor: pointer;
}
.enquire-now-btn:hover { background: #1a5a8d; }

/* Modal */
.enquire-now-modal[hidden] { display: none; }
.enquire-now-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px);
}
.enquire-now-dialog {
  position: fixed; right: 20px; bottom: 80px; width: 380px; max-width: calc(100% - 24px);
  background: #fff; border-radius: 14px; padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); z-index: 100000;
}
.enquire-now-close {
  position: absolute; top: 8px; right: 10px; background: transparent; border: 0; font-size: 26px; cursor: pointer;
}
.enq-field { margin-bottom: 12px; }
.enq-field label { display: block; font-weight: 600; margin-bottom: 6px; }
.enq-field input, .enq-field textarea {
  width: 100%; border: 1px solid #d0d7de; border-radius: 8px; padding: 10px; font-size: 14px;
}
.enq-submit {
  background: #2271b1; color: #fff; border: 0; border-radius: 8px; padding: 10px 16px; font-weight: 700; cursor: pointer;
}
.enq-submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.enq-status { margin-top: 8px; min-height: 20px; font-size: 13px; }

@media (max-width: 480px) {
  .enquire-now-dialog { left: 12px; right: 12px; bottom: 90px; width: auto; }
  .enquire-now-btn { right: 12px; bottom: 12px; }
}