.social-links {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-links a {
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-links a:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Brand Colors */
.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.youtube { background: #ff0000; }
.whatsapp { background: #62f046; }
.email { background: #ddd692; }

/* Mobile responsiveness */
@media (max-width: 768px) {
  .social-links {
    right: 8px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
