.elementor-543 .elementor-element.elementor-element-bd0521c:not(.elementor-motion-effects-element-type-background), .elementor-543 .elementor-element.elementor-element-bd0521c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-543 .elementor-element.elementor-element-bd0521c{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-543 .elementor-element.elementor-element-bd0521c > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-34332f4 *//* ═══════════════════════════════════════════════════════════
   NJ DIGITAL SOLUTIONS - PREMIUM FOOTER
   Black & Yellow (#ffdb53) Color Scheme - Fully Responsive
   ═══════════════════════════════════════════════════════════ */

.nj-footer {
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.nj-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffdb53 0%, #ffd43b 50%, #ffdb53 100%);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER TOP SECTION
   ═══════════════════════════════════════════════════════════ */

.footer-top {
    padding: 60px 0 50px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffdb53;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffdb53 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT INFORMATION
   ═══════════════════════════════════════════════════════════ */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    color: #ffdb53;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    flex: 1;
}

.contact-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.contact-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #ffdb53;
}

.support-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffdb53;
    display: inline-block;
}

.phone-number:hover {
    color: #ffd43b;
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER LINKS
   ═══════════════════════════════════════════════════════════ */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffdb53;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffdb53;
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER DESCRIPTION
   ═══════════════════════════════════════════════════════════ */

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════════════════════════ */

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 219, 83, 0.1);
    border: 2px solid rgba(255, 219, 83, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffdb53;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-icon:hover {
    background: #ffdb53;
    color: #000000;
    border-color: #ffdb53;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 219, 83, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER BOTTOM SECTION
   ═══════════════════════════════════════════════════════════ */

.footer-bottom {
    background: #000000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 219, 83, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffdb53;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ═══════════════════════════════════════════════════════════ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffdb53 0%, #ffd43b 100%);
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #000000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 219, 83, 0.4);
}

.scroll-to-top svg {
    stroke: #000000;
    transition: stroke 0.3s ease;
}

.scroll-to-top:hover svg {
    stroke: #ffdb53;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Large Desktop */
@media screen and (max-width: 1400px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-top .footer-container {
        gap: 40px;
    }
}

/* Desktop & Laptop */
@media screen and (max-width: 1200px) {
    .footer-top .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .footer-column:last-child {
        grid-column: span 3;
        max-width: 600px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-top .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-column:last-child {
        grid-column: span 2;
        max-width: 100%;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 900px) {
    .footer-container {
        padding: 0 25px;
    }
    
    .footer-top .footer-container {
        gap: 35px;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column:last-child {
        grid-column: span 1;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .contact-item {
        gap: 12px;
        padding: 10px 0;
    }
    
    .contact-text p,
    .footer-links a,
    .footer-description {
        font-size: 14px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .copyright,
    .footer-bottom-links a {
        font-size: 13px;
    }
    
    /* Scroll Button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .footer-top {
        padding: 35px 0 25px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-top .footer-container {
        gap: 35px;
    }
    
    .footer-heading {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .footer-heading::after {
        width: 40px;
        height: 2px;
    }
    
    .contact-info {
        gap: 18px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-text p,
    .footer-links a,
    .footer-description {
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        padding: 18px 0;
    }
    
    .copyright,
    .footer-bottom-links a {
        font-size: 12px;
    }
    
    .footer-bottom-links {
        gap: 10px;
    }
    
    .scroll-to-top {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 16px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .footer-heading {
        font-size: 16px;
    }
    
    .contact-text p,
    .footer-links a,
    .footer-description {
        font-size: 12px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
    }
}

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY & PERFORMANCE
   ═══════════════════════════════════════════════════════════ */

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .nj-footer *,
    .nj-footer *::before,
    .nj-footer *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Accessibility */
.footer-links a:focus,
.footer-bottom-links a:focus,
.social-icon:focus,
.scroll-to-top:focus {
    outline: 2px solid #ffdb53;
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .nj-footer {
        background: white !important;
        color: black !important;
    }
    
    .scroll-to-top {
        display: none !important;
    }
    
    .social-links {
        display: none !important;
    }
}/* End custom CSS */