/* ===== FOOTER STYLING ===== */
footer {
    background-color: #0d0d0d;
    color: #f0f0f0;
    padding: 60px 5% 20px;
    border-top: 2px solid #222;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Footer animation when it's visible */
footer.anim-slide-up {
    transform: translateY(0);
    opacity: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Contact info icons - STILL RED */
.footer-section.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section.contact-info p i {
    color: #ff0000; /* Pula ang kulay ng contact icons */
    font-size: 1.2em;
    min-width: 20px;
}

/* Social icons styling - UPDATED to original brand colors */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

/* Facebook Icon Color */
.social-icons .fa-facebook {
    color: #3b5998; /* Orihinal na kulay ng Facebook Blue */
    font-size: 2.5em;
    transition: transform 0.3s ease;
}

/* Messenger Icon Color */
.social-icons .fa-facebook-messenger {
    color: #0084ff; /* Orihinal na kulay ng Messenger Blue */
    font-size: 2.5em;
    transition: transform 0.3s ease;
}

/* Email Icon Color */
.social-icons .fa-envelope {
    color: #c71610; /* Orihinal na kulay ng Gmail Red */
    font-size: 2.5em;
    transition: transform 0.3s ease;
}

/* Hover Effect for all social icons */
.social-icons a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8em;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .social-icons {
        justify-content: center;
    }
}