.movehub-footer{
    background:#050505;
    color:#f37120;
    padding:40px 0 20px;
}

/* =========================
   CTA SECTION
========================= */

.footer-cta{
    max-width:1400px;
    margin:auto;

    min-height:220px;

    background:#fff;

    border-radius:24px;

    padding:30px 40px;

    display:grid;
    grid-template-columns:1fr 1.5fr 1.5fr 1fr;

    align-items:center;

    gap:30px;

    position:relative;
    overflow:hidden;

    box-shadow:0 12px 40px rgba(0,0,0,.08);
}


/* Orange Circle */

.footer-cta::before{
    content:'';

    position:absolute;

    width:340px;
    height:340px;

    background:#ff6b00;

    border-radius:50%;

    left:-210px;
    top:-150px;

    opacity:.75;
}


/* Skyline */

.footer-cta::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:90px;
    background:url('../images/dubai-skyline-orange.png');
     background-repeat:repeat-x;
    background-position:bottom left;
    background-size:auto 80px;
    opacity:.08;
}


/* Bring content above background */

.footer-cta-truck,
.footer-cta-content,
.footer-cta-call,
.footer-cta-button{
    position:relative;
    z-index:2;
}


/* =========================
   TRUCK
========================= */

.footer-cta-truck img{
    width:260px;
    display:block;
}


/* =========================
   HEADING
========================= */

.footer-cta-content h2{
    font-size:32px;
    line-height:1.05;
    margin:0 0 12px;
    color:#111;
    font-weight:800;
}

.footer-cta-content h2 span{
    color:#ff6b00;
}

.footer-cta-content p{
    font-size:18px;
    color:#666;
    margin:0;
}


/* =========================
   CALL
========================= */

.footer-cta-call{
    display:flex;
    align-items:center;
    gap:18px;
    border-left:1px solid #f0d4c0;
    padding-left:35px;
}

.cta-call-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff6b00;
    font-size:18px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.cta-call-content span{
    display:block;
    font-size:18px;
    color:#333;
    margin-bottom:8px;
}

.cta-call-content a{
    text-decoration:none;
    color:#ff6b00;
    font-size:20px;
    font-weight:800;
}


/* =========================
   BUTTON
========================= */

.footer-cta-button{
    display:flex;
    justify-content:center;
}

.footer-quote-btn{
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:12px 10px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:18px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.footer-quote-btn:hover{
    transform:translateY(-3px);
    background:#e85b00;
}

.quote-arrow{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    color:#ff6b00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

/* MAIN */

.footer-main{
    max-width:1400px;
    margin:70px auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr;
    gap:40px;
    padding: 0 20px;
}

.footer-col p,
.footer-col small,
.contact-list li,
.footer-col ul li{
    color:#ffffff;
}

.footer-logo{
    width:250px;
    margin-bottom:20px;
}

.footer-col h3{
    color:#ff6b00;
    margin-bottom:25px;
    position:relative;
}

.footer-col h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#ff6b00;
    position:absolute;
    left:0;
    bottom:-10px;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    transition:all .3s ease;
    margin-bottom:18px;
}

.footer-col ul li a{
    color:#ffffff;
    text-decoration:none;
    transition:all .3s ease;
    display:inline-block;
}

.footer-col ul li a:hover{
    color:#ff6b00 !important;
    transform:translateX(5px);
}

.footer-rating{
    font-size:20px;
    margin:20px 0;
}

.footer-social{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.1);
    border-radius:12px;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    transition:all .3s ease;
}

.footer-social a:hover{
    transform:translateY(-4px);
}

.footer-social .facebook:hover{
    background:#1877f2;
    border-color:#1877f2;
}

.footer-social .instagram:hover{
    background:#e4405f;
    border-color:#e4405f;
}

.footer-social .linkedin:hover{
    background:#0a66c2;
    border-color:#0a66c2;
}

.footer-social .whatsapp:hover{
    background:#25d366;
    border-color:#25d366;
}

/* FEATURES */

.footer-features{
    max-width:1400px;
    margin:auto;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.feature-box{
    padding:30px;
    text-align:center;
}

.feature-box h4{
    color:#ff6b00;
    margin-bottom:10px;
}

.feature-box span{
    color:#ffffff;
}

/* BOTTOM */

.footer-bottom{
    max-width:1400px;
    margin:40px auto 0;
    padding-top:30px;
    padding-left: 30px;
    padding-right: 30px;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
}

.footer-bottom p{
    color:#ffffff;
}

.footer-bottom span{
    color:#ff6b00;
}

.footer-links{
    display:flex;
    gap:30px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

/* =========================
   TABLET
========================= */
@media (max-width:1200px){

    .footer-cta{
        grid-template-columns:
        220px
        1fr
        250px;
        gap:20px;
    }

    .footer-cta-button{
        grid-column:1 / -1;
        justify-content:center;
    }

    .footer-cta-content h2{
        font-size:42px;
    }

    .cta-call-content a{
        font-size:24px;
    }

    .footer-main{
        grid-template-columns:
        2fr
        1fr
        1fr;
        gap:30px;
    }

}
/* ====================================
   CTA - LARGE TABLET
   992px - 1024px
==================================== */

@media (max-width:1024px){

    .footer-cta{

        min-height:auto;
        grid-template-columns:
        200px
        1fr
        380px;
        gap:25px;
        padding:35px 30px;
    }

    .footer-cta-truck img{
        width:200px;
    }

    .footer-cta-content h2{
        font-size:32px;
        line-height:1.1;
    }

    .footer-cta-content p{
        font-size:17px;
    }

    .footer-cta-call{
        padding-left:25px;
    }

    .cta-call-icon{
        width:50px;
        height:50px;
        font-size: 30px;
    }

    .cta-call-content span{
        font-size:24px;
    }

    .cta-call-content a{
        font-size:24px;
    }

    .footer-quote-btn{
        padding:14px 22px;
        font-size:16px;
    }
}




/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    /* CTA */

    .footer-cta{

        min-height:auto;

        grid-template-columns:1fr;

        text-align:center;

        padding:30px 20px;

        gap:25px;
    }

    .footer-cta::before{
        width:220px;
        height:220px;

        left:-140px;
        top:-90px;
    }

    .footer-cta-truck{
        display:flex;
        justify-content:center;
    }

    .footer-cta-truck img{
        width:220px;
        margin:auto;
    }

    .footer-cta-content h2{
        font-size:36px;
        line-height:1.15;
    }

    .footer-cta-content p{
        font-size:18px;
    }

    .footer-cta-call{

        border-left:none;

        padding-left:0;

        justify-content:center;

        flex-direction:column;

        text-align:center;
    }

    .cta-call-content a{
        font-size:22px;
    }

    .footer-cta-button{
        width:100%;
    }

    .footer-quote-btn{
        width:100%;
        justify-content:center;
    }

    /* FOOTER MAIN */

    .footer-main{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:30px;
        text-align:center;
    }

    /* First column full width */
    .footer-main .footer-col:nth-child(1){
        grid-column:1 / -1;
    }

    .footer-logo{
        margin:auto auto 20px;
    }

    .footer-col h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    /* SOCIAL */

    .footer-social{
        justify-content:center;
    }

    /* FEATURES */

    .footer-features{
        grid-template-columns:1fr;
    }

    /* BOTTOM */

    .footer-bottom{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .footer-links{
        justify-content:center;
        flex-wrap:wrap;
    }

}