/* =========================================
   FOOTER
========================================= */

.main-footer {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #061F33 0%,
            #0D1117 100%
        );

    color: #fff;

    padding: 85px 0 30px;

    border-top: 1px solid rgba(212, 175, 55, .18);

    overflow: hidden;
}


/* Subtle golden glow */

.main-footer::before {
    content: "";

    position: absolute;

    top: -180px;
    left: 50%;

    width: 500px;
    height: 300px;

    transform: translateX(-50%);

    background: rgba(212, 175, 55, .06);

    filter: blur(90px);

    pointer-events: none;
}


/* Footer content */

.footer-grid {
    position: relative;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 55px;

    z-index: 1;
}


/* Logo */

.footer-logo {
    height: 80px;

    margin-bottom: 22px;

    transition: transform .3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}


/* Headings */

.footer-col h3 {
    position: relative;

    margin-bottom: 24px;

    color: #ffd700;

    font-size: 18px;

    font-weight: 700;
}

.footer-col h3::after {
    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 9px;

    background: #d4af37;

    border-radius: 10px;
}


/* Text */

.footer-col p {
    line-height: 2;

    color: rgba(255, 255, 255, .82);

    opacity: 1;

    font-size: 14px;
}


/* Lists */

.footer-col ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 13px;
}


/* Links */

.footer-col a {
    position: relative;

    color: rgba(255, 255, 255, .82);

    text-decoration: none;

    transition:
        color .3s ease,
        padding .3s ease;
}

.footer-col a:hover {
    color: #ffd700;

    padding-right: 5px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    position: relative;

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .12);

    text-align: center;

    z-index: 1;
}


/* =========================================
   FOOTER ADMIN TEXT
========================================= */

.footer-admin-text {
    margin: 0 0 8px;

    color: rgba(255, 255, 255, .82);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   DESIGNED BY
========================================= */

.footer-designed-by {
    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-size: 13px;

    line-height: 1.5;

    white-space: nowrap;
}

.footer-designed-by a {
    display: inline;

    color: #d4af37;

    text-decoration: none;

    font-weight: 600;

    transition:
        color .3s ease,
        text-shadow .3s ease;
}

.footer-designed-by a:hover {
    color: #ffd700;

    text-shadow:
        0 0 12px rgba(212, 175, 55, .45);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .main-footer {
        padding: 65px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-col h3 {
        margin-bottom: 18px;
    }

    .footer-col h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col p {
        font-size: 13px;
    }

    .footer-col a:hover {
        padding-right: 0;
    }

    .footer-bottom {
        margin-top: 40px;

        padding-top: 20px;
    }

}









/* =========================================
   FOOTER SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 10px;
    padding: 10px 0 25px;
}

.footer-social a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    text-decoration: none;

    font-size: 23px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social a i {
    font-size: 22px;
    line-height: 1;
}

.footer-social a:hover {
    transform: translateY(-5px);
}








/* =========================================
   SOCIAL ICON COLORS
========================================= */

.footer-social a {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


/* Instagram */

.footer-social a:has(.bi-instagram):hover {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.12);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.25);
}


/* Telegram */

.footer-social a:has(.bi-telegram):hover {
    color: #229ed9;
    background: rgba(34, 158, 217, 0.12);
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.25);
}


/* WhatsApp */

.footer-social a:has(.bi-whatsapp):hover {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}


/* LinkedIn */

.footer-social a:has(.bi-linkedin):hover {
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.12);
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.25);
}


/* YouTube */

.footer-social a:has(.bi-youtube):hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.12);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.25);
}