.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-icons .icon {
  width: 50px;
  height: 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

.floating-icons .icon:hover {
  transform: scale(1.1);
}

/* Brand-like colors */
.floating-icons .call {
  background: #25D366; /* WhatsApp green / phone green */
}

.floating-icons .email {
  background: #EA4335; /* Gmail red */
}