/* Enquiry popup — vanilla CSS, no React */
.enq-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: enqFadeIn 0.3s ease;
}

.enq-popup-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.enq-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.enq-popup-close:hover {
  color: #000;
}

.enq-popup-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #9d0022;
  font-weight: 700;
}

.enq-popup-card p {
  margin: 0 0 16px;
  color: #555;
  font-size: 14px;
}

.enq-popup-cta {
  display: inline-block;
  background: #9d0022;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
}

.enq-popup-cta:hover {
  background: #7a001a;
}

.enq-popup-sub {
  margin-top: 10px !important;
  font-size: 12px !important;
  color: #999 !important;
}

@keyframes enqFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
