.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #004080;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-contact:hover {
  background-color: #0066cc;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Mobile-friendly floating contact button */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
