/* ===== Footer Styles ===== */

.footer {
    background-color: #1a1a1a;
    /* Dark background for contrast */
    color: #f0f0f0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.3rem;
    color: #e6b422;
    /* Gold/yellow tone */
    margin-bottom: 15px;
    border-bottom: 2px solid #e6b422;
    padding-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e6b422;
    /* Gold on hover */
}

.footer-section.social .social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    font-size: 22px;
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icons a.facebook:hover {
    color: #3b5998;
    /* Facebook Blue */
}

.social-icons a.instagram:hover {
    color: #e4405f;
    /* Instagram Pink */
}

.social-icons a.tiktok:hover {
    color: #000000;
    /* TikTok Black */
}

.social-icons a.twitter:hover {
    color: #1da1f2;
    /* Twitter Blue */
}

.social-icons a.linkedin:hover {
    color: #0077b5;
    /* LinkedIn Blue */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding: 18px 0 12px;
    font-size: 14px;
    color: #888;
    margin-top: 30px;
}


/* Responsive */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        gap: 20px;
    }
    .footer-section {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .footer-section h4 {
        margin-bottom: 10px;
    }
    .footer-section ul {
        padding: 0;
    }
    .footer-section ul li {
        margin: 10px 0;
    }
    .footer-section.social .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }
    .footer-bottom {
        font-size: 13px;
        padding: 12px 10px;
        line-height: 1.4;
    }
}