/* =====================================================
   LINAFLOW GLOBAL HEADER + FOOTER
===================================================== */


/* =====================================================
   HEADER
===================================================== */

.lf-site-header {

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    background:
        rgba(
            255,
            255,
            255,
            0.92
        );

    border-bottom:
        1px solid
        rgba(
            230,
            232,
            240,
            0.8
        );

    z-index: 99999;

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* =====================================================
   SCROLLED GLASS HEADER
===================================================== */

.lf-site-header.lf-header-scrolled {

    background:
        rgba(
            255,
            255,
            255,
            0.72
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.45
        );

    box-shadow:
        0 8px 30px
        rgba(
            20,
            30,
            60,
            0.08
        );

    backdrop-filter:
        blur(18px)
        saturate(160%);

    -webkit-backdrop-filter:
        blur(18px)
        saturate(160%);
}


/* =====================================================
   HEADER CONTAINER
===================================================== */

.lf-header-container {

    width:
        min(
            1200px,
            92%
        );

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   HEADER LOGO
===================================================== */

.lf-site-logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.lf-site-logo img {

    display: block;

    width: 145px;

    height: auto;

    max-height: 55px;

    object-fit: contain;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.lf-desktop-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 32px;

    margin-left: auto;
}


.lf-desktop-nav a {

    position: relative;

    display: inline-flex;

    align-items: center;

    color: #454b5a;

    font-size: 16px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    padding: 33px 0;

    text-decoration: none !important;

    border: none;

    transition:
        color .25s ease;
}


/* =====================================================
   REMOVE MENU UNDERLINE
===================================================== */

.lf-desktop-nav a::after {

    display: none !important;

    content: none !important;

    width: 0 !important;

    height: 0 !important;
}


.lf-desktop-nav a:hover {

    color: #d82d8f;

    text-decoration: none !important;

    border: none;
}


.lf-desktop-nav a.active {

    color: #d82d8f;

    text-decoration: none !important;

    border: none;
}


.lf-desktop-nav a:hover::after,
.lf-desktop-nav a.active::after {

    display: none !important;

    width: 0 !important;

}


/* =====================================================
   HEADER LINK RESET
===================================================== */

.lf-site-header a,
.lf-site-header a:hover,
.lf-site-header a:focus,
.lf-site-header a:active {

    text-decoration: none !important;

}


/* =====================================================
   HEADER CTA
===================================================== */

.lf-header-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        13px 20px;

    min-width: 112px;

    border-radius: 10px;

    color: #ffffff !important;

    background:
        linear-gradient(
            100deg,
            #e52b91,
            #813cdb,
            #087cff
        );

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

    box-shadow:
        0 8px 22px
        rgba(
            113,
            61,
            210,
            .14
        );

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.lf-header-cta span {

    font-size: 17px;

    line-height: 1;
}


.lf-header-cta:hover {

    color: #ffffff !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 13px 28px
        rgba(
            113,
            61,
            210,
            .23
        );
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.lf-mobile-menu-button {

    display: none;

    width: 44px;

    height: 44px;

    padding: 9px;

    border: 0;

    border-radius: 10px;

    background: #f5f6fa;

    cursor: pointer;
}


.lf-mobile-menu-button span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    border-radius: 20px;

    background: #20283a;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.lf-mobile-menu {

    display: none;

    background:
        rgba(
            255,
            255,
            255,
            .96
        );

    border-top:
        1px solid #edf0f5;

    box-shadow:
        0 18px 40px
        rgba(
            30,
            38,
            80,
            .10
        );

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);
}


.lf-mobile-menu nav {

    width:
        min(
            1200px,
            92%
        );

    margin: auto;

    padding:
        8px 0 20px;
}


.lf-mobile-menu a {

    display: block;

    padding:
        15px 5px;

    color: #3f4658;

    border-bottom:
        1px solid #f0f1f5;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none !important;
}


.lf-mobile-menu a:hover {

    color: #d62d8c;

    text-decoration: none !important;
}


.lf-mobile-menu
.lf-mobile-contact {

    margin-top: 12px;

    padding:
        14px 18px;

    border: 0;

    border-radius: 9px;

    text-align: center;

    color: #ffffff !important;

    background:
        linear-gradient(
            100deg,
            #e52b91,
            #087cff
        );
}


/* =====================================================
   MOBILE OPEN STATE
===================================================== */

.lf-site-header.mobile-open
.lf-mobile-menu {

    display: block;
}


.lf-site-header.mobile-open
.lf-mobile-menu-button
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);
}


.lf-site-header.mobile-open
.lf-mobile-menu-button
span:nth-child(2) {

    opacity: 0;
}


.lf-site-header.mobile-open
.lf-mobile-menu-button
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =====================================================
   TABLET HEADER
===================================================== */

@media (max-width: 1050px) {

    .lf-header-container {

        width: 94%;

        gap: 20px;
    }


    .lf-desktop-nav {

        gap: 20px;
    }


    .lf-desktop-nav a {

        font-size: 15px;

        padding:
            33px 0;
    }


    .lf-site-logo img {

        width: 130px;
    }

}


/* =====================================================
   MOBILE HEADER
===================================================== */

@media (max-width: 850px) {

    .lf-desktop-nav,
    .lf-header-cta {

        display: none;
    }


    .lf-mobile-menu-button {

        display: block;
    }


    .lf-header-container {

        min-height: 72px;

        width: 92%;
    }


    .lf-site-logo img {

        width: 130px;
    }

}


/* =====================================================
   SMALL MOBILE HEADER
===================================================== */

@media (max-width: 480px) {

    .lf-header-container {

        width: 90%;

        min-height: 68px;
    }


    .lf-site-logo img {

        width: 115px;
    }

}


/* =====================================================
   =====================================================
   FOOTER
   =====================================================
===================================================== */

.lf-site-footer {

    color: #ffffff;

    background: #10182d;

}


/* =====================================================
   FOOTER MAIN
===================================================== */

.lf-footer-main {

    padding:
        75px 0 65px;

}


.lf-footer-container {

    width:
        min(
            1180px,
            92%
        );

    margin: auto;

}


.lf-footer-main
.lf-footer-container {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.2fr;

    gap: 45px;

}


/* =====================================================
   FOOTER BRAND
===================================================== */

.lf-footer-brand {

    max-width: 290px;

}


.lf-footer-logo {

    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

}


.lf-footer-logo img {

    width: 145px;

    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 5px 15px
            rgba(
                255,
                255,
                255,
                .05
            )
        );
}


.lf-footer-brand p {

    margin: 0;

    color: #aab2c5;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   FOOTER SOCIAL
===================================================== */

.lf-footer-social {

    display: flex;

    gap: 9px;

    margin-top: 24px;

}


.lf-footer-social a {

    width: 36px;

    height: 36px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    color: #cbd1df;

    background:
        rgba(
            255,
            255,
            255,
            .07
        );

    font-size: 11px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.lf-footer-social a:hover {

    color: #ffffff;

    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #e52b91,
            #087cff
        );

}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.lf-footer-column h3 {

    margin:
        0 0 20px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;
}


.lf-footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;
}


.lf-footer-column li {

    margin-bottom: 12px;
}


.lf-footer-column li a {

    color: #9da6ba;

    font-size: 13px;

    text-decoration: none !important;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.lf-footer-column li a:hover {

    color: #ffffff;

    padding-left: 4px;

    text-decoration: none !important;
}


/* =====================================================
   FOOTER CONTACT
===================================================== */

.lf-footer-contact p {

    margin:
        0 0 14px;

    color: #9da6ba;

    font-size: 13px;

    line-height: 1.7;
}


.lf-footer-email,
.lf-footer-phone {

    display: block;

    margin-bottom: 9px;

    color: #dce1ec !important;

    font-size: 13px;

    text-decoration: none !important;
}


.lf-footer-email:hover,
.lf-footer-phone:hover {

    color: #ffffff !important;

    text-decoration: none !important;
}


.lf-footer-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 14px;

    padding:
        12px 16px;

    border-radius: 9px;

    color: #ffffff !important;

    background:
        linear-gradient(
            100deg,
            #e52b91,
            #813cdb,
            #087cff
        );

    font-size: 12px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.lf-footer-button:hover {

    color: #ffffff !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(
            113,
            61,
            210,
            .25
        );

}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.lf-footer-bottom {

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    padding:
        22px 0;
}


.lf-footer-bottom
.lf-footer-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.lf-footer-copyright {

    color: #7f899e;

    font-size: 12px;
}


.lf-footer-legal {

    display: flex;

    align-items: center;

    gap: 22px;
}


.lf-footer-legal a {

    color: #7f899e;

    font-size: 12px;

    text-decoration: none !important;

    transition:
        color .25s ease;
}


.lf-footer-legal a:hover {

    color: #ffffff;

    text-decoration: none !important;
}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .lf-footer-main
    .lf-footer-container {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 40px;
    }


    .lf-footer-brand {

        grid-column:
            1 / -1;

        max-width: 420px;
    }

}


@media (max-width: 650px) {

    .lf-footer-main {

        padding:
            55px 0 45px;
    }


    .lf-footer-main
    .lf-footer-container {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .lf-footer-brand {

        grid-column: auto;
    }


    .lf-footer-bottom
    .lf-footer-container {

        flex-direction: column;

        align-items: flex-start;
    }


    .lf-footer-legal {

        flex-wrap: wrap;

        gap:
            12px 20px;
    }

}


@media (max-width: 400px) {

    .lf-footer-logo img {

        width: 125px;
    }

}