/* ==========================================
   PREMIUM FOOTER CSS
   FILE: assets/css/footer.css
========================================== */


/* ==========================================
   FOOTER MAIN
========================================== */

.premium-footer{
    background: #0f1720;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}


/* ==========================================
   FOOTER TOP
========================================== */

.footer-top{
    padding: 90px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* ==========================================
   FOOTER GRID
========================================== */

.footer-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
}


/* ==========================================
   FOOTER LOGO
========================================== */

.footer-logo{
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img{
    width: 180px;
}


/* ==========================================
   FOOTER ABOUT
========================================== */

.footer-about p{
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 15px;
}


/* ==========================================
   SOCIAL LINKS
========================================== */

.footer-socials{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-socials a{
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.footer-socials a:hover{
    background: #4CAF50;
    transform: translateY(-5px);
}


/* ==========================================
   FOOTER COLUMN
========================================== */

.footer-column h3{
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
}

.footer-column h3::after{
    content: '';

    width: 50px;
    height: 3px;

    background: #4CAF50;

    position: absolute;
    left: 0;
    bottom: -12px;

    border-radius: 20px;
}


/* ==========================================
   FOOTER LINKS
========================================== */

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 16px;
}

.footer-column ul li a{
    color: rgba(255,255,255,0.75);

    text-decoration: none;

    transition: 0.3s ease;

    font-size: 15px;
}

.footer-column ul li a:hover{
    color: #4CAF50;
    padding-left: 6px;
}


/* ==========================================
   CONTACT INFO
========================================== */

.footer-contact-info p{
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-contact-info strong{
    color: #ffffff;
}


/* ==========================================
   NEWSLETTER SECTION
========================================== */

.footer-newsletter{
    padding: 60px 0;
    background: rgba(255,255,255,0.03);
}

.newsletter-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.newsletter-content{
    flex: 1;
}

.newsletter-content h2{
    font-size: 38px;
    margin-bottom: 15px;
}

.newsletter-content p{
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}


/* ==========================================
   NEWSLETTER FORM
========================================== */

.newsletter-form{
    flex: 1;
}

.newsletter-form form{
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-form input{
    flex: 1;

    height: 60px;

    border: none;
    outline: none;

    padding: 0 25px;

    border-radius: 60px;

    font-size: 15px;
}

.newsletter-form button{
    height: 60px;

    border: none;
    outline: none;

    padding: 0 35px;

    border-radius: 60px;

    background: linear-gradient(to right, #4CAF50, #2E7D32);

    color: #fff;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s ease;
}

.newsletter-form button:hover{
    transform: translateY(-3px);
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.footer-bottom{
    padding: 25px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* ==========================================
   COPYRIGHT
========================================== */

.footer-copyright p{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}


/* ==========================================
   POLICY LINKS
========================================== */

.footer-policy-links{
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-policy-links a{
    color: rgba(255,255,255,0.7);

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;
}

.footer-policy-links a:hover{
    color: #4CAF50;
}


/* ==========================================
   WHATSAPP FLOAT BUTTON
========================================== */

.whatsapp-float{
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #fff;
    text-decoration: none;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    transition: 0.3s ease;
}

.whatsapp-float:hover{
    transform: translateY(-5px);
}


/* ==========================================
   TABLET RESPONSIVE
========================================== */

@media(max-width: 992px){

    .footer-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .newsletter-container{
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content h2{
        font-size: 32px;
    }

}


/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media(max-width: 768px){

    .footer-top{
        padding: 70px 0 40px;
    }

    .footer-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column h3{
        font-size: 20px;
        margin-bottom: 25px;
    }

    .footer-about p,
    .footer-column ul li a,
    .footer-contact-info p{
        font-size: 14px;
    }

    .newsletter-content h2{
        font-size: 28px;
        line-height: 1.4;
    }

    .newsletter-content p{
        font-size: 15px;
    }

    .newsletter-form form{
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input{
        width: 100%;
    }

    .newsletter-form button{
        width: 100%;
    }

    .footer-bottom-container{
        flex-direction: column;
        text-align: center;
    }

    .footer-policy-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width: 576px){

    .newsletter-content h2{
        font-size: 24px;
    }

    .footer-socials{
        justify-content: center;
    }

    .whatsapp-float{
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

}

/* ==========================================
   SOCIAL ICONS
========================================== */

.footer-social{
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a{
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 18px;

    transition: 0.3s ease;
}


/* HOVER */

.footer-social a:hover{
    background: #4CAF50;
    transform: translateY(-5px);
}