/* ===================================
   FOOTER
=================================== */

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0b1220;
}

.footer-main {
  display: grid;
  grid-template-columns:
    minmax(240px, 1.2fr)
    repeat(3, minmax(140px, 0.7fr));

  gap: 34px;
  padding: 58px 0 34px;
}

.footer-brand p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
}

.footer-list {
  display: grid;
  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;

  padding: 22px 0 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.54);

  font-size: 0.9rem;
}

/* ===================================
   FOOTER ENHANCEMENTS
=================================== */

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 15px;
  line-height: 1.8;
}

/* Social */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social i {
  color: #fff;
  font-size: 16px;
}

/* Facebook */
.footer-social .facebook:hover {
  background: #1877f2;
  transform: translateY(-4px);
}

/* Instagram */
.footer-social .instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  transform: translateY(-4px);
}

/* LinkedIn */
.footer-social .linkedin:hover {
  background: #0a66c2;
  transform: translateY(-4px);
}

/* YouTube */
.footer-social .youtube:hover {
  background: #ff0000;
  transform: translateY(-4px);
}

.footer-social i {
  color: #fff;
  font-size: 16px;
}

/* Contact */

.footer-contact {
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;

  line-height: 1.6;
}

.footer-contact i {
  color: var(--white);

  font-size: 16px;

  min-width: 18px;

  margin-top: 4px;
}

.footer-contact a {
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #fff;
}

/* Footer Links */

.footer-links {
  gap: 12px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 10px;

  transition: 0.3s ease;
}

.footer-links li a::before {
  content: "\f105";

  font-family: "Font Awesome 6 Free";

  font-weight: 900;

  color: var(--white);
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* ===================================
   FOOTER RESPONSIVE
=================================== */

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-title {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
