/* ================================
   Footer Styles
   Dedicated CSS for consistent footer across all pages
   ================================ */

.footer {
    padding: 4rem var(--space-lg) 2rem;
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 26, 0.4);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-section {
    text-align: center;
    padding: 0 var(--space-md);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link.instagram:hover {
    color: #E1306C;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.social-link.facebook:hover {
    color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-link.line:hover {
    color: #06C755;
    box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
}

/* Footer Contact Info */
.footer-contact {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.contact-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================================
   Mobile Responsive - Footer
   ================================ */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-section {
        padding: 0;
    }

    .footer-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}