/* ========== FOOTER ========== */
footer {
    position: static;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--primary-color);
    z-index: 90;
    margin: 0;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
}

.footer-left h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-left p {
    margin-bottom: 0.5rem;
}

.footer-left a {
    color: #fff;
    text-decoration: none;
}

.footer-left a:hover {
    color: #ccc;
}

.footer-right h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-center p {
    margin: 0.5rem 0;
}

.footer-center a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.8rem;
}

.footer-center a:hover {
    color: #fff;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 2.2rem;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #fff;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 1rem;
        text-align: center;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
        width: 100%;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        flex: none;
        text-align: center;
    }

    .footer-left h3,
    .footer-center h3,
    .footer-right h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-left p,
    .footer-center p,
    .footer-right p {
        font-size: 0.9rem;
        margin: 0.5rem auto;
    }

    .footer-left a,
    .footer-center a,
    .footer-right a {
        font-size: 0.9rem;
    }
    
    .footer-social-title {
        display: none !important;
    }
    
    .footer-right a {
        margin: 0 0.8rem;
        font-size: 1.2rem;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.25rem 1rem;
        margin-top: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        flex: none;
        text-align: center;
    }

    .footer-left h3,
    .footer-center h3,
    .footer-right h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-left p,
    .footer-center p,
    .footer-right p {
        font-size: 0.85rem;
        margin: 0.3rem auto;
        word-break: break-word;
    }

    .footer-left a,
    .footer-center a,
    .footer-right a {
        font-size: 0.85rem;
    }
    
    .footer-social-title {
        display: none !important;
    }
    
    .footer-right a {
        margin: 0 0.5rem;
        font-size: 1rem;
        display: inline-block;
    }
}
