/* Stylish Modal Popup for Contact Form Feedback */
#contact-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
#contact-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  text-align: center;
  position: relative;
  font-family: 'Space Grotesk', Arial, sans-serif;
}
#contact-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
#contact-modal h3 {
  color: #1c5cfc;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
#contact-modal .modal-message {
  margin-bottom: 1.2rem;
  color: #333;
  font-size: 1.1rem;
}
#contact-modal .company-info {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 1rem 0.5rem;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
#contact-modal .company-info strong {
  color: #1c5cfc;
}
#contact-modal .modal-success {
  color: #18a957;
  font-weight: bold;
}
#contact-modal .modal-error {
  color: #e74c3c;
  font-weight: bold;
}
