/* Social Media Icons */
.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Facebook */
.footer-social a[aria-label="Facebook"] {
  background: #1877f2;
}

/* Twitter */
.footer-social a[aria-label="Twitter"] {
  background: #1da1f2;
}

/* LinkedIn */
.footer-social a[aria-label="LinkedIn"] {
  background: #0077b5;
}

/* Instagram */
.footer-social a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}