/* ================= FOOTER ================= */

.footer{
    background: var(--gradient-dark);
    padding: 100px 5% 60px;
    color: var(--white);
    position: relative;
}

/* SUBTLE BOTTOM GRADIENT (NO DIRTY BLUR) */
.footer::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:120px;
    background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* ================= CONTAINER ================= */

.footer-container{
    display:grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap:50px;
}

/* ================= LOGO ================= */

.logo{
    font-size: 18px;
    font-weight:800;
    color:var(--primary-light);
}

.logo span{
    color:var(--primary);
}

/* ================= TEXT ================= */

.footer-desc{
    margin:15px 0;
    line-height:1.8;
    color:#eaf4ff;   /* CLEAN WHITE-BLUE */
    font-weight:500;
}

/* ================= HEADINGS ================= */

.footer-box h3{
    font-size:18px;
    margin-bottom:15px;
    font-weight:700;
    color:#ffffff;
}

/* FOLLOW TEXT */
.follow-title{
    margin-top:20px;
    font-weight:600;
}

/* ================= LINKS ================= */

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:10px;
    color:#dbeafe;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}

.footer-box ul li:hover{
    color:var(--primary-light);
    transform:translateX(5px);
}

/* ================= CONTACT ================= */

.contact-item{
    margin-bottom:10px;
    font-size:14px;
    color:#dbeafe;
}

/* ================= SOCIAL ================= */

.social{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.social a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    transition:0.3s;
    text-decoration: none;
    color: white;
}

.social a:hover{
    background:var(--gradient-main);
    transform:translateY(-5px);
}

/* ================= NEWSLETTER ================= */

.newsletter{
    display:flex;
    margin-top:15px;
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.1);
}

.newsletter input{
    flex:1;
    padding:12px;
    border:none;
    outline:none;
    background:transparent;
    color:#fff;
}

.newsletter input::placeholder{
    color:#cbd5e1;
}

.newsletter button{
    padding:0 20px;
    border:none;
    background:var(--gradient-main);
    color:#fff;
    cursor:pointer;
}

/* ================= BOTTOM ================= */

.footer-bottom{
    text-align:center;
    margin-top:50px;
    font-size:14px;
    color:#cbd5e1;

    /* REMOVE BLUR (IMPORTANT FIX) */
    opacity:0.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social{
        justify-content:center;
    }
}
.footer-box ul li a{
    text-decoration: none;
    color:#dbeafe;
    transition:0.3s;
    font-size:14px;
}

.footer-box ul li a:hover{
    color:var(--primary-light);
    transform:translateX(5px);
    display:inline-block;
}