.floating-icons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.float-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.instagram { background-color: #E4405F; }
.call { background-color: #28a745; }
.whatsapp { background-color: #25D366; }

@media (max-width: 768px) {
  .floating-icons {
    bottom: 20px;
    right: 15px;
    gap: 10px;
  }
  .float-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
