/* footer.css - Standard ZenyaLive Footer Styles */

footer {
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
    padding: 56px 0 24px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-grid { 
        grid-template-columns: 2fr 1fr 1fr 1fr; 
        gap: 60px; 
    }
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover { 
    color: var(--white); 
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom { 
        flex-direction: row; 
        justify-content: space-between; 
        text-align: left; 
    }
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* Logo Styles for Footer */
.logo-zenya {
    font-size: 1.875rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.logo-live {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #ec4899, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wave 2s infinite;
}

@media (min-width: 1281px) {
    .floating-wa {
        right: calc(50% - 610px);
    }
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    animation-play-state: paused;
}

@keyframes wave {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
