/* ==========================================================
   FOOTER.CSS — PREMIUM GLASSMORPHISM DEVELOPER FOOTER
   ========================================================== */

.site-footer {
    position: relative;
    z-index: 2;
    padding: 70px 0 30px;
    background: linear-gradient( 135deg, rgba(8, 15, 30, 0.95), rgba(15, 25, 50, 0.95) );
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}


    /* Background Glow */

    .site-footer::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        top: -120px;
        right: -100px;
        background: rgba(37,213,234,0.15);
        filter: blur(90px);
        border-radius: 50%;
    }

    .site-footer::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -100px;
        background: rgba(139,92,246,0.18);
        filter: blur(90px);
        border-radius: 50%;
    }



/* Main Grid */

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    z-index: 2;
}



/* Brand Section */

.footer-brand .logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: linear-gradient( 90deg, #25d5ea, #8b5cf6 );
    -webkit-background-clip: text;
    color: transparent;
}


.footer-brand p {
    max-width: 340px;
    color: #a8b3c7;
    line-height: 1.7;
    font-size: .95rem;
}



/* SOCIAL ICONS */

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}


    .social-row a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: #fff;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        backdrop-filter: blur(12px);
        font-size: 1.1rem;
        transition: .35s ease;
    }



        /* GitHub */

        .social-row a:nth-child(1):hover {
            background: #181717;
            color: white;
            transform: translateY(-6px) rotate(5deg);
            box-shadow: 0 0 25px rgba(255,255,255,.3);
        }



        /* LinkedIn */

        .social-row a:nth-child(2):hover {
            background: #0A66C2;
            color: white;
            transform: translateY(-6px);
            box-shadow: 0 0 25px rgba(10,102,194,.6);
        }



        /* Facebook */

        .social-row a:nth-child(3):hover {
            background: #1877F2;
            transform: translateY(-6px);
            box-shadow: 0 0 25px rgba(24,119,242,.6);
        }



        /* Instagram */

        .social-row a:nth-child(4):hover {
            background: linear-gradient( 45deg, #feda75, #d62976, #962fbf );
            transform: translateY(-6px);
            box-shadow: 0 0 30px rgba(214,41,118,.6);
        }





/* FOOTER TITLES */

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
}


    .footer-links h4::after,
    .footer-contact h4::after {
        content: "";
        width: 40px;
        height: 3px;
        position: absolute;
        left: 0;
        bottom: -8px;
        background: linear-gradient( 90deg, #25d5ea, #8b5cf6 );
        border-radius: 10px;
    }





/* QUICK LINKS */


.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}



    .footer-links ul a {
        color: #9ca8bb;
        text-decoration: none;
        transition: .3s ease;
        display: inline-block;
    }


        .footer-links ul a:hover {
            color: #25d5ea;
            transform: translateX(8px);
        }





/* CONTACT */

.footer-contact p {
    color: #b5c0d3;
    margin-bottom: 12px;
}



.footer-contact .email {
    display: block;
    color: #9ca8bb;
    margin-bottom: 18px;
    transition: .3s;
}


    .footer-contact .email:hover {
        color: #25d5ea;
    }



.email-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 30px;
    color: #25d5ea;
    border: 1px solid rgba(37,213,234,.5);
    background: rgba(37,213,234,.08);
    transition: .35s;
}



    .email-btn:hover {
        color: #06111f;
        background: #25d5ea;
        transform: translateY(-4px);
        box-shadow: 0 0 25px rgba(37,213,234,.5);
    }





/* COPYRIGHT */

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #8894aa;
    font-size: .9rem;
}





/* RESPONSIVE */


@media(max-width:980px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .footer-brand p {
        margin: auto;
    }


    .social-row {
        justify-content: center;
    }


    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


@media(max-width:480px) {

    .site-footer {
        padding: 50px 20px 25px;
    }


    .social-row a {
        width: 38px;
        height: 38px;
    }
}
