

        /* ==========================================================================
           9. FOOTER
           ========================================================================== */
        .site-footer { background-color: var(--our-black); color: #ffffff; padding: 60px 0 30px; font-size: 0.9rem; margin-top: auto; border-top: 4px solid var(--our-gold); font-family: 'Poppins', sans-serif; }
        .footer-links-horizontal a { color: #ccc !important; text-decoration: none; transition: color 0.3s ease; font-size: 0.95rem; margin: 0 10px;}
        .footer-links-horizontal a:hover { color: var(--our-gold) !important; }
        .social-icons a { color: white; font-size: 1.5rem; margin-right: 15px; transition: color 0.3s ease; }
        .social-icons a:hover { color: var(--our-gold); }
        .footer-divider { border: none; height: 1px; background-color: rgba(255,215,0,0.3); margin: 30px 0; opacity: 1; }
        .consolidation-text { font-size: 0.8rem; color: #aaa; line-height: 1.6; max-width: 850px; margin: 0 auto; }
        .legal-text { font-size: 0.75rem; color: #aaa; line-height: 1.5; margin-bottom: 5px; }
        .text-gold { color: var(--our-gold) !important; text-decoration: none; }
        .copyright-text { font-size: 0.75rem; color: #aaa; }
        .footer-badge-img { height: 45px; width: auto; object-fit: contain; transition: all 0.3s ease; filter: grayscale(20%); margin-right: 10px;}
        .footer-badge-img:hover { transform: scale(1.1); filter: grayscale(0%) drop-shadow(0 0 5px rgba(255,215,0,0.5)); }
        /* =========================================
   BACK TO TOP BUTTON (GLOBAL)
   ========================================= */
#backToTopBtn {
    display: none; /* Nakatago muna by default */
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 9999;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: var(--our-gold, #FFD700);
    color: var(--our-black, #2b2b2b);
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 50px; /* Bilog na design */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
}

#backToTopBtn.show {
    display: block;
    opacity: 1;
}

#backToTopBtn:hover {
    background-color: var(--our-black, #2b2b2b);
    color: var(--our-gold, #FFD700);
    transform: translateY(-5px); /* Umaangat pag tinapatan ng mouse */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    #backToTopBtn {
        bottom: 60px;
        right: 20px;
        padding: 10px 15px;
        font-size: 1rem;
    }
}
        
