.floating-socials {
  position: fixed;
  right: 20px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.instagram {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.float-btn.youtube { background: #FF0000; }

.float-btn:hover {
  transform: scale(1.08);
}

/* Scroll to top */
.scroll-top-float {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-radius: 8px;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 9999;
}
