﻿:root {
    --footer-bg: #0b0f1a;
    --accent-blue: #6366f1;
    --text-slate: #94a3b8;
}

.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 0 0;
    color: var(--text-slate);
    font-family: 'Inter', sans-serif;
}

.footer-main {
    padding-bottom: 50px;
}

.footer-title {
    color: #f8fafc;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    display: block;
}

/* System Status Glow */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blink {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Links & Icons */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--text-slate);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(5px);
            display: inline-block;
        }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

    .footer-contact-item i {
        color: var(--accent-blue);
        margin-top: 3px;
    }

/* Flag Badges */
.flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Social Grid */
.social-grid {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    color: var(--text-slate);
    transition: 0.3s;
    text-decoration: none;
}

    .social-item:hover {
        background: var(--accent-blue);
        color: #fff;
        transform: translateY(-3px);
    }

/* Newsletter Section */
.footer-newsletter-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
}

.footer-input-group {
    display: flex;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 3px;
}

    .footer-input-group input {
        background: transparent;
        border: none;
        color: #fff;
        padding: 8px 12px;
        flex: 1;
        outline: none;
        font-size: 0.85rem;
    }

.btn-footer-send {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

/* Bottom Bar */
.footer-bottom {
    background: #060910;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.tech-badge {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: #fff;
    font-size: 0.75rem;
    opacity: 0.8;
}
