/* ========================================
   Footer Section
   ======================================== */
.footer {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0 var(--space-xl);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ========================================
   Footer Grid
   ======================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

/* ========================================
   Footer Column
   ======================================== */
.footer-col h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.footer-col p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: all var(--transition-base);
    position: relative;
    padding-right: var(--space-md);
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-base);
}

.footer-col ul li a:hover {
    color: var(--neon-blue);
    padding-right: var(--space-lg);
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-info li i {
    font-size: var(--text-lg);
    color: var(--neon-blue);
    width: 24px;
}

.contact-info li a {
    padding-right: 0 !important;
}

.contact-info li a::before {
    display: none;
}

.contact-info li a:hover {
    padding-right: 0 !important;
}

/* ========================================
   Footer Logo
   ======================================== */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-alo {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-logo .logo-cafe {
    color: var(--text-primary);
}

.footer-logo .logo-net {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* ========================================
   Footer Social
   ======================================== */
.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    font-size: var(--text-xl);
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social a:nth-child(1):hover {
    color: var(--telegram-color);
    border-color: var(--telegram-color);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
}

.footer-social a:nth-child(2):hover {
    color: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.footer-social a:nth-child(3):hover {
    color: var(--instagram-color);
    border-color: var(--instagram-color);
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.4);
}

/* ========================================
   Footer Bottom
   ======================================== */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-muted);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Footer Responsive
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--space-3xl) 0 var(--space-lg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .footer-col:first-child {
        grid-column: auto;
    }
    
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-col ul li a {
        justify-content: center;
        padding-right: 0;
    }
    
    .footer-col ul li a::before {
        display: none;
    }
    
    .footer-col ul li a:hover {
        padding-right: 0;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }
    
    .footer-grid {
        gap: var(--space-lg);
    }
    
    .footer-logo {
        font-size: var(--text-xl);
    }
    
    .footer-col h4 {
        font-size: var(--text-base);
    }
    
    .footer-col p,
    .footer-col ul li a {
        font-size: var(--text-xs);
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: var(--text-lg);
    }
    
    .footer-bottom p {
        font-size: var(--text-xs);
    }
}