/* ===== FOOTER STYLES ===== */
.site-footer {
    background: #0b1a33;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p, .footer-col a {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

.footer-col a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #00bcd4;
}

/* Footer Logo */
.footer-logo img {
    width: 130px;
    margin-bottom: 15px;
}

/* Quick Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #00bcd4;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}
