/* -- Minimalist Footer Styles -- */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-center {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-contact-simple {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact-simple p {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.footer-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .footer-contact-simple {
        flex-direction: column;
        gap: 0.5rem;
    }
}