/* ================= FOOTER STYLES ================= */

.lf-footer{
  background:linear-gradient(180deg,#0f3d24,#1f7a3a);
  color:#ffffff;
  font-family:'Poppins',sans-serif;
  padding:60px 20px 30px;
}

.lf-footer-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  justify-content:space-between;
}

.lf-footer-col{
  flex:1 1 250px;
}

.lf-footer-col h4{
  color:var(--lf-accent,#c9a24d);
  font-size:16px;
  font-weight:600;
  margin-bottom:14px;
  border-bottom:2px solid rgba(255,255,255,.25);
  padding-bottom:6px;
}

.lf-footer-logo img{
  width:70px;
  filter:brightness(0) invert(1);
  margin-bottom:12px;
}

.lf-footer-col p{
  font-size:14px;
  line-height:1.7;
  margin:8px 0;
}

.lf-footer-col a{
  display:block;
  font-size:14px;
  color:#ffffff;
  text-decoration:none;
  margin-bottom:8px;
  transition:.25s;
}

.lf-footer-col a:hover{
  color:var(--lf-accent,#c9a24d);
  padding-left:4px;
}

.lf-footer-col i{
  color:var(--lf-accent,#c9a24d);
  margin-right:6px;
}

/* SOCIAL MEDIA ALIGNMENT */
.lf-footer-socials{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  margin-top:14px;
}

.lf-footer-socials a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  color:#ffffff;
  font-size:16px;
  transition:all .25s ease;
}

.lf-footer-socials a:hover{
  background:var(--lf-accent,#c9a24d);
  color:#0f3d24;
  transform:translateY(-2px);
}

/* FOOTER BOTTOM */
.lf-footer-bottom{
  text-align:center;
  font-size:13px;
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,.25);
  opacity:.9;
}

/* MOBILE */
@media(max-width:768px){
  .lf-footer-inner{
    flex-direction:column;
    gap:30px;
  }

  .lf-footer-socials{
    justify-content:center;
  }
}