/* FOOTER */

footer{
margin-top:120px;
border-top:1px solid #eee;
background:#fff;
}

/* PREMIUM FOOTER */

.footer-premium{
padding:80px 0 30px;
}

.footer-top{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:80px;
padding-bottom:50px;
border-bottom:1px solid #eee;
}

/* BRAND */

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

.footer-logo{
height:36px;
margin-bottom:20px;
display:block;
}

.footer-tagline{
font-size:15px;
color:#666;
line-height:1.7;
}

/* LINKS */

.footer-links-wrap{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:60px;
flex:1;
}

.footer-links{
display:flex;
flex-direction:column;
}

.footer-links h4{
font-size:14px;
margin-bottom:18px;
font-weight:600;
color:#111;
}

.footer-links a{
text-decoration:none;
color:#555;
font-size:14px;
margin-bottom:12px;
transition:.3s;
}

.footer-links a:hover{
color:#111;
}

/* SOCIAL */

.footer-social{
display:flex;
justify-content:center;
align-items:center;
gap:22px;
padding:35px 0;
}

.footer-social a{
display:flex;
align-items:center;
justify-content:center;
width:34px;
height:34px;
border-radius:50%;
transition:.3s;
}

.footer-social a:hover{
background:#f5f5f5;
}

.footer-social img{
width:16px;
height:16px;
display:block;
opacity:.75;
transition:.3s;
object-fit:contain;
}

.footer-social img:hover{
opacity:1;
}

/* BOTTOM */

.footer-bottom-premium{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
padding-top:10px;
font-size:13px;
color:#777;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:52px;
height:52px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
z-index:999;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
}

.whatsapp-float img{
width:24px;
height:24px;
}

/* SCROLL TOP */

#scrollTopBtn{
position:fixed;
bottom:84px;
right:22px;
border:none;
background:#111;
color:#fff;
width:40px;
height:40px;
border-radius:50%;
cursor:pointer;
font-size:18px;
display:none;
z-index:999;
}

/* MOBILE */

@media(max-width:768px){

.footer-top{
flex-direction:column;
gap:50px;
}

.footer-links-wrap{
grid-template-columns:1fr 1fr;
gap:40px;
width:100%;
}

.footer-bottom-premium{
flex-direction:column;
align-items:flex-start;
}

.footer-social{
flex-wrap:wrap;
justify-content:flex-start;
padding-top:28px;
}

}