.footer {
    background-color: #0a0a0f;
    padding: 4rem 0 2rem;
    color: #fff;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-brand {
    margin-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #fc6067);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #6366f1, #8c54ff);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    color: #fff;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8c54ff);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link i {
    color: #6366f1;
    font-size: 1rem;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-link:hover i {
    color: #8c54ff;
}

.footer-newsletter {
    width: 100%;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    color: #fff;
    font-size: 0.95rem;
    width: 100%;
    margin-bottom: 0;
    height: 45px;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: #6366f1;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
    background: linear-gradient(135deg, #6366f1, #8c54ff);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: 45px;
}

.footer-newsletter button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-link-bottom {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link-bottom:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-newsletter {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-newsletter button {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }
}
