footer.site-footer {
    background: linear-gradient(135deg, #182235 0%, #2f2454 100%);
    color: #ffffff;
    padding: 2.25rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Footer brand */
.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    margin-bottom: 0.65rem;
}

.footer-logo:hover,
.footer-logo:focus {
    color: #ffd700;
}

.footer-text,
.footer-copy {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    margin: 0;
}

/* Footer social buttons */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 215, 0, 0.7);
}

.footer-social-icon {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.footer-copy {
    text-align: right;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
    }
    header .container {
        padding-right: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-copy {
        text-align: left;
        white-space: normal;
    }
}
