/* ============================================
   NTPL FOOTER STYLES - BENTO GRID DESIGN
   ============================================ */

.ntpl-footer {
    background: linear-gradient(180deg, #0a0a12 0%, #060609 100%);
    color: #fff;
    padding: 60px 0 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.ntpl-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #89F336, #4FE0CB, transparent);
}

.ntpl-footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

/* ============================================
   BENTO GRID LAYOUT
   ============================================ */

.ntpl-footer__bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    padding-bottom: 40px;
}

/* Bento Card Base */
.ntpl-footer__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ntpl-footer__card:hover {
    border-color: rgba(137, 243, 54, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Brand Card */
.ntpl-footer__card--brand {
    grid-column: span 4;
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.04) 0%, transparent 100%);
}

.ntpl-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 14px;
}

.ntpl-footer__logo-icon svg {
    width: 36px;
    height: 36px;
}

.ntpl-footer__logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.ntpl-footer__desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 18px;
}

.ntpl-footer__social {
    display: flex;
    gap: 8px;
}

.ntpl-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #777;
    transition: all 0.3s ease;
}

.ntpl-footer__social a svg {
    width: 16px;
    height: 16px;
}

.ntpl-footer__social a:hover {
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-color: transparent;
    color: #0a0a12;
    transform: translateY(-2px);
}

/* Quick Links Card */
.ntpl-footer__card--links {
    grid-column: span 2;
}

.ntpl-footer__title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #89F336;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ntpl-footer__title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #89F336;
    border-radius: 50%;
}

.ntpl-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ntpl-footer__links a {
    font-size: 0.85rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ntpl-footer__links a:hover {
    color: #fff;
    padding-left: 8px;
}

/* Contact Card */
.ntpl-footer__card--contact {
    grid-column: span 3;
}

.ntpl-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ntpl-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ntpl-footer__contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(137, 243, 54, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ntpl-footer__contact-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
}

.ntpl-footer__contact-text a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ntpl-footer__contact-text a:hover {
    color: #89F336;
}

/* CTA Card */
.ntpl-footer__card--cta {
    grid-column: span 3;
    background: linear-gradient(135deg, #89F336 0%, #00BF33 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 28px 20px;
}

.ntpl-footer__card--cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 15px 40px rgba(137, 243, 54, 0.3);
}

.ntpl-footer__cta-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.ntpl-footer__cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a12;
}

.ntpl-footer__cta-sub {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
}

/* Stats Card */
.ntpl-footer__card--stats {
    grid-column: span 12;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.ntpl-footer__stat {
    text-align: center;
}

.ntpl-footer__stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ntpl-footer__stat-label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.ntpl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ntpl-footer__bottom p {
    font-size: 0.8rem;
    color: #444;
    margin: 0;
}

.ntpl-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.ntpl-footer__bottom-links a {
    font-size: 0.8rem;
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ntpl-footer__bottom-links a:hover {
    color: #89F336;
}

/* Created By Credit */
.ntpl-footer__credit {
    font-size: 0.8rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ntpl-footer__credit a {
    color: #89F336;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.ntpl-footer__credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #89F336;
    transition: width 0.3s ease;
}

.ntpl-footer__credit a:hover {
    color: #4FE0CB;
}

.ntpl-footer__credit a:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .ntpl-footer__bento {
        grid-template-columns: repeat(6, 1fr);
    }

    .ntpl-footer__card--brand {
        grid-column: span 6;
    }

    .ntpl-footer__card--links {
        grid-column: span 2;
    }

    .ntpl-footer__card--contact {
        grid-column: span 4;
    }

    .ntpl-footer__card--cta {
        grid-column: span 6;
    }

    .ntpl-footer__card--stats {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .ntpl-footer {
        padding: 50px 0 0;
    }

    .ntpl-footer__bento {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .ntpl-footer__card {
        padding: 20px;
        border-radius: 16px;
    }

    .ntpl-footer__card--brand {
        grid-column: span 4;
    }

    .ntpl-footer__card--links {
        grid-column: span 2;
    }

    .ntpl-footer__card--contact {
        grid-column: span 4;
    }

    .ntpl-footer__card--cta {
        grid-column: span 2;
    }

    .ntpl-footer__card--stats {
        grid-column: span 4;
        flex-wrap: wrap;
        gap: 16px;
    }

    .ntpl-footer__stat {
        width: calc(50% - 8px);
    }

    .ntpl-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ntpl-footer__bento {
        grid-template-columns: 1fr;
    }

    .ntpl-footer__card--brand,
    .ntpl-footer__card--links,
    .ntpl-footer__card--contact,
    .ntpl-footer__card--cta,
    .ntpl-footer__card--stats {
        grid-column: span 1;
    }

    .ntpl-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .ntpl-footer__bottom-links {
        gap: 16px;
    }
}