/* --- Footer Styling --- */
footer {
    background: rgba(3, 7, 18, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand .navbar-brand {
    padding: 0;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    background: rgba(255,255,255,0.05);
}

.social-icon:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}

.system-status {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
}

.status-dot {
    height: 8px;
    width: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px #00ff88;
}

.copyright-bar {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
/* --- Footer Map Styling --- */
.footer-map-container {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 180px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%) hue-rotate(180deg);
    /* This filter makes the map look like a blueprint/radar */
    opacity: 0.7;
    transition: 0.5s;
}

.footer-map-container:hover iframe {
    filter: grayscale(30%) invert(0%) contrast(100%) hue-rotate(0deg);
    opacity: 1;
}

.map-overlay-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 10px;
    border-radius: 4px;
    font-family: 'Rajdhani';
    font-size: 0.7rem;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    pointer-events: none;
}