/***
=============================================
Page Header (Responsive)
=============================================
***/

/* Varsayılan (Masaüstü) Stiller */
.page-header {
    position: relative;
    display: block;
    padding: 187px 0px 192px;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

    .page-header__bg::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(6, 46, 57);
        background: linear-gradient(90deg, rgba(6, 46, 57, 1) 13%, rgba(6, 46, 57, 0.8071603641456583) 35%, rgba(6, 46, 57, 0.5550595238095238) 60%, rgba(6, 46, 57, 0.4206057422969187) 100%);
        content: "";
        z-index: -1;
    }

.page-header__pattern {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    padding-left: 20px;
}

    .page-header__inner::before {
        position: absolute;
        top: -7px;
        left: 0;
        bottom: -12px;
        width: 5px;
        background: var(--logistiq-base);
        content: "";
        transition: all 0.3s ease; /* Geçiş efekti eklendi */
    }

    .page-header__inner h2 {
        color: var(--logistiq-white);
        font-size: 74px;
        line-height: 1.1em;
        font-weight: 700;
        text-transform: capitalize;
        letter-spacing: 0.02em;
        transition: font-size 0.3s ease; /* Geçiş efekti eklendi */
    }

    .page-header__inner .thm-breadcrumb {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 7px;
    }

        .page-header__inner .thm-breadcrumb li {
            color: var(--logistiq-white);
            font-size: 16px;
            line-height: 26px;
            font-weight: 700;
            text-transform: capitalize;
            margin-left: 5px;
            margin-right: 5px;
        }

            .page-header__inner .thm-breadcrumb li:first-child {
                margin-left: 0px;
            }

            .page-header__inner .thm-breadcrumb li:last-child {
                margin-right: 0px;
            }

            .page-header__inner .thm-breadcrumb li a {
                color: var(--logistiq-base);
                font-size: 16px;
                line-height: 26px;
                font-weight: 700;
                text-transform: capitalize;
            }

            .page-header__inner .thm-breadcrumb li span {
                position: relative;
                display: inline-block;
                font-size: 15px;
                line-height: 15px;
                font-weight: 700;
                top: 2px;
            }


/***
=============================================
Media Queries for Responsiveness
=============================================
***/

/* Tablet ve Küçük Masaüstü (991px ve altı) */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0px 120px;
    }

    .page-header__inner h2 {
        font-size: 60px;
    }
}

/* Küçük Tablet ve Büyük Telefonlar (767px ve altı) */
@media (max-width: 767px) {
    .page-header {
        padding: 90px 0px 90px;
    }

    .page-header__inner {
        padding-left: 0;
        text-align: center; /* İçeriği mobil için ortala */
    }

        .page-header__inner::before {
            display: none; /* Sol taraftaki dikey çizgiyi gizle */
        }

        .page-header__inner h2 {
            font-size: 48px;
        }

        .page-header__inner .thm-breadcrumb {
            justify-content: center; /* Breadcrumb'ı ortala */
        }
}

/* Küçük Telefonlar (480px ve altı) */
@media (max-width: 480px) {
    .page-header {
        padding: 70px 0px 70px;
    }

    .page-header__inner h2 {
        font-size: 38px;
        line-height: 1.2em;
    }

    .page-header__inner .thm-breadcrumb li,
    .page-header__inner .thm-breadcrumb li a {
        font-size: 14px; /* Breadcrumb fontunu biraz küçült */
    }
}
