/* 🏆 World-Class SnapIT Ecosystem Footer */
.snapit-ecosystem-footer {
    background: linear-gradient(135deg, #f9f7f4 0%, #faf8f5 100%);
    border-top: 1px solid rgba(170, 51, 106, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.snapit-ecosystem-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(170, 51, 106, 0.3) 50%,
        transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #aa336a 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 320px;
    margin: 0;
}

/* Service Columns */
.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

/* ✨ Neon Pink/Magenta Links */
.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #aa336a;
    text-shadow: 0 0 8px rgba(170, 51, 106, 0.4);
    transform: translateX(4px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #aa336a, #ff1744);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(170, 51, 106, 0.3);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Service Status Indicators */
.service-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(170, 51, 106, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(170, 51, 106, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: rgba(170, 51, 106, 0.2);
    color: #aa336a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 51, 106, 0.2);
}

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

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .snapit-ecosystem-footer {
        padding: 3rem 0 2rem;
        margin-top: 4rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-brand h2 {
        font-size: 1.8rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }
}

/* Performance Optimizations */
.footer-links a,
.social-link {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-links a,
    .social-link,
    .status-dot {
        transition: none;
        animation: none;
    }
}

/* Focus States */
.footer-links a:focus,
.social-link:focus {
    outline: 2px solid #aa336a;
    outline-offset: 2px;
    border-radius: 4px;
}