
#floating-contact {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
  background: #0073aa;
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
#floating-contact:hover {
  background: #005b8d;
}
