/* UNIVERSAL GLASS FOOTER STYLES */
.glass-footer {
    background: #000000;
    /* Solid black ground per request */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
    position: relative;
    z-index: 100;
}

/* Nav Links (Horizontal) */
.footer-nav-link {
    color: #cbd5e1;
    /* Slate-300 */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-nav-link:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Social Icons */
.social-icon {
    color: #64748b;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.social-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.5));
}

@media (max-width: 768px) {
    .glass-footer {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .footer-nav-link {
        font-size: 12px;
    }
}