/* ============================
   FOOTER — footer.css
   ============================ */

.footer {
    background: linear-gradient(160deg, #1a0a0a, #2d1010);
    color: #ccc;
    padding-top: 60px;
    margin-top: 0;
    border-top: 4px solid var(--red, #F21414);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.3fr;
    gap: 40px;
    padding: 0 28px 50px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 16px;
}

.footer-col h3 { font-size: 20px; font-weight: 900; }
.footer-col h4 { font-size: 15px; font-weight: 700; letter-spacing: 0.3px; }

.footer-tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D89A1D;
    margin-bottom: 12px !important;
}

.footer-col p {
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 8px;
    color: #bbb;
}

.footer-cin {
    font-size: 11.5px !important;
    color: #888 !important;
    font-family: 'Courier New', monospace;
    margin-top: 12px !important;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '→';
    font-size: 12px;
    color: #D89A1D;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s ease;
}

.footer-col ul li a:hover {
    color: #F2C14E;
    padding-left: 4px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* FOOTER BUTTONS */
.footer-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(242,20,20,0.30);
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242,20,20,0.42);
}

.footer-btn-wa {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    box-shadow: 0 4px 16px rgba(37,211,102,0.28);
    margin-left: 8px;
}

.footer-btn-wa:hover {
    box-shadow: 0 8px 24px rgba(37,211,102,0.42);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    padding: 18px 24px;
    font-size: 12.5px;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-sep { color: #444; }

.footer-bottom a {
    color: #D89A1D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: #F2C14E; }

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 50px;
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.float-btn .float-icon { font-size: 17px; line-height: 1; }

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
}

.float-btn.donate {
    background: linear-gradient(135deg, #F21414, #C90E0E);
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px 40px;
    }

    .footer-bottom {
        font-size: 11.5px;
        flex-direction: column;
        gap: 4px;
    }

    .footer-sep { display: none; }

    .floating-buttons {
        bottom: 16px;
        right: 14px;
    }

    .float-btn {
        padding: 10px 14px;
        font-size: 12.5px;
    }

    .float-btn span:last-child { display: none; }
    .float-btn { border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
    .float-btn .float-icon { font-size: 20px; }
}
