/* ====================================
   FOOTER
==================================== */

.main-footer{
    background: #1c1c1c;
    color: #cccccc;
    padding: 70px 0 0;
}

/* ====================================
   FOOTER GRID
==================================== */

.footer-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* ====================================
   FOOTER LOGO
==================================== */

.footer-logo{
    margin-bottom: 20px;
}

.footer-logo img{
    max-height: 60px;
    width: auto;
}

/* ====================================
   FOOTER TEXT
==================================== */

.footer-column p{
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ====================================
   FOOTER HEADINGS
==================================== */

.footer-column h3{
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;

    width: 50px;
    height: 3px;

    background: #ff4254;
    border-radius: 5px;
}

/* ====================================
   FOOTER LINKS
==================================== */

.footer-column ul{
    padding: 0;
    margin: 0;
}

.footer-column ul li{
    list-style: none;
    margin-bottom: 12px;
}

.footer-column ul li a{
    color: #cccccc;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover{
    color: #ff4254;
    padding-left: 5px;
}

/* ====================================
   CONTACT INFO
==================================== */

.contact-info li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info li i{
    color: #ff4254;
    min-width: 20px;
    margin-top: 4px;
    font-size: 16px;
}

/* ====================================
   SOCIAL MEDIA
==================================== */

.social-icons{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a{
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #ff4254;

    border-radius: 50%;

    font-size: 18px;

    transition: all 0.3s ease;
}

.social-icons a:hover{
    background: #ff4254;
    color: #ffffff;
    transform: translateY(-4px);
}

/* ====================================
   FOOTER BOTTOM
==================================== */

.footer-bottom{
    margin-top: 60px;
    background: #151515;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container{
    padding: 20px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-bottom p{
    color: #bdbdbd;
    margin: 0;
    font-size: 14px;
}

.footer-bottom .copyright{
    text-align: left;
}

.footer-bottom .developer{
    text-align: right;
}

.footer-bottom .developer a{
    color: #ff4254;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom .developer a:hover{
    color: #ffffff;
}

/* ====================================
   HOVER ANIMATION
==================================== */

.footer-column ul li a,
.social-icons a{
    transition: all 0.3s ease;
}

/* ====================================
   OPTIONAL NEWSLETTER
   (Future Use)
==================================== */

.footer-newsletter{
    margin-top: 20px;
}

.footer-newsletter form{
    display: flex;
    gap: 10px;
}

.footer-newsletter input{
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
}

.footer-newsletter button{
    background: #ff4254;
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter button:hover{
    background: #e6394a;
}

/* ====================================
   FOOTER FADE EFFECT
==================================== */

.main-footer{
    animation: footerFade 0.6s ease;
}

@keyframes footerFade{

    from{
        opacity: 0;
        transform: translateY(20px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* ====================================
   WHATSAPP BUTTON
==================================== */

.whatsapp-btn{

    position: fixed;

    bottom: 25px;
    left: 25px;

    width: 60px;
    height: 60px;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    text-decoration: none;

    box-shadow: 0 5px 20px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: .3s ease;
}

.whatsapp-btn:hover{

    transform: scale(1.1);

    color: #ffffff;
}

/* ====================================
   BACK TO TOP
==================================== */

.back-to-top{

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    border: none;

    background: #ff4254;

    color: #ffffff;

    border-radius: 50%;

    cursor: pointer;

    display: none;

    align-items: center;
    justify-content: center;

    font-size: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,.25);

    z-index: 9999;

    transition: .3s ease;
}

.back-to-top:hover{

    background: #222222;

    transform: translateY(-3px);
}