#footer {
    width: 100%;
    color: #eeeeeeb4;
    background: url('../images/logo/logo.png') center / cover no-repeat;
    text-transform: capitalize;
}

#footer_top {
    background-color: rgba(0, 0, 0, 0.85);
}

#foot_div {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding: 2rem 1.5rem;
}

.foot {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
}

.foot h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: underline;
}

.foot ul {
    padding: 0;
    margin: 0;
}

.foot ul li {
    list-style: none;
    margin-bottom: 0.4rem;
    text-align: center;
}

.foot ul li:first-child {
    cursor: pointer;
}

.foot ul li:first-child:hover {
    color: #f4f4f4;
}

.foot ul li a {
    color: #eeeeeeb4;
    text-decoration: none;
}

.foot ul li a:hover {
    color: #f4f4f4;
}

#footer_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(33, 121, 154, 0.8);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Social icon base */
.foot .social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #eeeeeeb4;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Facebook */
.foot .social a.facebook i {
    color: #1877f2;
}

/* X / Twitter */
.foot .social a.twitter i {
    color: #555;
}

/* LinkedIn */
.foot .social a.linkedin i {
    color: #0a66c2;
}

/* YouTube */
.foot .social a.youtube i {
    color: #ff0000;
}

/* Hover effect */
.foot .social a:hover {
    color: #f4f4f4;
    transform: translateX(4px);
}


/* Donate Overlay */
#donateOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#donateOverlay.active {
    display: flex;
}

.donate-box {
    background: #f4f4f4;
    color: #666;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: popIn 0.3s ease;
}

.donate-box h4 {
    margin-bottom: 0.5rem;
}

.floatingDonate {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Button */
#floatingDonateBtn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #ff4d6d, #ff1e4d);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    transition: all .25s ease;
}

/* Hover */
#floatingDonateBtn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .4);
}

/* Click */
#floatingDonateBtn:active {
    transform: scale(.95);
}

/* Label */
.floating-label {
    background: #fff;
    color: #333;

    padding: 4px 10px;
    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

@keyframes popIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Donate amount buttons */
.donate-amounts {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.amount-btn {
    background: #f1f1f1;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.amount-btn.active {
    background: #dc3545;
    color: #fff;
}


/* Floating donate button */
.floatingDonate {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

#floatingDonateBtn {
    background: #dc3545;
    color: #f4f4f4;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}