/*==========================
TZL CATEGORY
==========================*/

.tzl-category-card{

    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.12);

    transition:.45s;

}

.tzl-category-card:hover{

    transform:translateY(-14px);

    box-shadow:0 35px 80px rgba(0,0,0,.22);

}

.tzl-category-link{

    text-decoration:none;
    color:inherit;

}

.tzl-category-image{

    position:relative;
    overflow:hidden;
    height:260px;

}

.tzl-category-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.8s;

}

.tzl-category-card:hover img{

    transform:scale(1.18);

}

.tzl-category-overlay{

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(rgba(0,0,0,.15),rgba(0,89,180,.82));

    opacity:0;

    transition:.4s;

}

.tzl-category-card:hover .tzl-category-overlay{

    opacity:1;

}

.tzl-category-view{

    text-align:center;
    color:#fff;

}

.tzl-category-icon{

    width:74px;
    height:74px;

    margin:auto;

    border-radius:50%;

    border:2px solid #fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;

    margin-bottom:15px;

}

.tzl-category-view span{

    letter-spacing:2px;

    font-weight:700;

    font-size:13px;

}

.tzl-category-content{

    padding:24px;

}

.tzl-category-label{

    font-size:12px;

    color:#168ce3;

    letter-spacing:2px;

    font-weight:700;

}

.tzl-category-bottom{

    margin-top:10px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.tzl-category-bottom h3{

    margin:0;

    font-size:22px;

    color:#071523;

    font-weight:700;

}

.tzl-category-arrow{

    width:44px;
    height:44px;

    background:#168ce3;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s;

}

.tzl-category-card:hover .tzl-category-arrow{

    transform:translateX(6px) rotate(-45deg);

}

.tzl-category-shine{

    position:absolute;

    top:-40%;
    left:-100%;

    width:45%;
    height:200%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent);

    transform:rotate(25deg);

    transition:.9s;

}

.tzl-category-card:hover .tzl-category-shine{

    left:150%;

}


/* =========================================================
   TZL HİZMET DETAY SAYFASI
========================================================= */

.tzl-service-detail-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.tzl-service-detail-page,
.tzl-service-detail-page * {
    box-sizing: border-box;
}


/* HERO */

.tzl-service-detail-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #06111f;
}

.tzl-service-detail-hero-image {
    position: absolute;
    inset: 0;
}

.tzl-service-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: tzlServiceHeroZoom 15s ease-in-out infinite alternate;
}

@keyframes tzlServiceHeroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.09);
    }

}

.tzl-service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 24, 0.97) 0%,
            rgba(3, 15, 29, 0.87) 42%,
            rgba(3, 15, 29, 0.45) 74%,
            rgba(3, 15, 29, 0.63) 100%
        );
}

.tzl-service-detail-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.tzl-service-detail-hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    padding: 140px 0 105px;
}

.tzl-service-detail-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
    color: #68bbff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.tzl-service-detail-label span {
    width: 55px;
    height: 2px;
    background: #168ce3;
}

.tzl-service-detail-hero-content h1 {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(54px, 7vw, 100px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -4px;
}

.tzl-service-detail-hero-content > p {
    max-width: 680px;
    margin: 32px 0 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.8;
}

.tzl-service-detail-breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.tzl-service-detail-breadcrumb .breadcrumb-item,
.tzl-service-detail-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    text-decoration: none;
}

.tzl-service-detail-breadcrumb .breadcrumb-item.active {
    color: #168ce3;
}

.tzl-service-detail-breadcrumb
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.38);
}

.tzl-service-detail-scroll {
    position: absolute;
    right: 60px;
    bottom: 44px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: right center;
}

.tzl-service-detail-scroll i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: rotate(90deg);
}


/* GENEL */

.tzl-service-section-label {
    display: block;
    margin-bottom: 18px;
    color: #168ce3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.tzl-service-section-number {
    min-width: 58px;
    padding-top: 8px;
    color: #168ce3;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    border-top: 2px solid #168ce3;
}


/* INTRO */

.tzl-service-detail-intro {
    padding: 130px 0;
    background: #ffffff;
}

.tzl-service-detail-visual {
    position: relative;
    min-height: 590px;
    padding-right: 45px;
    padding-bottom: 45px;
}

.tzl-service-detail-main-image {
    position: relative;
    z-index: 2;
    height: 545px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(7, 21, 35, 0.20);
}

.tzl-service-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tzl-service-detail-visual:hover
.tzl-service-detail-main-image img {
    transform: scale(1.07);
}

.tzl-service-detail-blue-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 70%;
    background: #168ce3;
}

.tzl-service-detail-badge {
    position: absolute;
    top: 35px;
    right: 5px;
    z-index: 4;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    border-radius: 50%;
    background: #168ce3;
    box-shadow: 0 20px 45px rgba(22, 140, 227, 0.35);
}

.tzl-service-detail-badge i {
    font-size: 28px;
}

.tzl-service-detail-badge span {
    max-width: 80px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.tzl-service-detail-experience {
    position: absolute;
    left: -30px;
    bottom: 65px;
    z-index: 4;
    min-width: 250px;
    padding: 28px 30px;
    color: #ffffff;
    background: #071523;
    box-shadow: 0 25px 55px rgba(7, 21, 35, 0.28);
}

.tzl-service-detail-experience strong,
.tzl-service-detail-experience span {
    display: block;
}

.tzl-service-detail-experience strong {
    color: #168ce3;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 4px;
}

.tzl-service-detail-experience span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tzl-service-detail-intro-content {
    padding-left: 35px;
}

.tzl-service-detail-intro-content h2 {
    margin: 0;
    color: #0b1827;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.tzl-service-detail-intro-content h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-service-title-line {
    width: 75px;
    height: 3px;
    margin: 30px 0;
    background: #168ce3;
}

.tzl-service-detail-intro-content p {
    margin: 0 0 20px;
    color: #687582;
    font-size: 16px;
    line-height: 1.9;
}

.tzl-service-detail-intro-content .tzl-service-lead {
    color: #263746;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.tzl-service-mini-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 22px;
    margin-top: 30px;
}

.tzl-service-mini-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #263746;
    font-size: 14px;
    font-weight: 650;
}

.tzl-service-mini-features i {
    width: 28px;
    height: 28px;
    display: flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
    border-radius: 50%;
    background: #168ce3;
}

.tzl-service-intro-button {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 35px;
    padding: 20px 26px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    background: #071523;
    transition: 0.35s ease;
}

.tzl-service-intro-button:hover {
    color: #ffffff;
    background: #168ce3;
    transform: translateY(-5px);
}

.tzl-service-intro-button i {
    transition: transform 0.35s ease;
}

.tzl-service-intro-button:hover i {
    transform: translateX(5px);
}


/* AÇIKLAMA */

.tzl-service-description {
    padding: 120px 0;
    background:
        linear-gradient(
            rgba(242, 245, 248, 0.93),
            rgba(242, 245, 248, 0.93)
        ),
        url("/Sistem/duvar4.png") center / cover no-repeat;
    background-attachment: fixed;
}

.tzl-service-description-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: flex-start;
    gap: 80px;
}

.tzl-service-description-heading {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.tzl-service-description-heading h2 {
    margin: 0;
    color: #0b1827;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.tzl-service-description-heading h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-service-description-content {
    padding: 44px;
    color: #5f6d79;
    font-size: 16px;
    line-height: 1.95;
    border-left: 4px solid #168ce3;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(7, 21, 35, 0.11);
}

.tzl-service-description-content p {
    margin-bottom: 20px;
}

.tzl-service-description-content p:last-child {
    margin-bottom: 0;
}

.tzl-service-description-content h1,
.tzl-service-description-content h2,
.tzl-service-description-content h3,
.tzl-service-description-content h4 {
    color: #0b1827;
    font-weight: 750;
}

.tzl-service-description-content img {
    max-width: 100%;
    height: auto;
}


/* AVANTAJLAR */

.tzl-service-benefits {
    padding: 125px 0;
    background: #ffffff;
}

.tzl-service-benefits-header {
    max-width: 850px;
    margin-bottom: 60px;
}

.tzl-service-benefits-header h2 {
    margin: 0;
    color: #0b1827;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.tzl-service-benefits-header h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-service-benefits-header p {
    max-width: 680px;
    margin: 25px 0 0;
    color: #687582;
    font-size: 16px;
    line-height: 1.85;
}

.tzl-service-benefit-card {
    position: relative;
    min-height: 350px;
    padding: 42px 32px;
    overflow: hidden;
    border: 1px solid #dfe6ec;
    background: #ffffff;
    transition: 0.4s ease;
}

.tzl-service-benefit-card::before {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 0;
    background: #071523;
    transition: height 0.45s ease;
}

.tzl-service-benefit-card > * {
    position: relative;
    z-index: 2;
}

.tzl-service-benefit-card:hover::before {
    height: 100%;
}

.tzl-service-benefit-card:hover {
    transform: translateY(-10px);
    border-color: #071523;
    box-shadow: 0 25px 55px rgba(7, 21, 35, 0.17);
}

.tzl-service-benefit-card > span {
    position: absolute;
    top: 27px;
    right: 28px;
    color: #9ba7b2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.tzl-service-benefit-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 38px;
    color: #168ce3;
    font-size: 25px;
    border: 1px solid #cfd9e2;
    transition: 0.4s ease;
}

.tzl-service-benefit-card h3 {
    margin: 0 0 18px;
    color: #0b1827;
    font-size: 23px;
    font-weight: 750;
    transition: 0.4s ease;
}

.tzl-service-benefit-card p {
    margin: 0;
    color: #687582;
    font-size: 15px;
    line-height: 1.85;
    transition: 0.4s ease;
}

.tzl-service-benefit-card:hover .tzl-service-benefit-icon {
    color: #ffffff;
    border-color: #168ce3;
    background: #168ce3;
}

.tzl-service-benefit-card:hover h3 {
    color: #ffffff;
}

.tzl-service-benefit-card:hover p {
    color: rgba(255, 255, 255, 0.64);
}

.tzl-service-benefit-card:hover > span {
    color: #168ce3;
}


/* SÜREÇ */

.tzl-service-process {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background: #071523;
}

.tzl-service-process-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 10% 45%,
            rgba(22, 140, 227, 0.25),
            transparent 35%
        );
}

.tzl-service-process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 65px;
}

.tzl-service-process-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.tzl-service-process-header h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-service-process-header > p {
    max-width: 440px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.85;
}

.tzl-service-process-grid {
    display: grid;
    grid-template-columns:
        1fr 55px 1fr 55px 1fr 55px 1fr;
    align-items: center;
}

.tzl-service-process-item {
    min-height: 310px;
    padding: 37px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    transition: 0.4s ease;
}

.tzl-service-process-item:hover {
    transform: translateY(-9px);
    border-color: #168ce3;
    background: rgba(22, 140, 227, 0.12);
}

.tzl-service-process-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #68bbff;
    font-size: 27px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    transition: 0.35s ease;
}

.tzl-service-process-item:hover
.tzl-service-process-icon {
    color: #ffffff;
    border-color: #168ce3;
    background: #168ce3;
}

.tzl-service-process-item > span {
    color: #168ce3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.tzl-service-process-item h3 {
    margin: 13px 0 15px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 750;
}

.tzl-service-process-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.75;
}

.tzl-service-process-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 19px;
    text-align: center;
}


/* CTA */

.tzl-service-cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #168ce3;
}

.tzl-service-cta-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 84% 50%,
            rgba(255, 255, 255, 0.20),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #168ce3,
            #0767ad
        );
}

.tzl-service-cta::before,
.tzl-service-cta::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.tzl-service-cta::before {
    top: -180px;
    right: -80px;
    width: 450px;
    height: 450px;
}

.tzl-service-cta::after {
    right: 100px;
    bottom: -300px;
    width: 520px;
    height: 520px;
}

.tzl-service-cta-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tzl-service-cta-content > span {
    display: block;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.tzl-service-cta-content h2 {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -2.5px;
}

.tzl-service-cta-content h2 strong {
    display: block;
    font-weight: 800;
}

.tzl-service-cta-button {
    min-width: 275px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 26px 22px 30px;
    color: #0b1827;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    background: #ffffff;
    transition: 0.35s ease;
}

.tzl-service-cta-button i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #071523;
    transition: 0.35s ease;
}

.tzl-service-cta-button:hover {
    color: #ffffff;
    background: #071523;
    transform: translateY(-5px);
}

.tzl-service-cta-button:hover i {
    color: #071523;
    background: #ffffff;
    transform: translateX(5px);
}


/* RESPONSIVE */

@media (max-width: 1199px) {

    .tzl-service-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .tzl-service-process-arrow {
        display: none;
    }

}

@media (max-width: 991px) {

    .tzl-service-detail-hero {
        min-height: 620px;
    }

    .tzl-service-detail-scroll {
        display: none;
    }

    .tzl-service-detail-intro {
        padding: 90px 0;
    }

    .tzl-service-detail-intro-content {
        padding-left: 0;
    }

    .tzl-service-description {
        padding: 90px 0;
        background-attachment: scroll;
    }

    .tzl-service-description-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tzl-service-process-header {
        display: block;
    }

    .tzl-service-process-header > p {
        max-width: 650px;
        margin-top: 25px;
    }

    .tzl-service-cta-wrapper {
        display: block;
    }

    .tzl-service-cta-action {
        margin-top: 40px;
    }

}

@media (max-width: 767px) {

    .tzl-service-detail-hero {
        min-height: 560px;
    }

    .tzl-service-detail-hero-content {
        padding: 115px 0 80px;
    }

    .tzl-service-detail-hero-content h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .tzl-service-detail-hero-content > p {
        font-size: 16px;
        line-height: 1.7;
    }

    .tzl-service-detail-visual {
        min-height: 490px;
        padding-right: 20px;
    }

    .tzl-service-detail-main-image {
        height: 445px;
    }

    .tzl-service-detail-experience {
        left: 0;
        bottom: 20px;
    }

    .tzl-service-detail-badge {
        right: 0;
        width: 105px;
        height: 105px;
    }

    .tzl-service-detail-intro-content h2,
    .tzl-service-description-heading h2,
    .tzl-service-benefits-header h2,
    .tzl-service-process-header h2,
    .tzl-service-cta-content h2 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .tzl-service-description-heading {
        display: block;
    }

    .tzl-service-section-number {
        display: block;
        width: 52px;
        margin-bottom: 25px;
    }

    .tzl-service-description-content {
        padding: 30px 25px;
    }

    .tzl-service-mini-features {
        grid-template-columns: 1fr;
    }

    .tzl-service-process-grid {
        grid-template-columns: 1fr;
    }

    .tzl-service-cta-button {
        width: 100%;
        min-width: auto;
    }

}

@media (max-width: 480px) {

    .tzl-service-detail-hero-content h1 {
        font-size: 39px;
    }

    .tzl-service-detail-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .tzl-service-detail-main-image {
        height: 390px;
    }

    .tzl-service-detail-experience {
        min-width: 220px;
        padding: 22px;
    }

}