/* ===== MODERN FOOTER STYLES ===== */
.footer-modern {
    background: #0f172a; /* Deep Slate for better Cyan contrast */
    color: #fff;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-grid-modern {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Footer Brand */
.footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-brand {
        align-items: flex-start;
    }
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.text-cyan {
    color: #00bcd4;
}

.footer-tagline {
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-socials {
        justify-content: flex-start;
    }
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}

.footer-socials a:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

/* Footer Headings */
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.footer-menu a {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-menu a:hover {
    color: #00bcd4;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-contact-list {
        align-items: flex-start;
    }
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    font-size: 13px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: #00bcd4;
    color: #fff;
    transform: scale(1.1);
}

.contact-item span,
.contact-item a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #fff;
}

/* Status Indicator */
.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.95); opacity: 1; }
}

.status-text {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

/* Footer Bottom */
.footer-bottom-modern {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-copyright, .footer-credits {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.footer-copyright a {
    color: #64748b;
    text-decoration: none;
    margin: 0 8px;
}

.footer-copyright a:hover {
    color: #fff;
}

.skope-link {
    display: inline-block;
    color: #00bcd4;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.skope-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .footer-brand, .footer-links-col, .footer-contact {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-menu a:hover {
        padding-left: 0;
        transform: scale(1.1);
    }
}