/* Contact Success Popup */
#contact-success-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#contact-success-popup.active,
#contact-success-popup[style*="display: block"],
#contact-success-popup[style*="display:block"] {
  display: flex !important;
}

#contact-popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

#contact-popup-box .popup-icon {
  width: 68px;
  height: 68px;
  background: #BFA599;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

#contact-popup-box .popup-icon svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

#contact-popup-box h2 {
  font-family: 'Bebas Kai', sans-serif;
  font-size: 28px;
  color: #222;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#contact-popup-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 28px;
}

#contact-popup-close {
  display: inline-block;
  background: #BFA599 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: 0.5px;
}

#contact-popup-close:hover {
  background: #a88e7e;
}
