
/* =========================
   PREMIUM GLASS FOOTER
========================= */

.custom-footer{
    position:relative;
    background:#1a1a1a;
    padding:80px 20px;
    overflow:hidden;
}

/* BACKGROUND GLOW */
.custom-footer:before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-200px;
    left:-150px;
    z-index:0;
}

.custom-footer:after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    bottom:-220px;
    right:-150px;
    z-index:0;
}

/* MAIN BOX */
.footer-box{
    position:relative;
    z-index:2;

    max-width:1250px;
    margin:auto;

    padding:60px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;

    border-radius:32px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* =========================
   LEFT
========================= */

.footer-left{
    width:40%;
}

.footer-logo{
    width:260px;
    height:auto;
    margin-bottom:25px;
    filter:brightness(1.1);
}

.footer-left h2{
    color:#fff;
    font-size:32px;
    line-height:1.15;
    font-weight:500;
    letter-spacing:-1px;
    margin:0;
}

.footer-left h2 span{
    color:#9f9f9f;
}

/* =========================
   CENTER MENU
========================= */

.footer-center{
    width:30%;
    position:relative;
    padding-left:50px;
}

.footer-center:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:1px;
    height:100%;
    background:linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
}

.footer-center ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-center li{
    margin-bottom:18px;
}

.footer-center a{
    position:relative;
    color:#d8d8d8;
    text-decoration:none;
    font-size:18px;
    font-weight:400;
    transition:0.3s ease;
    display:inline-block;
}

.footer-center a:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:1px;
    background:#fff;
    transition:0.4s ease;
}

.footer-center a:hover{
    color:#fff;
    transform:translateX(5px);
}

.footer-center a:hover:after{
    width:100%;
}

/* =========================
   RIGHT SOCIAL
========================= */

.footer-right{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-right a{
    position:relative;

    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    color:#fff;
    font-size:20px;

    backdrop-filter:blur(10px);

    transition:all 0.35s ease;

    overflow:hidden;
}

/* ICON HOVER EFFECT */
.footer-right a:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.25),
        transparent
    );
    opacity:0;
    transition:0.4s;
}

.footer-right a:hover:before{
    opacity:1;
}

.footer-right a:hover{
    transform:translateY(-5px) scale(1.05);
    background:#fff;
    color:#000;
    box-shadow:0 10px 25px rgba(255,255,255,0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .footer-box{
        flex-direction:column;
        align-items:flex-start;
        padding:45px;
    }

    .footer-left,
    .footer-center{
        width:100%;
    }

    .footer-center{
        padding-left:0;
        padding-top:30px;
    }

    .footer-center:before{
        width:100%;
        height:1px;
        top:0;
        background:linear-gradient(
            to right,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );
    }

    .footer-right{
        flex-direction:row;
        padding-top:10px;
    }

    .footer-left h2{
        font-size:36px;
    }
}

@media(max-width:600px){

    .custom-footer{
        padding:50px 15px;
    }

    .footer-box{
        padding:30px 22px;
        border-radius:24px;
        gap:30px;
    }

    .footer-logo{
        width:210px;
    }

    .footer-left h2{
        font-size:28px;
        line-height:1.3;
    }

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

    .footer-right{
        width:100%;
        justify-content:flex-start;
        flex-wrap:wrap;
    }

    .footer-right a{
        width:48px;
        height:48px;
        border-radius:14px;
        font-size:17px;
    }
}


