.social {
  margin-top: 80px;
  padding: 60px 20px;
  background: #0b1220;
  text-align: center;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.social .section-title {
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #1a1f35;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon i {
  font-size: 18px;
}

.social-icon.facebook:hover {
    background-color: #1877F2; 
}

.social-icon.twitter:hover {
    background-color: #1DA1F2; 
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
}

/* Opcjonalny efekt hover */
.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}