/* ============================================
   PREMIUM NEXUS FOOTER STYLES
   ============================================ */

.nexus-footer {
    background: #000814;
    /* Deep space black/blue */
    color: #ffffff;
    font-family: inherit;
}

/* --- Top Contact Strip --- */
.footer-contact-strip {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.footer-contact-strip .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4b5563;
}

.footer-contact-strip .contact-item i {
    color: var(--sn-primary);
    font-size: 1rem;
}

.footer-contact-strip .contact-item a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-strip .contact-item a:hover {
    color: var(--sn-primary);
}

.footer-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social-links a {
    width: 34px;
    height: 34px;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--sn-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-social-links a.wa-link:hover {
    background: #25D366;
    /* WhatsApp Green */
}

/* --- Main Footer Body --- */
.footer-main {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #000814 0%, #001d3d 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.footer-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

.footer-logo-text span {
    color: var(--sn-primary);
}

.footer-about-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--sn-primary);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.btn-footer-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--sn-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.btn-footer-cta:hover {
    background: #ffffff;
    color: var(--sn-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aws-badge {
    height: 40px;
    filter: brightness(0) invert(1);
}

.badge-fallback {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    padding: 25px 0;
    background: #000814;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-nav li {
        display: inline-block;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .footer-contact-strip {
        padding: 15px 0;
    }

    .footer-main {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-about-text {
        margin: 0 auto;
    }

    .footer-badge {
        justify-content: center;
    }

    .footer-nav li {
        display: block;
        margin-right: 0;
    }
}