/* ========== FOOTER STYLES ========== */

footer {
    background: #0f0f0f;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

footer .social-section {
    text-align: center;
    margin-bottom: 2rem;
}

footer .social-heading {
    color: #00FF88;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* WhatsApp */
footer .social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

footer .social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* YouTube */
footer .social-icon.youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    color: #FF0000;
}

footer .social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

/* Telegram */
footer .social-icon.telegram {
    background: rgba(0, 136, 204, 0.1);
    border: 2px solid rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

footer .social-icon.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* X (Twitter) */
footer .social-icon.twitter {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    color: #00FF88;
}

footer .social-icon.twitter:hover {
    background: #00FF88;
    border-color: #00FF88;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* Instagram */
footer .social-icon.instagram {
    background: rgba(228, 64, 95, 0.1);
    border: 2px solid rgba(228, 64, 95, 0.3);
    color: #E4405F;
}

footer .social-icon.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

/* TikTok */
footer .social-icon.tiktok {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

footer .social-icon.tiktok:hover {
    background: #EE1D52;
    border-color: #EE1D52;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 29, 82, 0.3);
}

/* Copyright Section */
footer .copyright-section {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

footer .copyright-text {
    margin-bottom: 0.5rem;
}

footer .risk-warning {
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    footer .social-heading {
        font-size: 0.9rem;
    }
    
    footer .social-icons {
        gap: 0.8rem;
    }
    
    footer .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}