/* Footer Glassmorphism */
.footer-glass {
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-container-glass {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Company Info */
.footer-logo-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon-glass {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.footer-logo-text-glass {
    display: flex;
    flex-direction: column;
}

.footer-logo-main-glass {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.footer-logo-sub-glass {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.footer-desc-glass {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-social-link-glass {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link-glass:hover {
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Columns */
.footer-title-glass {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links-glass {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-glass a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-glass a:hover {
    opacity: 1;
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-links-glass i {
    font-size: 0.7rem;
}

/* Contact */
.footer-contact-glass {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-glass li {
    display: flex;
    gap: 1rem;
    color: white;
}

.footer-contact-glass i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    flex-shrink: 0;
}

.footer-contact-glass strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-contact-glass a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-contact-glass a:hover {
    opacity: 1;
    color: #00d4ff;
}

/* Footer Bottom */
.footer-bottom-glass {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright-glass {
    color: white;
    opacity: 0.7;
}

.footer-legal-glass {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal-glass a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-legal-glass a:hover {
    opacity: 1;
    color: #00d4ff;
}

.footer-separator-glass {
    color: white;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-grid-glass {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-glass {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-grid-glass {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-glass {
        flex-direction: column;
        text-align: center;
    }
}
