.footer-social {
  text-align: center;
  margin-bottom: 15px;
}

.social-label {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
}

/* Social icons wrapper */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* Individual social buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn.fb {
  background-color: #3b5998;
}

.social-btn.ig {
  background-color: #E1306C;
}

.social-btn.yt {
  background-color: #FF0000;
}

/* Responsive override to force horizontal layout on mobile */
@media screen and (max-width: 768px) {
  .social-icons {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 15px !important;
  }
}
