/* ========================================= */
/* BLACK FOOTER STYLES                       */
/* ========================================= */

.footer {
    background: #0a0b14;
    color: #ffffff;
    padding: 120px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;

    @media (max-width: 768px) {
        padding: 60px 0 60px;
    }

}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-row {
    display: flex;
    gap: 70px;

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

.footer-col .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-col .logo span {
    color: #2563eb;
}

.footer-col p {
    color: #94a3b8;
    max-width: 250px;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.footer-newsletter {
    margin-bottom: 32px;
}

.footer-newsletter h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 320px;
}

.newsletter-form input {
    flex: 1;
    background: #11121d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: #2563eb;
}

.newsletter-form button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #11121d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #1d1e2b;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #64748b;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* RESPONSIVE FOOTER */
@media only screen and (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .footer-grid {
        flex-direction: column;
    }

    .footer-brand {
        flex: 0 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 576px) {
    .footer-row {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }

    .footer-newsletter {
        max-width: 100%;
        width: 100%;
    }

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}