/* New Footer Styles */
.footer {
    background: linear-gradient(to top, rgba(15, 14, 23, 0.9), rgba(15, 14, 23, 0.7));
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/grid-pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    width: 25%;
    padding-right: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Syne', sans-serif;
}

.footer-logo p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.footer-links-container {
    width: 75%;
    display: flex;
    justify-content: space-between;
}

.footer-links-column {
    flex: 1;
    padding: 0 15px;
}

.footer-links-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Syne', sans-serif;
}

.footer-links-column a {
    display: block;
    padding: 5px 0;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-column a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-links-column a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    transform: translateX(5px);
}

.footer-links-column a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-logo p {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .footer-links-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links-column {
        margin-bottom: 30px;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links-column a::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
    }
    
    .footer-links-column a:hover {
        transform: translateY(-3px);
    }
    
    .footer-links-column a:hover::after {
        transform: translateX(-50%) scaleX(0.5);
    }
}
