/* ------------------------------
   Footer
------------------------------ */
footer {
  background: #0a1e2e;
  color: white;
  padding: 70px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #EF7F1A;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

/* ------------------------------
   Social Icons (Updated)
------------------------------ */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Base styling */
.social-link {
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

/* ORIGINAL BRAND COLORS */
.social-link.facebook {
  background-color: #1877f2;
}

.social-link.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-link.linkedin {
  background-color: #0077b5;
}

.social-link.youtube {
  background-color: #ff0000;
}

/* Hover animation */
.social-link:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ------------------------------
   Footer Bottom
------------------------------ */
.footer-bottom {
  display: flex;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* ------------------------------
   Responsive Footer
------------------------------ */
@media (max-width: 992px) {
  footer {
    padding: 51px 20px 20px;
  }
  .footer-content {
    gap: 30px;
  }
  .footer-col h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col h3 {
    font-size: 1rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
