/*! ====  FOOTER START  ===== */
:root {
    --footer-bg: #2c415c;
    --footer-dark: #0a1f36;
    --footer-accent: #ee3a2f;
    --footer-muted: #fff;
    --footer-border: #25364d;
}

.paper-cta {
    position: relative;
    width: 100%;
    padding: 64px 0 40px;
    background: #eef3f8;
    background-image: url("../img/icons/footer_bottom_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.paper-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(15, 40, 69, 0.08) 0%,
            rgba(15, 40, 69, 0.35) 100%
        ),
        radial-gradient(
            320px 320px at 15% 15%,
            rgba(255, 255, 255, 0.24) 0%,
            rgba(255, 255, 255, 0) 70%
        ),
        radial-gradient(
            380px 380px at 85% 5%,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0) 70%
        ),
        linear-gradient(
            120deg,
            rgba(82, 125, 166, 0.18) 0%,
            rgba(82, 125, 166, 0) 60%
        );
    pointer-events: none;
}

.paper-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.paper-cta__text h3 {
    margin-bottom: 24px;
    max-width: 720px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #25364d;
}

.paper-cta__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
    color: #25364d;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    background: var(--footer-accent);
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    white-space: nowrap;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(230, 57, 70, 0.34);
}

.cta-btn--disabled,
.cta-btn--disabled:hover {
    background: #93a4b6;
    color: #fff;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
    pointer-events: none;
}

.site-footer {
    position: relative;
    width: 100%;
    background: var(--footer-bg);
    color: #fff;
    overflow: hidden;
}

.site-footer__top,
.site-footer__middle,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__top {
    padding: 32px 0;
    border-bottom: 1px solid var(--footer-border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.contact-strip {
    width: 100%;
}

.contact-grid {
    display: flex;
    gap: 16px 32px;
    border-bottom: 1px solid #b6cce9;
    padding: 32px 0;
}

.contact-card {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 154px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.92;
}

.contact-icon--mail svg {
    width: 22px;
    height: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    color: var(--footer-muted);
    font-size: 14px;
    line-height: 1.5;
}

.contact-info .label {
    font-size: 14px;
    font-weight: 400;
    color: #b6cce9;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.site-footer__middle {
    padding: 45px 0 60px;
}

.middle-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 45px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ftr_brand_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer-logo {
    display: inline-flex;
}
.footer-logo .logo_img {
    width: 110px;
}

.footer-logo img {
    display: block;
    width: 100%;
}

.footer-desc {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--footer-muted);
    width: calc(100% - 130px);
}

.subscribe-form {
    display: flex;
    width: 100%;
}

.subscribe-form input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    background: #f4f5fb;
    border-radius: 8px 0 0 8px;
    color: #000;
    font-size: 13px;
    font-family: "Roboto";
    font-weight: 400;
}

.subscribe-form input::placeholder {
    color: #25364d;
}

.subscribe-form input:focus {
    outline: none;
    border-color: rgba(230, 57, 70, 0.8);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 10px;
    border: none;
    cursor: pointer;
    background: #25364d;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    font-family: "Roboto";
    border-radius: 0 8px 8px 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.btn-red:hover {
    background: #141e2c;
}

.btn-red:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(230, 57, 70, 0.26);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.footer-socials .sc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.footer-socials .sc:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.footer-socials img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px 45px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* .footer-column:nth-child(1) {
    min-width: 155px;
} */

.col-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 900;
    color: #b6cce9;
}

.col-title a {
    color: inherit;
    text-decoration: none;
}

.footer-column a {
    color: var(--footer-muted);
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #b6cce9;
}

.site-footer__bottom {
    padding: 24px 0;
    background: #25364d;
}

.bottom-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px 56px;
}

.bottom-left {
    display: inline-flex;
    margin-right: auto;
    font-size: 14px;
    font-weight: normal;
    color: var(--footer-muted);
}

.bottom-links {
    display: inline-flex;
    flex-wrap: wrap;
    width: auto;
    gap: 16px 44px;
    padding: 0;
    margin: 0 0 0 auto;
    list-style: none;
}

.bottom-links a {
    color: var(--footer-muted);
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #b6cce9;
}

.messenger-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msg {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1f3a5a;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.msg img {
    width: 22px;
    height: 22px;
}

.msg.whatsapp {
    background: #22c45e;
}

.msg.telegram {
    background: #25a4e1;
}

.msg:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.chat_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: auto;
}
.chat-fabs {
    display: flex;
    position: fixed;
    right: 16px;
    bottom: 96px;
    gap: 4px;
    z-index: 9999;
}
.has_notif {
    display: block;
    position: absolute;
    top: 4px;
    right: 6px;
    width: 6px;
    height: 6px;
    background-color: #ee3a2f;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1f3a5a;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.chat-btn img,
.chat-btn svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.chat-btn.whatsapp {
    background: #1877f2;
}

.chat-btn.telegram {
    background: #25a4e1;
}

.chat-btn.messenger {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.chat-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.scroll-top {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #25364d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    -webkit-transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    -moz-transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    -ms-transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    -o-transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.scroll-top svg {
    width: 18px;
    height: 18px;
}

.scroll-top:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.socials {
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 32px;
    height: 32px;
    transition: all 0.25s ease;
}

.socials li a img {
    display: block;
    width: 100%;
    height: 100%;
}

.socials li a:hover {
    transform: scale(1.08);
}

/* @media (max-width: 1180px) {
    .paper-cta__inner {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: auto;
    }

    .middle-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }
} */

@media (max-width: 1100px) {
    .middle-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .paper-cta {
        padding: 32px 0;
    }
    .paper-cta__inner {
        gap: 20px;
    }

    .paper-cta__text h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .paper-cta__text p {
        font-size: 14px;
    }

    .contact-grid {
        flex-wrap: wrap;
    }

    .site-footer__middle {
        padding: 20px 0;
    }
    .footer-brand {
        gap: 20px;
        padding: 0 0 20px;
        border-bottom: 1px solid #b6cce9;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 44px 24px;
    }

    .bottom-grid {
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% + 32px);
        margin-left: -16px;
    }
    .bottom-left {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0;
        order: 2;
    }
    .bottom-links {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 16px;
        margin: 0;
        padding: 0 0 24px;
        order: 1;
        border-bottom: 1px solid #b6cce9;
    }
    .chat_section {
        width: 100%;
        order: 3;
    }
    .chat-fabs {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .chat-btn {
        width: 44px;
        height: 44px;
    }

    .chat-btn img,
    .chat-btn svg {
        width: 20px;
        height: 20px;
    }
}

/*! ====  FOOTER FINISH  ===== */
