/* ==================== STICKY CALL BUTTON ==================== */

.nt-sticky-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.js-enabled .nt-sticky-call {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-enabled .nt-sticky-call.visible {
    opacity: 1;
    transform: scale(1);
}

.nt-sticky-call__button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 30px var(--glow-5),
        0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    position: relative;
    z-index: 10000;
}

.nt-sticky-call__button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 50px var(--glow-9),
        0 15px 40px rgba(0, 0, 0, 0.6);
}

.nt-sticky-call__icon {
    font-size: 20px;
    animation: phoneRing 2s ease-in-out infinite;
}

.nt-sticky-call__text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==================== FOOTER SECTION ==================== */

.nt-footer {
    position: relative;
    width: 100%;
    padding: 80px 20px 0;
    background: var(--color-black);
    overflow: hidden;
    margin-top: 100px;
}

.nt-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0px 0px 8px var(--glow-3);
    z-index: 1;
}

.nt-footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.nt-footer__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    left: -150px;
}

.nt-footer__glow--2 {
    width: 500px;
    height: 500px;
    /* background: var(--color-secondary); */
    bottom: -100px;
    right: -150px;
}

.nt-footer__container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nt-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glow-2);
    opacity: 0;
    transform: translateY(30px);
}

/* Company Info Column */
.nt-footer__company {
    max-width: 400px;
}

.nt-footer__logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 16px;
    /* text-shadow removed - using .neon-text class instead */
}

.nt-footer__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.nt-footer__tagline-highlight {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Quick Links Column */
.nt-footer__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nt-footer__nav {
    list-style: none;
}

.nt-footer__nav-item {
    margin-bottom: 14px;
}

.nt-footer__nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.nt-footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--color-primary);
}

.nt-footer__nav-link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.nt-footer__nav-link:hover::after {
    width: 100%;
}

/* Contact Column */
.nt-footer__contact-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.nt-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--glow-05);
    border: 1px solid var(--glow-1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nt-footer__contact-item:hover {
    background: var(--glow-05);
    border-color: var(--glow-3);
    transform: translateX(5px);
    box-shadow: 0 0 20px var(--glow-2);
}

.nt-footer__contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 255, 0, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary);
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(208, 255, 0, 0.3);
}

.nt-footer__contact-text {
    flex: 1;
}

.nt-footer__contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.nt-footer__contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.nt-footer__contact-value a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nt-footer__contact-value a:hover {
    color: var(--color-primary);
}

/* Footer Bottom */
.nt-footer__bottom {
    padding: 30px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.nt-footer__credit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.nt-footer__credit-highlight {
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .nt-footer__main {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nt-footer {
        padding: 60px 20px 0;
        margin-top: 80px;
    }

    .nt-sticky-call {
        bottom: 20px;
        right: 20px;
    }

    .nt-sticky-call__button {
        padding: 16px 24px;
        font-size: 15px;
    }

    .nt-sticky-call__icon {
        font-size: 18px;
    }

    .nt-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .nt-footer__company {
        max-width: 100%;
    }

    .nt-footer__logo {
        font-size: 24px;
    }

    .nt-footer__title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nt-footer {
        padding: 50px 15px 0;
    }

    .nt-sticky-call {
        bottom: 15px;
        right: 15px;
    }

    .nt-sticky-call__button {
        padding: 14px 20px;
        font-size: 14px;
        gap: 10px;
    }

    .nt-footer__logo {
        font-size: 22px;
    }

    .nt-footer__tagline {
        font-size: 14px;
    }

    .nt-footer__contact-item {
        padding: 14px;
        gap: 12px;
    }

    .nt-footer__contact-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .nt-footer__credit {
        font-size: 13px;
    }
}