﻿
.site-footer {
    background: #12243b;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1 1 220px;
}

    .footer-col h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #ffffff;
    }

    .footer-col p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #d5dbe5;
    }

/* ===== SOCIAL ICONS (CENTERED FIX) ===== */
.social-links {
    display: flex;
    justify-content: center; /* ✅ CENTERED */
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

    .social-links a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.1rem;
        transition: transform 0.25s ease, background 0.25s ease;
    }

        .social-links a:hover {
            transform: translateY(-3px);
            background: #b8860b;
        }

/* =============================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #d5dbe5;
        text-decoration: none;
        font-size: 0.95rem;
    }

        .footer-links a:hover {
            color: #b8860b;
        }

.footer-col.newsletter {
    max-width: 300px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #b0b8c5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

@@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
