/* Footer Styles */

footer {
    background: linear-gradient(135deg, #0a1929 0%, #1a2942 100%);
    color: #8b9db8;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
}

.brand-content h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00d9ff 0%, #0099ff 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.brand-content p {
    color: #8b9db8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.footer-column h3 {
    color: #4a9eff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #8b9db8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a9eff;
}

.social-section h3 {
    color: #4a9eff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(74, 158, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9eff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(74, 158, 255, 0.2);
    transform: translateY(-2px);
}

.social-description {
    font-size: 13px;
    color: #8b9db8;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 157, 184, 0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: #8b9db8;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8b9db8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9eff;
}

.footer-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8b9db8;
}

.badge i {
    font-size: 14px;
}

.uptime {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    
}

.uptime-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}