.footer-section {
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: #fff;
    padding: 70px 20px 20px;
    position: relative;
    overflow: hidden;
}

/* GRID */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    background-color: white;
    margin-bottom: 15px;
}

/* TEXT */
.footer-text {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.8;
}
.footer-text-small {
    color: #9CA3AF;
    font-size: 13px;
    margin-bottom: 15px;
}

/* TITLE */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}
.footer-title::after {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg,#E91E63,#6A1B9A);
    display: block;
    margin-top: 6px;
}

/* LINKS */
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

/* CONTACT */
.footer-contact p {
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 8px;
}
.footer-contact i {
    color: #E91E63;
    margin-right: 8px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: 0.3s;
}
.social-icons a:hover {
    background: linear-gradient(135deg,#E91E63,#6A1B9A);
    transform: translateY(-4px);
}

/* CTA */
.footer-cta {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-cta h4 {
    margin-bottom: 8px;
}
.footer-cta p {
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 12px;
}

.donate-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg,#E91E63,#6A1B9A);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}
.donate-btn:hover {
    transform: scale(1.05);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    color: #9CA3AF;
    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align:center;
    }
    .social-icons {
        justify-content:center;
    }
}