.footer-cta {
    position: relative;
    z-index: 2;
}

.footer-cta__inner {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 17px 0 196px;
    z-index: 1;

    &::after {
        content: "";
        background: white;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

    @media (max-width: 992px) {
        padding: 30px 0;
    }

    .common-title {
        margin-bottom: 4px;
    }
}

.footer-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 20px;
}

.footer-cta__content .contact-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
}

.footer-cta__content .contact-list li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-cta__content .contact-list li img {
    height: 16px;
    width: auto;
}

.footer-cta__content .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-2);
    color: #fff;
    padding: 1px 5px 1px 10px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--color-2);
}

.footer-cta__content .btn-contact img {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

.footer-cta__content .btn-contact:hover {
    background: white;
    color: var(--color-2);
}

.footer-cta__content .btn-contact:hover img {
    transform: rotate(45deg);
}

.main-footer {
    background: linear-gradient(180deg, var(--color-2), var(--color-1));
    /* Dark Navy Background */
    color: #fff;
    padding: 80px 0 0;
    font-size: 15px;

    @media (max-width: 991px) {
        padding: 30px 0 20px;
    }
}

.footer-logo {
    margin-bottom: 25px;

    img {
        max-width: 240px;
    }
}

.footer-intro {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;

    ul {
        display: flex;
        gap: 12px;
        list-style: none;
        padding: 0;

        li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            transition: all 0.3s ease;

            img {}

            &:hover {
                background: var(--color-3);
                transform: translateY(-3px);
            }
        }
    }
}

.footer-col {
    margin-bottom: 35px;

    h2 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 30px;
        position: relative;
        letter-spacing: 0.05em;

        @media (max-width: 767px) {
            margin-bottom: 20px;
            font-size: 16px;
        }

        @media (max-width: 576px) {
            font-size: 13px;
        }
    }
}

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

    li {
        margin-bottom: 12px;

        a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;

            &::before {
                content: "›";
                font-size: 18px;
                font-weight: bold;
                color: var(--color-3);
                line-height: 1;
            }

            &:hover {
                color: var(--color-3);
                padding-left: 5px;
            }
        }
    }
}

/* Certification Section (Dynamic) */
.footer-cert-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.footer-cert-wrap ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);

    a {
        color: inherit;

        &:hover {
            color: var(--color-3);
        }
    }

    &::before {
        content: "";
        width: 18px;
        height: 18px;
        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238cb744'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
        mask-size: contain;
        background-color: var(--color-3);
        flex-shrink: 0;
    }
}

.footer-award-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Contact Info Section */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;

    li {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;

        .icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            opacity: 0.6;
            margin-top: 2px;
        }

        strong {
            color: #fff;
            display: block;
            margin-bottom: 5px;
        }
    }
}

.footer-btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-3);
    /* Branded orange/gold */
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    &::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3E%3C/svg%3E") no-repeat center;
        background-size: contain;
    }

    &:hover {
        background: var(--color-4);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
}

/* Footer Bottom Bar */
.footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    margin-top: 30px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    text-align: center;

    a {
        color: inherit;

        &:hover {
            text-decoration: underline;
        }
    }
}

.footer-bottom__inner {}

/* CMS Content Styling for Footer */
.footer-links-wrap ul,
.footer-contact-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-wrap ul li {
    margin-bottom: 12px;

    a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;

        &::before {
            content: "›";
            font-size: 18px;
            font-weight: bold;
            color: var(--color-3);
            line-height: 1;
        }

        &:hover {
            color: var(--color-3);
            padding-left: 5px;
        }
    }
}

.footer-contact-wrap ul li {
    /* display: flex; */
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;

    &:last-child {
        margin-bottom: 0;
    }

    /* &::before {
        content: "";
        width: 18px;
        height: 18px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        flex-shrink: 0;
        opacity: 0.6;
        margin-top: 3px;
    } */

    /* &:nth-child(1)::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    }

    &:nth-child(2)::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    }

    &:nth-child(3)::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    }

    &:nth-child(4)::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95a15.65 15.65 0 0 0-1.38-3.56A8.03 8.03 0 0 1 18.92 8zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56A7.987 7.987 0 0 1 5.08 16zm2.95-8H5.08a7.987 7.987 0 0 1 4.33-3.56A15.65 15.65 0 0 0 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95a8.03 8.03 0 0 1-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z'/%3E%3C/svg%3E");
    } */
}

.footer-bottom .social-media {
    display: flex;
    align-items: center;
    gap: 15px;

    ul {
        display: flex;
        align-items: center;
        gap: 5px;

        li {
            list-style: none;
        }
    }
}

.footer-bottom .social-media span {
    margin-right: 5px;
}

.footer-bottom .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-2);
    border-radius: 50%;
    transition: transform 0.3s;
}

.footer-bottom .social-media a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom .social-media a:hover {
    transform: scale(1.1);
}

/* .copyright a {
    color: var(--color-1);
} */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--color-3);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap .backtotop-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--color-3);
    transition: all 200ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-wrap:hover {
    background-color: var(--color-2, var(--color-4));
    border-color: var(--color-2, var(--color-4));
}

.progress-wrap:hover .backtotop-icon {
    color: #fff;
}

.progress-wrap:hover svg.progress-circle path {
    stroke: #fff;
}

@media (max-width: 992px) {
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 40px;
        width: 40px;
    }
}

#side-contact-buttons {
    position: fixed;
    right: 0;
    /* top: 75%;
    transform: translateY(-50%); */
    bottom: 200px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: linear-gradient(198deg, var(--color-3) 0%, var(--color-4) 100%);
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.side-contact-mobile-toggle {
    display: none;
}

.side-contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 55px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.side-contact-item:last-child {
    border-bottom: none;
}

.side-contact-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.side-contact-icon img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1);
}

.side-contact-text {
    font-size: 14px;
    font-weight: 700;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 0;
    overflow: hidden;
}

#side-contact-buttons:hover .side-contact-item {
    width: 240px;
}

#side-contact-buttons:hover .side-contact-icon {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 15px;
    margin-right: 15px;
    width: 41px;
}

#side-contact-buttons:hover .side-contact-text {
    opacity: 1;
    visibility: visible;
    max-width: 180px;
}

.side-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 992px) {
    .footer-first {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    #side-contact-buttons {
        background: none;
        box-shadow: none;
        border-radius: 0;
        bottom: 80px;
        right: 20px;
        top: auto;
        transform: none;
        overflow: visible;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .side-contact-mobile-toggle {
        display: flex;
        width: 50px;
        height: 50px;
        background: var(--color-4);
        border-radius: 50%;
        color: #fff;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        position: relative;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .toggle-slider {
        position: relative;
        width: 26px;
        height: 26px;
    }

    .toggle-slider img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        filter: brightness(0) invert(1);
        animation: contactIconFade 6s infinite;
    }

    .toggle-slider img:nth-child(1) {
        animation-delay: 0s;
    }

    .toggle-slider img:nth-child(2) {
        animation-delay: 1.5s;
    }

    .toggle-slider img:nth-child(3) {
        animation-delay: 3s;
    }

    .toggle-slider img:nth-child(4) {
        animation-delay: 4.5s;
    }

    @keyframes contactIconFade {

        0%,
        15% {
            opacity: 0;
            transform: scale(0.8);
        }

        20%,
        40% {
            opacity: 1;
            transform: scale(1);
        }

        45%,
        100% {
            opacity: 0;
            transform: scale(0.8);
        }
    }

    .toggle-close {
        display: none;
        width: 24px;
        height: 24px;
    }

    #side-contact-buttons.is-active .toggle-slider {
        display: none;
    }

    #side-contact-buttons.is-active .toggle-close {
        display: block;
    }

    #side-contact-buttons.is-active .side-contact-mobile-toggle {
        background: #ff4757;
        transform: rotate(90deg);
    }

    .side-contact-items-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 15px;
        margin-bottom: 15px;
        pointer-events: none;
    }

    #side-contact-buttons.is-active .side-contact-items-wrap {
        pointer-events: auto;
    }

    .side-contact-item {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        /* Force fixed size */
        border-radius: 50%;
        background: var(--color-4);
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: visible;
    }

    #side-contact-buttons.is-active .side-contact-item {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition-delay: calc(var(--i) * 0.08s);
    }

    #side-contact-buttons:hover .side-contact-item {
        width: 50px;
    }

    .side-contact-icon {
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 26px !important;
    }

    .side-contact-text {
        position: absolute;
        right: 60px;
        background: #fff;
        color: #333;
        padding: 5px 12px;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        max-width: none;
        transform: translateX(10px);
        transition: all 0.3s ease;
        margin-left: 0;
    }

    .side-contact-text::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 6px solid #fff;
    }

    .side-contact-item:hover .side-contact-text,
    #side-contact-buttons.is-active .side-contact-item .side-contact-text {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    #button-contact-vr {
        transform: scale(0.6);
        bottom: 35px;
    }
}

@media (max-width: 768px) {
    .footer-bottom .tag {
        width: calc(25% - 10px);
    }
}

/*# sourceMappingURL=maps/footer.css.map */