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

a{
text-decoration: none !important;
}

.site-footer {
    width: 100%;
    background-color: #1D4280 !important;
    color: #fff;
    padding: 40px 0 20px !important;
}


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

.site-footer .master-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}


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

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 11px 0 25px;
}


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

.footer-main {
    display: grid;
        grid-template-columns: 0.7fr 0.7fr 1fr;
    gap: 30px;
    align-items: start;
}


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

.footer-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {
    display: block !important;
    width: 100%;
    margin-top: 25px;
}

.contact-info h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #fff !important;
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

.contact-info img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-info a {
    color: #fff !important;
    text-decoration: none;
}

.contact-info a:hover {
    color: #fff !important;
}


/* =========================================================
   PAYMENT METHODS
========================================================= */

.payment-methods {
    margin-top: 30px;
}

.payment-methods img {
    height: 28px;
    width: auto;
    margin-right: 12px;
    opacity: 0.9;
}


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

.footer-column h4 {
    margin: 0 0 15px;
    color: #fff !important;
    font-size: 22px;
    font-family: 'Syne', sans-serif;
    font-weight: bold;
    line-height: 1.4;
}


/* =========================================================
   FOOTER MENU GRID
========================================================= */

.footer-column .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}


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

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: max-content;
}

.footer-column ul li {
    margin: 0 0 12px;
    padding: 0;
}


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

.footer-column a {
    color: #fff !important;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.footer-column a:hover {
    color: #ff6b00 !important;
    text-decoration: none;
}


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

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff !important;
}

.footer-bottom p {
    margin: 0;
    color: #fff !important;
}


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

@media (max-width: 768px) {

    .site-footer {
        padding: 30px 0 20px;
    }

    .site-footer .master-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info {
        width: 100%;
    }

    .contact-info span {
        justify-content: flex-start;
    }

    .footer-column .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-column ul {
        width: auto;
    }

    .payment-methods {
        margin-top: 20px;
    }

    .footer-column h4 {
        font-size: 20px;
    }

    .footer-column a {
        font-size: 16px;
    }

}


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

@media (max-width: 480px) {

    .site-footer .master-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .contact-info h3,
    .footer-column h4 {
        font-size: 19px;
    }

    .contact-info span {
        font-size: 16px;
    }

    .footer-column a {
        font-size: 15px;
    }

    .footer-bottom {
        font-size: 14px;
    }

}