.social-floating{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-floating a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform .15s ease, background .15s ease;
}

.social-floating a:hover{
  transform: translateY(-4px);
  background: #2c98f0;
  color: #fff;
}

.social-floating a .fab, .social-floating a .fas{
  font-size: 18px;
}

@media (max-width: 480px){
  .social-floating{
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .social-floating a{
    width: 40px;
    height: 40px;
  }
}
