.modern-footer {
    --footer-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --footer-accent: #3b82f6;
    --footer-accent-glow: rgba(59, 130, 246, 0.15);
    --footer-text: #9ca3af;
    --footer-text-hover: #ffffff;
    --footer-heading: #ffffff;
    --footer-border: rgba(255, 255, 255, 0.08);
    --footer-ease: cubic-bezier(0.16, 1, 0.3, 1);

    font-family: var(--footer-font);
    background: linear-gradient(160deg, #1e2532 0%, #111827 40%, #0b0f19 100%);
    color: var(--footer-text);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}


.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--footer-accent) 0%, #6366f1 50%, var(--footer-accent) 100%);
    background-size: 200% 100%;
    animation: footerShimmer 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes footerShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.modern-footer::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}


.footer-main {
    padding: 4.5rem 0 3rem;
    position: relative;
    z-index: 1;
}


.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: auto;
    max-width: 140px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-description {
    font-family: var(--footer-font);
    font-size: 0.84rem;
    line-height: 1.75;
    color: var(--footer-text);
    margin: 0;
    max-width: 260px;
}


.footer-title {
    font-family: var(--footer-font);
    color: var(--footer-heading);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding-bottom: 0.85rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--footer-accent);
    border-radius: 1px;
    transition: width 0.4s var(--footer-ease);
}

.col-lg-3:hover .footer-title::after,
.col-lg-2:hover .footer-title::after {
    width: 48px;
}


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

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

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    font-family: var(--footer-font);
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 400;
    transition: color 0.25s ease, transform 0.25s var(--footer-ease);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--footer-accent);
    transition: width 0.25s var(--footer-ease);
}

.footer-links a:hover {
    color: var(--footer-text-hover);
    transform: translateX(6px);
}

.footer-links a:hover::before {
    width: 8px;
}


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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--footer-text);
    font-family: var(--footer-font);
    font-size: 0.84rem;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--footer-accent);
    transition: transform 0.3s var(--footer-ease);
}

.contact-item:hover svg {
    transform: scale(1.15);
}

.contact-item a {
    color: var(--footer-text);
    text-decoration: none;
    font-family: var(--footer-font);
    font-weight: 500;
    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: var(--footer-text-hover);
}


.footer-social h6 {
    font-family: var(--footer-font);
    color: #d1d5db;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s var(--footer-ease);
    border: 1px solid var(--footer-border);
}

.social-link:hover {
    background: var(--footer-accent-glow);
    color: var(--footer-accent);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.social-link i {
    font-size: 1rem;
}


.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 1.25rem 0;
    border-top: 1px solid var(--footer-border);
    position: relative;
    z-index: 1;
}

.copyright {
    font-family: var(--footer-font);
    margin: 0;
    font-size: 0.78rem;
    color: #6b7280;
    letter-spacing: 0.01em;
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-family: var(--footer-font);
    font-size: 0.78rem;
    font-weight: 500;
}

.payment-methods span {
    letter-spacing: 0.03em;
}

.payment-methods i {
    font-size: 1.4rem;
    opacity: 0.45;
    transition: all 0.25s ease;
}

.payment-methods i:hover {
    opacity: 0.9;
    transform: scale(1.1);
}



@media (max-width: 991px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-title {
        margin-top: 2rem;
    }

    .footer-brand .footer-title {
        margin-top: 0;
    }

    .footer-bottom-right {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-description {
        max-width: 100%;
    }

}

@media (max-width: 767px) {
    .modern-footer {
        margin-top: 2rem;
    }

    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .copyright {
        text-align: center;
        font-size: 0.72rem;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    .payment-methods {
        font-size: 0.72rem;
    }

    .payment-methods i {
        font-size: 1.25rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}
