/* =========================================================
   T.K BUSINESS CONSULTING
   PREMIUM FOOTER
========================================================= */

.tk-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* =========================================================
   FOOTER TOP
========================================================= */

.tk-footer__top {
    position: relative;

    padding: 90px 0 78px;

    background-color: #ffffff;

    background-size: contain !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;

    isolation: isolate;
}

/*
|--------------------------------------------------------------------------
| VERY LIGHT OVERLAY
|--------------------------------------------------------------------------
| Keep this extremely light so foot.webp remains clearly visible.
*/

.tk-footer__top::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.04) 55%,
        rgba(255, 255, 255, 0.07) 100%
    );

    pointer-events: none;
}

/* Content above background */

.tk-footer__top > .container {
    position: relative;
    z-index: 5;
}

/* =========================================================
   FOOTER WIDGET
========================================================= */

.tk-footer__widget {
    position: relative;
    z-index: 6;
}

/* =========================================================
   BRAND / LOGO
========================================================= */

.tk-footer__logo {
    margin-bottom: 22px;
}

.tk-footer__logo img {
    width: auto !important;
    height: 76px !important;
    max-width: 190px !important;

    object-fit: contain;

    display: block;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.tk-footer__description {
    max-width: 365px;

    margin: 0 0 24px;

    color: #667085;

    font-size: 13.5px;
    font-weight: 400;

    line-height: 1.85;
}

/* =========================================================
   SOCIAL
========================================================= */

.tk-footer__social {
    margin-top: 8px;
}

.tk-footer__social-label {
    display: block;

    margin-bottom: 12px;

    color: #17213a;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tk-footer__social .social-list {
    display: flex;
    align-items: center;

    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.tk-footer__social .social-list li {
    margin: 0;
    padding: 0;
}

.tk-footer__social .social-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    border: 1px solid rgba(29, 67, 254, 0.12);

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow: 0 5px 18px rgba(20, 40, 80, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.tk-footer__social .social-link img {
    width: 17px;
    height: 17px;

    opacity: 0.78;

    filter: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.tk-footer__social .social-link:hover {
    transform: translateY(-3px);

    border-color: #1d43fe;

    background: #ffffff;

    box-shadow: 0 9px 22px rgba(29, 67, 254, 0.13);
}

.tk-footer__social .social-link:hover img {
    opacity: 1;

    transform: scale(1.08);
}

/* =========================================================
   WIDGET TITLES
========================================================= */

.tk-footer .footer__widget-title {
    position: relative;

    display: inline-block;

    margin: 0 0 25px;

    color: #17213a;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;
}

.tk-footer .footer__widget-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 30px;
    height: 2px;

    border-radius: 20px;

    background: #1d43fe;
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.tk-footer .footer__widget-link {
    margin: 0;
    padding: 0;

    list-style: none;
}

.tk-footer .footer__widget-link li {
    margin-bottom: 11px;
}

.tk-footer .footer__widget-link li:last-child {
    margin-bottom: 0;
}

.tk-footer .footer__widget-link a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #68738a;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.tk-footer__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #edf1ff;

    color: #1d43fe;

    font-size: 7px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.tk-footer .footer__widget-link a:hover {
    color: #1d43fe;

    transform: translateX(3px);
}

.tk-footer .footer__widget-link a:hover .tk-footer__link-icon {
    background: #1d43fe;

    color: #ffffff;

    transform: translateX(1px);
}

/* =========================================================
   NEWSLETTER
========================================================= */

.tk-footer__newsletter-widget {
    position: relative;

    padding: 22px 23px 23px;

    border: 1px solid rgba(29, 67, 254, 0.08);

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.82);

    box-shadow: 0 12px 35px rgba(20, 40, 80, 0.06);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tk-footer__newsletter-text {
    margin: 0 0 14px;

    color: #6d7689;

    font-size: 12.5px;
    line-height: 1.75;
}

/* =========================================================
   NEWSLETTER NOTE
========================================================= */

.tk-footer__newsletter-note {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: flex-start !important;

    flex-wrap: nowrap !important;

    gap: 7px !important;

    width: 100%;

    margin: 0 0 10px !important;

    padding: 0 !important;
}

.tk-footer__newsletter-note i {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 14px !important;

    width: 14px !important;
    height: 14px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #1d43fe !important;

    font-size: 11px !important;

    line-height: 1 !important;
}

.tk-footer__newsletter-note span {
    display: inline-block !important;

    flex: 0 1 auto !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #8992a3 !important;

    font-size: 10.5px !important;
    font-weight: 600;

    line-height: 1.4 !important;

    white-space: nowrap;
}

/* =========================================================
   NEWSLETTER FORM
========================================================= */

.tk-footer__newsletter-form,
.footer__newsletter-form {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    height: 48px;

    overflow: hidden;

    border: 1px solid #e4e8f0;

    border-radius: 10px;

    background: #ffffff;

    box-shadow: 0 5px 18px rgba(20, 40, 80, 0.05);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.tk-footer__newsletter-form:focus-within {
    border-color: rgba(29, 67, 254, 0.45);

    box-shadow: 0 6px 20px rgba(29, 67, 254, 0.08);
}

.tk-footer__newsletter-form input,
.footer__newsletter-form input {
    flex: 1;

    width: 100%;
    height: 100%;

    min-width: 0;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #17213a;

    font-size: 12px;
}

.tk-footer__newsletter-form input::placeholder,
.footer__newsletter-form input::placeholder {
    color: #a2a9b7;

    opacity: 1;
}

.tk-footer__newsletter-form button,
.footer__newsletter-form button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    margin-right: 4px;

    padding: 0;

    border: 0;

    border-radius: 8px;

    background: #1d43fe;

    color: #ffffff;

    font-size: 11px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.tk-footer__newsletter-form button:hover,
.footer__newsletter-form button:hover {
    background: #1537d8;

    transform: translateX(1px);

    box-shadow: 0 5px 14px rgba(29, 67, 254, 0.25);
}

/* =========================================================
   SVG DECORATIVE SHAPES
========================================================= */

.tk-footer__shapes {
    position: absolute;

    inset: 0;

    z-index: 4;

    pointer-events: none;

    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| IMPORTANT
|--------------------------------------------------------------------------
| Keep SVGs CLEAR and visible.
*/

.tk-footer .footer__shape-wrap img {
    position: absolute;

    display: block;

    opacity: 1 !important;

    visibility: visible !important;

    filter: none !important;

    mix-blend-mode: normal !important;

    pointer-events: none;
}

/* Shape 01 */

.tk-footer .footer__shape-wrap img:nth-child(1) {
    opacity: 0.95 !important;
}

/* Shape 02 */

.tk-footer .footer__shape-wrap img:nth-child(2) {
    opacity: 0.92 !important;
}

/* Shape 03 */

.tk-footer .footer__shape-wrap img:nth-child(3) {
    opacity: 0.88 !important;
}

/*
|--------------------------------------------------------------------------
| Keep SVG behind text but above background image
|--------------------------------------------------------------------------
*/

.tk-footer__shapes img {
    z-index: 4;
}

.tk-footer__top .container {
    z-index: 5;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.tk-footer__bottom {
    position: relative;

    z-index: 10;

    padding: 18px 0;

    background: #0b1633;
}

.tk-footer__bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.tk-footer__copyright {
    margin: 0;
}

.tk-footer__copyright p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 11.5px;

    line-height: 1.6;
}

.tk-footer__developer {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 5px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 11.5px;

    line-height: 1.6;
}

.tk-footer__developer a {
    color: rgba(255, 255, 255, 0.88);

    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}

.tk-footer__developer a:hover {
    color: #ffffff;
}

.tk-footer__developer-dot {
    color: #1d43fe;

    font-size: 13px;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1199.98px) {
    .tk-footer__top {
        padding: 80px 0 70px;

        background-size: 105% auto !important;
    }

    .tk-footer__newsletter-widget {
        padding: 20px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 991.98px) {
    .tk-footer__top {
        padding: 70px 0 65px;

        background-size: 115% auto !important;
    }

    .tk-footer__description {
        max-width: 100%;
    }

    .tk-footer__newsletter-widget {
        max-width: 520px;
    }

    .tk-footer__bottom-inner {
        align-items: flex-start;
    }
}

/* =========================================================
   RESPONSIVE — SMALL TABLET
========================================================= */

@media (max-width: 767.98px) {
    .tk-footer__top {
        padding: 60px 0 55px;

        background-size: 135% auto !important;

        background-position: center bottom !important;
    }

    .tk-footer__widget {
        margin-bottom: 5px;
    }

    .tk-footer__newsletter-widget {
        margin-top: 5px;
    }

    .tk-footer__bottom-inner {
        flex-direction: column;

        justify-content: center;
        align-items: center;

        text-align: center;

        gap: 5px;
    }

    .tk-footer__developer {
        justify-content: center;

        flex-wrap: wrap;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 575.98px) {
    .tk-footer__top {
        padding: 50px 0 45px;

        background-size: 165% auto !important;

        background-position: center bottom !important;
    }

    .tk-footer__logo img {
        height: 68px !important;

        max-width: 175px !important;
    }

    .tk-footer__description {
        font-size: 13px;

        line-height: 1.8;
    }

    .tk-footer .footer__widget-title {
        font-size: 15px;
    }

    .tk-footer .footer__widget-link a {
        font-size: 12.5px;
    }

    .tk-footer__newsletter-widget {
        padding: 19px;
    }

    .tk-footer__newsletter-note span {
        font-size: 10px !important;

        white-space: normal;
    }

    .tk-footer__newsletter-form,
    .footer__newsletter-form {
        height: 46px;
    }

    .tk-footer__bottom {
        padding: 16px 0;
    }

    .tk-footer__copyright p,
    .tk-footer__developer {
        font-size: 10.5px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
    .tk-footer__top {
        background-size: 185% auto !important;
    }

    .tk-footer__social .social-link {
        width: 36px;
        height: 36px;
    }

    .tk-footer__newsletter-widget {
        padding: 17px;
    }
}

.tk-footer .footer__widget-link a.active {
    color: #1d43fe;
    font-weight: 600;
}

.tk-footer .footer__widget-link a.active .tk-footer__link-icon {
    background: #1d43fe;
    color: #ffffff;
}

.tk-footer .footer__widget-link a.active .tk-footer__link-icon i {
    color: #ffffff;
}
