/* Footer Styles */
footer {
    background: linear-gradient(180deg, #0d0718 0, #0a0512 100%);
    color: #fff;
    border-top: 1px solid rgba(179, 0, 255, 0.3);
    position: relative;
    padding: 3rem 1rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #b300ff, #f0a);
}

footer .btn {
    margin-top: 1.5rem;
}

.neon-footer {
    background: linear-gradient(180deg, #0d0718 0, #0a0512 100%);
    color: #fff;
    border-top: 1px solid rgba(179, 0, 255, 0.3);
    position: relative;
    padding: 3rem 1rem 2rem;
}

.neon-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #b300ff, #f0a);
}

.footer-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 7, 24, 0.8), rgba(26, 15, 45, 0.9));
    z-index: 0;
}

.footer-contact,
.footer-locations,
.footer-main {
    z-index: 1;
    position: relative;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #f0a;
    text-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-nav a {
    color: #e2d9f3;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #b300ff, #f0a);
    transition: width 0.3s;
}

.footer-nav a:hover {
    color: #b300ff;
    text-shadow: 0 0 10px rgba(179, 0, 255, 0.7);
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: #e2d9f3;
    margin: 0;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #f0a;
    text-decoration: none;
    transition: 0.3s;
}

.footer-copyright a:hover {
    color: #b300ff;
    text-shadow: 0 0 8px rgba(179, 0, 255, 0.6);
}

.footer-locations {
    margin: 1.5rem 0;
    text-align: center;
}

.footer-locations nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.footer-locations a {
    color: #d8d8d8;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.footer-locations a:hover {
    color: #f0a;
    background: rgba(179, 0, 255, 0.1);
    text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

.footer-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(179, 0, 255, 0.2);
    text-align: center;
}

.footer-contact p {
    color: #e2d9f3;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .neon-footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    .footer-locations nav {
        gap: 0.5rem;
    }

    .footer-locations a {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-locations nav {
        gap: 0.3rem;
    }

    .footer-locations a {
        font-size: 0.75rem;
        padding: 0.2rem 0.3rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }
}