.new-footer{
    background:#050505;
    padding:25px 20px;
    border-top:1px solid #222;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:25px;
    max-width:1250px;
    margin:auto;
}

.footer-logo{
    width:160px;
    margin-bottom:10px;
}

.footer-grid h3{
    color:#f97316;
    margin-bottom:10px;
    font-size:17px;
}

.footer-grid a{
    display:block;
    color:#ccc;
    margin-bottom:7px;
    font-size:13px;
}

.footer-grid p{
    color:#aaa;
    font-size:13px;
}

.sticky-call{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#f97316;
    color:#000;
    text-align:center;
    padding:12px;
    font-weight:900;
    z-index:999;
    display:none;
}

@media(max-width:992px){
    .footer-grid{
        grid-template-columns:1fr;
    }

    .sticky-call{
        display:block;
    }
}