.floating-icons {
  position: fixed;
  bottom: 120px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #fcffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.floating-icons a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.floating-icons a svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.floating-icons a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Custom background colors */
.call-icon {
  background-color: #007bff;
}

.mail-icon {
  background-color: #dc3545;
}

.whatsapp-icon {
  background-color: #25d366;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-icons {
    bottom: 40%;
    left: 10px;
  }

  .floating-icons a {
    width: 48px;
    height: 48px;
  }

  .floating-icons a img {
    width: 24px;
    height: 24px;
  }

  .floating-icons a svg {
    width: 20px;
    height: 20px;
  }
}
