﻿.jx-footer {
    width: 100%;
    color: #fff;
    background: #10233b url(../images/footer.jpg) center center no-repeat;
    background-size: cover;
}

.jx-footer-main {
    width: 100%;
}

.jx-footer-inner {
    min-height: 326px;
    padding: 40px 0 35px;
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1.35fr;
    column-gap: 78px;
}

/* About */
.jx-footer-about {
    padding-top: 0;
}

.jx-footer-logo {
    display: inline-block;
}

.jx-footer-logo img {
    display: block;
    width: 277px;
    max-width: 100%;
    height: auto;
}

.jx-footer-desc {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    line-height: 21px;
}

.jx-footer-about-line {
    width: 290px;
    max-width: 100%;
    height: 1px;
    margin-top: 30px;
    background: rgba(255, 255, 255, .14);
}

.jx-footer-follow {
    margin-top: 28px;
}

.jx-footer-follow > span {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.jx-footer-social {
    display: flex;
    align-items: center;
}

.jx-footer-social a {
    width: 28px;
    height: 28px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, .22);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.jx-footer-social a:hover {
    background: #0a5ef3;
    color: #fff;
}

.jx-footer-x {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

/* Columns */
.jx-footer-column {
    padding-top: 4px;
}

.jx-footer-column h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.jx-footer-title-line {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 16px 0 18px;
    background: rgba(255, 255, 255, .18);
}

.jx-footer-title-line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 2px;
    background: #0a5ef3;
}

.jx-footer-column ul {
    margin: 0;
    padding: 0;
}

.jx-footer-column ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 22px;
}

.jx-footer-column ul li a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.jx-footer-column ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Contact */
.jx-footer-contact ul li {
    display: flex;
    align-items: flex-start;
}

.jx-footer-contact ul li i {
    width: 20px;
    margin-top: 4px;
    margin-right: 4px;
    flex-shrink: 0;
    color: #fff; text-align:center;
    font-size: 15px;
}

.jx-footer-contact ul li span {
    flex-shrink: 0;
    color: #fff;
}

.jx-footer-contact ul li a:hover {
    padding-left: 0;
    color: #0a5ef3;
}

/* Copyright */
.jx-footer-copy {
    width: 100%;
    height: 51px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 14px;
    line-height: 51px;
    text-align: center;
}

.jx-service-tools {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 999;
    width: 64px;
    padding: 12px 10px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 30px rgba(18, 38, 63, .10);
    transform: translateY(-50%);
}

.jx-service-item {
    position: relative;
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25364a;
    text-decoration: none;
}

.jx-service-item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 24px;
    height: 1px;
    background: #e8edf3;
    transform: translateX(-50%);
}

.jx-service-item img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: all .25s ease;
}

.jx-service-item:hover img {
    transform: translateY(-2px);
}

.jx-service-top {
    height: 48px;
}

.jx-service-top i {
    color: #25364a;
    font-size: 25px;
    transition: all .25s ease;
}

.jx-service-item:hover .jx-service-top i,
.jx-service-top:hover i {
    color: #0a5ef3;
    transform: translateY(-2px);
}

.jx-service-tip {
    position: absolute;
    right: 58px;
    top: 50%;
    min-width: 110px;
    padding: 8px 12px;
    background: #0a5ef3;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translate(8px, -50%);
    transition: all .2s ease;
    pointer-events: none;
}

.jx-service-tip:after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -6px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #0a5ef3;
}

.jx-service-item:hover .jx-service-tip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}



.mobile-fixed-tools {
    display: none;
}




@media screen and (max-width: 767px) {

   .jx-footer {
           background-position: center center;
       }
   
       .jx-footer-inner {
           min-height: 0;
           padding: 35px 0 25px;
           display: block;
       }
   
       .jx-footer-about {
           width: 100%;
       }
   
       .jx-footer-logo img {
           width: 220px;
       }
   
       .jx-footer-desc {
           margin-top: 20px;
           font-size: 14px;
           line-height: 22px;
       }
   
       .jx-footer-about-line {
           margin-top: 22px;
       }
   
       .jx-footer-follow {
           margin-top: 20px;
       }
   
       .jx-footer-social a {
           margin-right: 14px;
       }
   
       .jx-footer-column {
           margin-top: 30px;
           padding-top: 0;
       }
   
       .jx-footer-column h3 {
           font-size: 17px;
       }
   
       .jx-footer-title-line {
           margin: 12px 0 15px;
       }
   
       .jx-footer-column ul li {
           margin-bottom: 7px;
           font-size: 14px;
       }
   
       .jx-footer-copy {
           height: auto;
           padding: 14px 0;
           font-size: 13px;
           line-height: 22px;
       }

    .jx-service-tools {
        display: none;
    }




    .mobile-fixed-tools {
        position: fixed;
        z-index: 9999;
        right: 6px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-fixed-tools .mobile-fixed-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        color: #fff;
        font-size: 1.25rem;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(8, 75, 196, .22);
    }

    .mobile-fixed-bom,
    .mobile-fixed-contact {
        background: linear-gradient(
            270deg,
            #084bc4 0%,
            #0a5ef3 100%
        );
    }

    .mobile-fixed-whatsapp {
        background: #25D366;
    }

    .mobile-fixed-top {
        border: 1px solid #d9e6ff;
        background: #fff;
        color: #0a5ef3 !important;
    }

}



/* Responsive enhancements */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .jx-footer-inner {
        grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
        column-gap: 36px;
    }

    .jx-footer-logo img {
        width: 240px;
    }

    .jx-footer-desc {
        font-size: 14px;
    }

    .jx-service-tools {
        right: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .jx-footer-inner {
        min-height: 0;
        padding: 34px 0 30px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 48px;
    }

    .jx-footer-logo img {
        width: 230px;
    }

    .jx-footer-column {
        padding-top: 0;
    }

    .jx-footer-title-line {
        margin: 12px 0 15px;
    }

    .jx-service-tools {
        right: 10px;
        width: 56px;
        padding: 10px 7px;
    }

    .jx-service-item {
        width: 42px;
        height: 48px;
    }

    .jx-service-tip {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .jx-footer-inner {
        padding-top: 28px;
    }

    .jx-footer-logo img {
        width: 200px;
    }

    .jx-footer-desc br {
        display: none;
    }

    .jx-footer-social {
        flex-wrap: wrap;
        gap: 10px;
    }

    .jx-footer-social a {
        margin-right: 0;
    }

    .jx-footer-copy {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mobile-fixed-tools {
        right: 5px;
        bottom: 14px;
        gap: 6px;
    }

    .mobile-fixed-tools .mobile-fixed-item {
        width: 40px;
        height: 40px;
    }
}
