/* ============================================================
   Quick Enquiry Popup — standalone stylesheet.
   This file is separate from global.css on purpose: it only adds
   the popup's own styles and never touches any existing rule.
   ============================================================ */

.qi-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}
.qi-popup-overlay.qi-popup-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.qi-popup-box {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(12px);
  transition: transform 0.3s ease;
}
.qi-popup-overlay.qi-popup-visible .qi-popup-box {
  transform: translateY(0);
}
.qi-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--off, #f3f5f7);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted, #667085);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qi-popup-close:hover {
  background: var(--border, #e2e6ea);
}
.qi-popup-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal, #1a5c7a);
  background: var(--sky-bg, #eef7ff);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.qi-popup-header h3 {
  font-family: var(--font-head, inherit);
  font-size: 1.4rem;
  color: var(--dark, #1a2533);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.qi-popup-header p {
  font-size: 0.875rem;
  color: var(--muted, #667085);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .qi-popup-box { padding: 1.5rem; }
}
