/* ====== Header ====== */
:root {
    --maskan-header-offset: 143px;
}

.maskan-header {
    --accent: #225D77;
    --gold: rgba(197, 157, 99, 1);
    background: #fff;
}

.top-rail {
    height: 43px;
    background: var(--accent);
}

.navbar {
    padding-block: .45rem;
    border-bottom: 2px solid rgba(34, 93, 119, .18);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
    height: 100px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #1c1c1c;
    text-decoration: none;
}

.navbar-brand .logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.brand-text {

    font-weight: 400;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;

}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    color: #2b2b2b;
    padding: .4rem .75rem;
    border-radius: .5rem;
    transition: .15s ease;
    font-weight: 400;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;


}

.nav-link:hover {
    color: #fff !important;
    background: var(--accent);
    angle: 0deg;
    opacity: 1;
    border-radius: 4px;
    padding: 10px;
    gap: 10px;
}

.nav-link.active {
    background: var(--accent);
    color: #fff !important;
    angle: 0deg;
    opacity: 1;
    border-radius: 4px;
    padding: 10px;
    gap: 10px;

}

.btn-cta {
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    border: 1px solid transparent;
    padding: .5rem 1rem;
    border-radius: .5rem;
}


@media (max-width: 991.98px) {
    :root {
        --maskan-header-offset: 107px;
    }

    .navbar-collapse {
        padding: .75rem 0;
        border-top: 1px solid rgba(34, 93, 119, .12);
        margin-top: .5rem;
        background: #ffffff;
    }

    .navbar-nav {
        gap: .25rem;
    }

    .nav-link {
        padding: .6rem .75rem;
    }
}

.maskan-header.sticky-top {
    z-index: 1050;
}

.maskan-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}


.maskan-header {
    position: relative;
    z-index: 1100;
}

.maskan-header .navbar {
    min-height: 100px;
    height: auto;
}

@media (max-width: 991.98px) {
    .maskan-header .navbar {
        position: relative;
        min-height: 64px;
    }

    #mainNav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(34, 93, 119, .12);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
        display: none;
        z-index: 1090;
    }

    #mainNav.collapsing {
        height: auto !important;
        transition: none !important;
    }

    #mainNav.show {
        display: block;
    }

    .navbar-nav {
        padding: .5rem;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        z-index: 1079;
    }
}

.cta-pair {
    gap: .75rem;
}

.lang-badge {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn-cta {

    font-weight: 700;
    border: 1px solid transparent;
    padding: .5rem 1rem;
    border-radius: .5rem;
}

.mobile-cta-row {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.mobile-cta-row .btn-cta {
    flex: 1 1 auto;
    text-align: center;
}

@media (max-width: 991.98px) {
    .cta-pair {
        display: none !important;
    }

    .mobile-cta-row {
        display: flex;
    }
}
