.site-footer{
  background: #111827;
  color: #fff;
  padding: 60px 0 0;
}

/* TOP SECTION */
.footer-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand{
  max-width: 900px;
}

.footer-logo{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}

.footer-logo img{
  width: 30px;
}

.footer-logo span{
  font-size: 24px;
  font-weight: 600;
}

.footer-brand p{
  line-height: 1.8;
  color: #ccc;
}

/* SOCIAL ICONS */
.social-container{
  display: flex;
  gap: 15px;
}

.social-container a{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-container a:hover {
  background-color: #787af0;
  color: #000;
  transform: translateY(-4px);
}

.social-container a:hover .fa-whatsapp {
  color: #FFFFFF;
}

.social-container a:hover .fa-linkedin-in{
color: #FFFFFF;
}

.social-container a:hover .fa-instagram{
color: #FFFFFF;
}

/* BOTTOM SECTION */
.footer-container{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 50px 60px;
}

/* FOOTER SECTION */
.footer-section h4{
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.footer-section ul{
  list-style: none;
}

.footer-section ul li{
  margin-bottom: 12px;
}

.footer-section ul li a{
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-section ul li a:hover{
  color: #787af0;
  transition: 0.3s ease;

}

/* CONTACT INFO */
.contact-info li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ccc;
}

.contact-info li i{
  margin-top: 5px;
}

/* COPYRIGHT */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  color: #aaa;
}


/* =========================================
   LARGE TABLET (1200px)
========================================= */

@media (max-width: 1200px) {

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 50px 40px;
  }

  .footer-top {
    padding: 0 40px 40px;
  }
}


/* =========================================
   TABLET (768px)
========================================= */

@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 25px 30px;
    text-align: left;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 25px;
    gap: 25px;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .social-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }
}


/* =========================================
   MOBILE (576px)
========================================= */

@media (max-width: 576px) {

  .footer-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 20px;
  }

  .footer-top {
    padding: 0 20px 25px;
    text-align: left;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .footer-section ul li {
    text-align: left;
  }

.footer-section ul{

  margin-bottom: 30px;
}

  .contact-info li {
    justify-content: flex-start;
    text-align: left;
  }

  .social-container {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .social-container a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}