/* =========================================================
   CLEAN PROFESSIONAL FOOTER
========================================================= */

.footer-pro {
    margin-top: 70px;
    padding: 40px 0 20px;

    background: rgba(20, 22, 24, 0.97);
    border-top: 1px solid rgba(255,255,255,0.08);

    color: #fff;
}


.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;

    align-items: start;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand-area {
    max-width: 400px;
}


.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}


.footer-logo {
    display: block;

    width: 170px;
    height: 55px;

    object-fit: contain;
    object-position: left center;
}


.footer-brand-area p {
    margin: 0;

    color: rgba(255,255,255,0.58);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}


.footer-heading {
    margin-bottom: 13px;

    color: rgba(255,255,255,0.92);

    font-size: 13px;
    font-weight: 700;
}


.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.footer-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: rgba(255,255,255,0.58);

    font-size: 12px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-nav a i {
    width: 16px;

    color: #29c0c0;

    font-size: 12px;

    text-align: center;
}


.footer-nav a:hover {
    color: #fff;
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {
    height: 1px;

    margin: 32px 0 18px;

    background: rgba(255,255,255,0.08);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: rgba(255,255,255,0.42);

    font-size: 11px;
}


.footer-bottom strong {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}


.footer-bottom-right {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}


.footer-bottom-right a {
    color: rgba(255,255,255,0.48);

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-bottom-right a:hover {
    color: #29c0c0;
}


.footer-bottom-right span {
    color: rgba(255,255,255,0.2);
}


/* =========================================================
   POWERED BY
========================================================= */

.footer-powered {
    display: flex;

    align-items: center;

    gap: 5px;

    white-space: nowrap;
}


.footer-powered i {
    color: #29c0c0;

    font-size: 11px;
}


.footer-powered strong {
    color: rgba(255,255,255,0.78);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 35px;
    }


    .footer-contact {
        grid-column: 2 / 4;
    }


    .footer-bottom {
        flex-wrap: wrap;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .footer-pro {
        margin-top: 50px;
        padding: 32px 0 18px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }


    .footer-brand-area {
        grid-column: 1 / -1;
        max-width: 100%;
    }


    .footer-logo {
        width: 155px;
        height: 50px;
    }


    .footer-contact {
        grid-column: auto;
    }


    .footer-nav {
        gap: 10px;
    }


    .footer-divider {
        margin: 25px 0 16px;
    }


    .footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 10px;
    }


    .footer-bottom-right {
        order: 2;
    }


    .footer-powered {
        order: 3;
    }

}