/* ============================================================================
   PAGE STYLESHEET: Contact (public/css/contact.css)
   ============================================================================ */

.contact-card {
  border: 1px solid rgba(26,123,204,0.12);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.9);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
  border-left: 4px solid transparent;
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 28px rgba(15,23,42,.10);
  border-left-color: #F59D16;
}

.dark .contact-card {
  background: rgba(15, 31, 51, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.contact-field {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-field:focus {
  border-color: #1A7BCC;
  box-shadow: 0 0 0 4px rgba(26,123,204,.14);
  transform: translateY(-1px);
}

.send-message {
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.send-message:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(245,157,22,.3);
}

