.footer {
    background: linear-gradient(180deg, #1c1c1c 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    letter-spacing: -0.3px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #376be6 0%, #6470ef 100%);
}

.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #376be6;
}

.footer p {
    color: #b3b3b3;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
}

.footer a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #376be6;
    text-decoration: none;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: #376be6;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer .copyright {
    color: #b3b3b3;
    font-size: 0.9rem;
    letter-spacing: -0.2px;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links li {
    margin-bottom: 0.75rem;
}

.footer .footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
}

.footer .footer-links a:hover {
    color: #376be6;
    padding-left: 5px;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 3rem 0 1.5rem;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}
