/* =========================================
   FOOTER
========================================= */

.footer{
    background: #ffffff;
    border-top: 1px solid #ececec;
    padding-top: 80px;
    overflow: hidden;
}

/* =========================================
   FOOTER CONTAINER
========================================= */

.footer-container{
    width: 100%;
    padding: 0 8%;
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* =========================================
   BRAND SECTION
========================================= */

.footer-brand{
    max-width: 420px;
}

.footer-brand a{
    display: inline-block;
}

.footer-logo{
    width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.footer-brand p{
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fff4ec;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-social a:hover{
    background: #ff6b00;
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================
   FOOTER TITLES
========================================= */

.footer-links h4,
.footer-contact-wrapper h4{
    font-size: 24px;
    color: #2f3138;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* =========================================
   QUICK LINKS
========================================= */

.footer-links ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links ul li{
    margin-bottom: 18px;
}

.footer-links ul li a{
    color: #6d6d6d;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    position: relative;
}

.footer-links ul li a:hover{
    color: #ff6b00;
    padding-left: 6px;
}

/* =========================================
   CONTACT DETAILS
========================================= */

.footer-contact-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.footer-contact-wrapper h4{
    width: 100%;
    text-align: left;
}

.footer-contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.contact-item{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}

.contact-item i{
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    background: #fff4ec;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item span{
    color: #6d6d6d;
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

/* =========================================
   DISCLAIMER
========================================= */

.footer-disclaimer{
    margin-top: 70px;
    padding: 28px 8%;
    background: #fff8f3;
    border-top: 1px solid #ffe2cf;
    border-bottom: 1px solid #ffe2cf;
}

.footer-disclaimer p{
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    text-align: center;
}

.footer-disclaimer strong{
    color: #ff6b00;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom{
    padding: 24px 8%;
    text-align: center;
}

.footer-bottom p{
    color: #777;
    font-size: 15px;
    margin: 0;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media(max-width:1100px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-brand{
        max-width: 100%;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:768px){

    .footer{
        padding-top: 55px;
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 7%;
    }

    .footer-brand,
    .footer-links,
    .footer-contact-wrapper{
        width: 100%;
    }

    .footer-logo{
        width: 150px;
        margin-bottom: 18px;
    }

    .footer-brand p{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .footer-links h4,
    .footer-contact-wrapper h4{
        font-size: 21px;
        margin-bottom: 20px;
    }

    .footer-links ul li{
        margin-bottom: 14px;
    }

    .footer-links ul li a{
        font-size: 15px;
    }

    .footer-contact{
        gap: 16px;
    }

    .contact-item{
        gap: 12px;
    }

    .contact-item i{
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 17px;
    }

    .contact-item span{
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-social{
        gap: 12px;
    }

    .footer-social a{
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .footer-disclaimer{
        margin-top: 45px;
        padding: 22px 7%;
    }

    .footer-disclaimer p{
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    .footer-bottom{
        padding: 20px 7%;
    }

    .footer-bottom p{
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .footer-logo{
        width: 135px;
    }

    .footer-links h4,
    .footer-contact-wrapper h4{
        font-size: 20px;
    }

    .footer-brand p,
    .footer-links ul li a,
    .contact-item span{
        font-size: 14px;
    }

    .footer-social a{
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
    }

    .contact-item i{
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }

    .footer-disclaimer{
        padding: 20px 6%;
    }

    .footer-bottom{
        padding: 18px 6%;
    }
}