/* =========================================================
   GENEL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #1956d8;
    --blue-light: #2e7bff;
    --navy: #07163c;

    --text: #111827;
    --muted: #697386;

    --border: #e4e8ef;
    --background: #ffffff;
    --soft-background: #f7f9fd;

    --radius: 10px;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   ANA CONTAINER
========================================================= */

.service-page {
    width: min(1440px, calc(100% - 100px));
    margin: 0 auto;
    padding: 20px 0 35px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    height: 35px;

    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 600;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 13px;

    color: #23558d;
}

.breadcrumb > span:last-child {
    color: #9aa1ad;
    font-weight: 500;
}


/* =========================================================
   HERO
========================================================= */

.service-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 1fr);

    gap: 45px;

    align-items: start;
}


/* =========================================================
   GALERİ
========================================================= */

.service-gallery {
    min-width: 0;
}

.main-image {
    width: 100%;
    height: 355px;

    overflow: hidden;

    border-radius: 11px;

    background: #edf1f7;
}

.main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: opacity .25s ease;
}


/* thumbnails */

.gallery-thumbnails {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr))
        1.05fr;

    gap: 12px;

    margin-top: 22px;
}

.thumbnail {
    height: 85px;

    padding: 0;

    overflow: hidden;

    cursor: pointer;

    border: 2px solid transparent;
    border-radius: 9px;

    background: transparent;

    transition:
        border-color .25s ease,
        transform .25s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--blue);
}

.thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* tüm görseller */

.all-images {
    border: 0;
    border-radius: 9px;

    background: #f3f6fc;

    color: #172033;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    font-size: 11px;
    font-weight: 600;

    transition: background .25s ease;
}

.all-images:hover {
    background: #e9effb;
}

.all-images > i:first-child {
    color: var(--blue);
    font-size: 17px;
}

.all-images > i:last-child {
    color: var(--blue);
}


/* =========================================================
   HİZMET BİLGİLERİ
========================================================= */

.service-information {
    min-width: 0;
}

.service-label {
    display: block;

    margin-bottom: 15px;

    color: #2862b5;

    font-size: 11px;
    font-weight: 700;
}

.service-information > h1 {
    margin-bottom: 17px;

    color: #07163c;

    font-size: clamp(30px, 2.2vw, 38px);
    line-height: 1.1;

    font-weight: 700;
    letter-spacing: -1px;
}

.service-description {
    max-width: 650px;

    color: #535d6d;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   ÖZELLİKLER
========================================================= */

.service-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-top: 38px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;

    gap: 12px;
}

.feature-icon {
    width: 34px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    font-size: 23px;
}

.feature div:last-child {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.feature strong {
    color: #182033;

    font-size: 11px;
    font-weight: 600;
}

.feature span {
    color: #687182;

    font-size: 9px;
}


/* =========================================================
   HİZMET KAPSAMI
========================================================= */

.scope-section > h2 {
    margin-bottom: 17px;

    color: #1b2435;

    font-size: 11px;
    font-weight: 700;
}

.scope-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.scope-card {
    min-height: 160px;

    padding: 20px 17px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: #fff;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.scope-card:hover {
    transform: translateY(-3px);

    border-color: rgba(25, 86, 216, .3);

    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.scope-icon {
    width: 28px;
    height: 28px;

    margin-bottom: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    font-size: 21px;
}

.scope-card h3 {
    margin-bottom: 9px;

    color: #172033;

    font-size: 11px;
    font-weight: 700;
}

.scope-card p {
    color: #697386;

    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   BUTONLAR
========================================================= */

.service-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

    margin-top: 26px;
}

.offer-button,
.brochure-button {
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.offer-button {
    color: white;

    background:
        linear-gradient(
            135deg,
            #2869e7,
            #1956d8
        );
}

.offer-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(25, 86, 216, .22);
}

.brochure-button {
    border: 1px solid #d9dee7;

    color: #1c2435;

    background: white;
}

.brochure-button:hover {
    background: #f7f9fc;
}


/* =========================================================
   DETAY PANELİ
========================================================= */

.details-panel {
    margin-top: 42px;

    padding: 22px 28px;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 30px;

    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #f9fbff,
            #ffffff
        );

    box-shadow:
        0 6px 25px
        rgba(15, 23, 42, .025);
}


/* başlık */

.small-heading {
    margin-bottom: 28px;

    display: flex;
    align-items: center;

    gap: 11px;

    color: #172033;

    font-size: 10px;
    font-weight: 700;
}

.small-heading span {
    width: 25px;
    height: 2px;

    display: block;

    background: var(--blue);
}


/* =========================================================
   SÜREÇ
========================================================= */

.process-section {
    padding-right: 25px;

    border-right: 1px solid #edf0f5;
}

.process-list {
    display: grid;

    grid-template-columns:
        1fr
        45px
        1fr
        45px
        1fr
        45px
        1fr;

    align-items: start;
}

.process-item {
    min-width: 0;
}

.process-top {
    height: 38px;

    display: flex;
    align-items: center;

    margin-bottom: 10px;
}

.process-number,
.process-circle {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            #2f7bea,
            #1956d8
        );

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        0 5px 12px
        rgba(25, 86, 216, .16);
}

.process-item h3 {
    margin-bottom: 6px;

    color: #172033;

    font-size: 10px;
    font-weight: 600;
}

.process-item p {
    max-width: 120px;

    color: #778091;

    font-size: 8px;
    line-height: 1.6;
}

.process-arrow {
    padding-top: 3px;

    display: flex;
    flex-direction: column;

    color: #9ca9bc;
}

.process-arrow span {
    margin-bottom: 13px;

    font-size: 8px;
}

.process-arrow i {
    font-size: 12px;
}


/* =========================================================
   NEDEN BARKOÇ
========================================================= */

.why-section {
    padding-left: 5px;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;

    gap: 11px;
}

.why-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--blue);

    background: #f4f8ff;

    font-size: 22px;
}

.why-item > div:last-child {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.why-item strong {
    color: #1d59c7;

    font-size: 17px;
}

.why-item span {
    color: #172033;

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   CTA
========================================================= */

.bottom-cta {
    min-height: 82px;

    margin-top: 25px;

    padding: 15px 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-radius: 9px;

    background:
        linear-gradient(
            90deg,
            #f4f7ff,
            #f8faff
        );
}

.cta-left {
    display: flex;
    align-items: center;

    gap: 25px;
}

.cta-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: var(--blue);

    background: #eaf1ff;

    font-size: 18px;
}

.cta-left h2 {
    margin-bottom: 5px;

    color: #182033;

    font-size: 14px;
    font-weight: 600;
}

.cta-left p {
    color: #717a89;

    font-size: 11px;
}

.contact-button {
    width: 230px;
    height: 46px;

    flex-shrink: 0;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 7px;

    color: white;

    background: #07163c;

    font-size: 11px;
    font-weight: 600;

    transition:
        transform .25s ease,
        background .25s ease;
}

.contact-button:hover {
    transform: translateY(-2px);

    background: #0d2459;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .service-page {
        width: calc(100% - 50px);
    }

    .service-hero {
        gap: 25px;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .details-panel {
        grid-template-columns: 1fr;
    }

    .process-section {
        padding-right: 0;

        border-right: 0;
        border-bottom: 1px solid #edf0f5;

        padding-bottom: 30px;
    }

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 768px) {

    .service-page {
        width: calc(100% - 30px);

        padding-top: 15px;
    }

    .breadcrumb {
        margin-bottom: 12px;
    }

    /* hero */

    .service-hero {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .main-image {
        height: 280px;
    }

    /* galeri */

    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .thumbnail {
        height: 70px;
    }

    .all-images {
        grid-column: 1 / -1;

        height: 50px;
    }

    /* başlık */

    .service-information > h1 {
        font-size: 30px;
    }

    /* özellikler */

    .service-features {
        margin-top: 25px;
        margin-bottom: 30px;

        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }

    /* kapsam */

    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* buton */

    .service-actions {
        grid-template-columns: 1fr;
    }

    /* detay */

    .details-panel {
        margin-top: 30px;

        padding: 22px 18px;
    }

    /* süreç */

    .process-list {
        grid-template-columns: 1fr 1fr;

        gap: 25px 20px;
    }

    .process-arrow {
        display: none;
    }

    .process-item p {
        max-width: none;
    }

    /* neden */

    .why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 25px 15px;
    }

    /* CTA */

    .bottom-cta {
        padding: 20px;

        flex-direction: column;
        align-items: stretch;
    }

    .contact-button {
        width: 100%;
    }

}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 480px) {

    .main-image {
        height: 230px;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .scope-card {
        min-height: auto;
    }

    .gallery-thumbnails {
        gap: 7px;
    }

    .thumbnail {
        height: 60px;
    }

    .service-features {
        gap: 20px 10px;
    }

    .feature {
        align-items: flex-start;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-left {
        align-items: flex-start;

        gap: 15px;
    }

}