/* --- DARK THEME FOOTER STYLING --- */
footer.site-footer {
    padding: 90px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 80px;
    background: #060816;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

footer.site-footer h3 {
    color: #fff;
    font-size: 1.2rem;
}

footer.site-footer a {
    transition: color 0.3s ease;
}

footer.site-footer a:hover {
    color: #06b6d4 !important;
}

.newsletter {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 18px 22px;
    border: none;
    outline: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    min-width: 260px;
    flex: 1;
}

.newsletter button {
    padding: 18px 28px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter button:hover {
    opacity: 0.9;
}

/* --- FLOATING SYSTEMS HUB --- */
.floating-support-hub {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    font-family: 'Space Grotesk', sans-serif;
}



.floating-chat-btn {
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(6, 182, 212, .35);
}

.support-card-pop {
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(15, 18, 38, .95);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    max-width: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    color: #fff;
}

@media(max-width: 980px) {
    nav.desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .newsletter {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    footer.site-footer h3 {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    .footer-meta-badges {
        flex-wrap: wrap;
        gap: 12px !important;
    }
}

@media(max-width: 480px) {
    footer.site-footer p {
        font-size: 14px;
    }
}