/* Contact Modal Styles */
.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.contact-modal-backdrop.active { display: flex; }
.contact-modal {
  background: #fff;
  border-radius: 0.75rem;
  width: calc(100% - 2rem);
  max-width: 32rem;
  box-shadow: 0 20px 40px -20px rgba(2, 6, 23, 0.35);
}
.contact-modal-header { padding: 1rem 1.25rem; border-bottom: 1px solid #e2e8f0; }
.contact-modal-body { padding: 1rem 1.25rem; }
.contact-modal-footer { padding: 0.75rem 1.25rem; border-top: 1px solid #e2e8f0; }
.contact-close-btn { cursor: pointer; }
.copy-btn { cursor: pointer; }