/* ═══════════════════════════════════════════════
   UP XP — Footer
   ═══════════════════════════════════════════════ */

.modern-footer {
    background: #0a0a0a;
    color: #f0f0f0;
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(60, 195, 14, 0.25), transparent);
}

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

.footer-content {
    padding: 2rem 0 1.2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 130px;
}

.footer-brand {
    flex: 1.4;
}

.footer-logo {
    margin-bottom: 0.6rem;
}

.footer-logo-img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    object-fit: cover;
    padding: 2px;
    background: linear-gradient(135deg, #3cc30e 0%, #00ff1e 50%, #209c29 100%);
    box-shadow: 0 0 12px rgba(60, 195, 14, 0.3);
}

.footer-description {
    color: #666;
    line-height: 1.55;
    margin-bottom: 0;
    font-size: 0.78rem;
}

.footer-title {
    color: #f0f0f0;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: #3cc30e;
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #3cc30e;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    font-size: 0.78rem;
}

.contact-item i {
    width: 14px;
    color: #3cc30e;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.company-details p {
    color: #666;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.5;
}

.company-details strong {
    color: #f0f0f0;
    font-weight: 600;
    font-size: 0.8rem;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.4rem;
    padding: 0.3rem 0.6rem;
    background: rgba(60, 195, 14, 0.08);
    border: 1px solid rgba(60, 195, 14, 0.25);
    border-radius: 6px;
    color: #3cc30e;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.company-link:hover {
    background: rgba(60, 195, 14, 0.15);
    border-color: #3cc30e;
}

.company-link i {
    font-size: 0.7rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 0.7rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-bottom p {
    color: #555;
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.2rem;
}

.footer-bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #3cc30e;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-column {
        flex: 1 1 28%;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 16px;
    }

    .footer-content {
        padding: 1.5rem 0 1rem;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-contact {
        align-items: center;
    }

    .company-details {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

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