/* =========================================================
   P.T. LEE CHENGALVARAYA NAICKER TRUST
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    background:
        linear-gradient(
            135deg,
            #08002d 0%,
            #160052 48%,
            #0a2d73 100%
        );
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    margin-top: 50px;
}

/* TOP FOOTER */

.footer-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 55px 30px 45px;

    display: grid;
    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.2fr;

    gap: 45px;
}


/* FOOTER COLUMNS */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    position: relative;

    margin:
        0 0 22px;

    padding-bottom: 12px;

    color: #ffd84d;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: .3px;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    border-radius: 3px;

    background:
        linear-gradient(
            90deg,
            #ffd84d,
            #fff0a0
        );
}


/* ABOUT */

.footer-logo {
    width: 90px;
    height: 90px;

    object-fit: contain;

    margin-bottom: 15px;

    filter:
        drop-shadow(
            0 4px 10px
            rgba(0,0,0,.30)
        );
}

.footer-about h3 {
    color: #ffffff;
    font-size: 17px;
}

.footer-about p {
    color: #dce5ff;

    font-size: 13px;
    line-height: 1.8;

    margin: 0 0 12px;
}

.footer-motto {
    color: #ffd84d !important;

    font-weight: 600;
}

.footer-motto i {
    margin-right: 7px;
}


/* LINKS */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-flex;

    align-items: center;

    color: #dce5ff;

    text-decoration: none;

    font-size: 13px;

    transition:
        color .3s ease,
        transform .3s ease;
}

.footer-links a i {
    color: #ffd84d;

    margin-right: 9px;

    font-size: 11px;
}

.footer-links a:hover {
    color: #ffd84d;

    transform:
        translateX(5px);
}


/* CONTACT */

.footer-contact p {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #dce5ff;

    font-size: 13px;

    line-height: 1.7;

    margin: 0 0 15px;
}

.footer-contact p > i {
    color: #ffd84d;

    width: 18px;

    margin-top: 4px;

    text-align: center;
}

.footer-contact a {
    color: #dce5ff;

    text-decoration: none;

    transition: color .3s ease;
}

.footer-contact a:hover {
    color: #ffd84d;
}


/* SOCIAL */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(255,216,77,.35);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.footer-social a:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0 7px 18px
        rgba(0,0,0,.25);
}

.footer-social .facebook:hover {
    background: #1877f2;
}

.footer-social .instagram:hover {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
}

.footer-social .youtube:hover {
    background: #ff0000;
}


/* BOTTOM */

.footer-bottom {
    width: 100%;

    border-top:
        1px solid
        rgba(255,216,77,.25);

    background:
        rgba(0,0,0,.25);
}

.footer-bottom-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding:
        17px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #bfc9e8;

    font-size: 11px;
}

.footer-bottom strong {
    color: #ffd84d;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns:
            1.4fr
            1fr
            1fr;

        gap: 35px;
    }

    .footer-contact {
        grid-column: span 1;
    }
}


@media (max-width: 800px) {

    .footer-container {
        grid-template-columns:
            1fr 1fr;

        padding:
            40px 25px 35px;

        gap: 35px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-bottom-container {
        flex-direction: column;

        text-align: center;

        padding:
            15px 20px;
    }
}


@media (max-width: 550px) {

    .footer-container {
        grid-template-columns: 1fr;

        padding:
            35px 20px 30px;

        gap: 30px;
    }

    .footer-about {
        grid-column: span 1;

        text-align: center;
    }

    .footer-about h3::after {
        left: 50%;

        transform:
            translateX(-50%);
    }

    .footer-logo {
        width: 75px;
        height: 75px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }

}