/* ============================================================
   footer.css — No changes from original (was already clean)
   ============================================================ */

.simple-footer {
    background-color: #03070c;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 80px; width: auto;
    transition: filter 0.3s ease;
    filter: brightness(1.1);
}

.footer-brand p {
    color: #b3b3b3;
    font-size: 0.85rem;
    margin-top: 5px;
}

.footer-socials { display: flex; gap: 20px; }

.footer-socials .social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-socials .social-icon:hover {
    background: var(--primary-blue);
    color: #03070c;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p { color: #b3b3b3; font-size: 0.75rem; }

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
