/* Footer styles moved from css/style.css for modular use */
.footer{
    background:#1c1f27;
    color:#fff;
    padding:60px 8% 0;
    margin-top:60px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:50px;
}

.footer-left{
    flex:1;
}

.trusted-logo{
    width:220px;
    background:#fff;
    padding:12px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.social-icons{
    margin-top:25px;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:45px;
    height:45px;
    margin-right:10px;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-icons a:nth-child(1){
    background:#1877f2;
}

.social-icons a:nth-child(2){
    background:#ff0000;
}

.social-icons a:nth-child(3){
    background:#e1306c;
}

.social-icons a:nth-child(4){
    background:#25D366;
}

.social-icons a:hover{
    transform:translateY(-5px);
}

.footer-right{
    flex:1;
}

.footer-right h2{
    font-size:38px;
    margin-bottom:20px;
    position:relative;
}

.footer-right h2::after{
    content:'';
    width:120px;
    height:4px;
    background:#65c466;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-right p{
    margin-top:18px;
    line-height:1.8;
    color:#ddd;
    font-size:18px;
}

.footer-buttons{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.footer-btn{
    text-decoration:none;
    background:#2a2f3b;
    color:#fff;
    padding:20px;
    text-align:center;
    border:2px solid #65c466;
    font-size:18px;
    transition:.3s;
}

.footer-btn:hover{
    background:#65c466;
}

.footer-btn i{
    margin-right:8px;
}

.footer-admin-link-wrap{
    margin-top:20px;
    text-align:center;
}

.footer-admin-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#333;
    border:1px solid #65c466;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-admin-btn:hover{
    background:#65c466;
    color:#111;
}

.footer-bottom{
    margin-top:30px;
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#bbb;
}

@media(max-width:768px){
    .footer-container{
        flex-direction:column;
    }

    .footer-buttons{
        grid-template-columns:1fr;
    }

    .footer-right h2{
        font-size:30px;
    }

    .trusted-logo{
        width:180px;
    }
}
