﻿/* =========================================================
   KEPSAŞ - TEMİNAT MEKTUBU ÖRNEĞİ
   ========================================================= */

.teminat-page {
    min-height: 70vh;
    background: #f7f9fb;
}


/* =========================================================
   HERO
   ========================================================= */

.teminat-hero {
    padding: 64px 20px 54px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
}

    .teminat-hero .container {
        max-width: 1100px;
    }

.teminat-hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f5ec;
    color: #198754;
    font-size: 29px;
}

.teminat-hero h1 {
    margin: 0 0 16px;
    color: #212529;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.teminat-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .7px;
    text-transform: uppercase;
}

    .teminat-breadcrumb a {
        color: #6c757d;
        text-decoration: none;
        transition: color .2s ease;
    }

        .teminat-breadcrumb a:hover {
            color: #0d6efd;
        }

    .teminat-breadcrumb span[aria-hidden="true"] {
        margin: 0 9px;
        color: #0d6efd;
    }

    .teminat-breadcrumb span[aria-current="page"] {
        color: #495057;
    }


/* =========================================================
   CONTENT
   ========================================================= */

.teminat-content {
    padding-top: 56px;
    padding-bottom: 64px;
}

.teminat-info-card,
.teminat-download-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    border-radius: 24px;
}


/* =========================================================
   SOL BİLGİ
   ========================================================= */

.teminat-info-card {
    padding: 42px;
}

.teminat-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9f2ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
}

.teminat-info-card h2 {
    margin: 0 0 20px;
    color: #212529;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.teminat-info-card p {
    margin-bottom: 16px;
    color: #66717d;
    font-size: 15px;
    line-height: 1.8;
}

    .teminat-info-card p:last-of-type {
        margin-bottom: 0;
    }


/* =========================================================
   BİLGİ NOTU
   ========================================================= */

.teminat-note {
    margin-top: 28px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8e5;
    border: 1px solid #ffe2a3;
    border-radius: 15px;
    color: #755400;
    font-size: 14px;
    line-height: 1.6;
}

    .teminat-note i {
        flex-shrink: 0;
        margin-top: 3px;
        font-size: 16px;
    }


/* =========================================================
   DOWNLOAD CARD
   ========================================================= */

.teminat-download-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .07);
}

.teminat-word-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 18px;
    background: #e8f0ff;
    color: #185abd;
    font-size: 34px;
}

.teminat-download-type {
    margin-bottom: 8px;
    color: #185abd;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1px;
}

.teminat-download-card h2 {
    margin: 0 0 14px;
    color: #212529;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.teminat-download-card p {
    margin-bottom: 26px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.teminat-download-button {
    width: 100%;
    margin-top: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    background: #185abd;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

    .teminat-download-button:hover {
        color: #ffffff;
        background: #124b9f;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(24, 90, 189, .22);
    }

    .teminat-download-button:focus-visible {
        outline: 3px solid rgba(24, 90, 189, .28);
        outline-offset: 3px;
    }

.teminat-download-card small {
    width: 100%;
    margin-top: 12px;
    color: #8a949e;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .teminat-hero {
        padding: 52px 20px 46px;
    }

    .teminat-hero-icon {
        width: 66px;
        height: 66px;
        font-size: 27px;
    }

    .teminat-content {
        padding-top: 38px;
        padding-bottom: 48px;
    }

    .teminat-info-card {
        padding: 32px;
    }

    .teminat-download-card {
        padding: 32px;
    }

    /*
       Bootstrap col-lg nedeniyle bu noktada sağ kart
       otomatik olarak sol kartın altına geçer.
    */
    .teminat-info-card,
    .teminat-download-card {
        height: auto;
    }

    .teminat-download-button {
        margin-top: 8px;
    }
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 575.98px) {

    .teminat-hero {
        padding: 40px 16px 36px;
    }

    .teminat-hero-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 15px;
        font-size: 23px;
    }

    .teminat-hero h1 {
        margin-bottom: 14px;
        font-size: 1.85rem;
    }

    .teminat-breadcrumb {
        row-gap: 4px;
        font-size: 10.5px;
        letter-spacing: .35px;
    }

        .teminat-breadcrumb span[aria-hidden="true"] {
            margin: 0 6px;
        }

    .teminat-content {
        padding-top: 28px;
        padding-bottom: 38px;
    }

        .teminat-content .row {
            --bs-gutter-x: 20px;
            --bs-gutter-y: 20px;
        }

    .teminat-info-card,
    .teminat-download-card {
        padding: 24px;
        border-radius: 18px;
    }

    .teminat-label {
        margin-bottom: 16px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .teminat-info-card h2 {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .teminat-info-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .teminat-note {
        margin-top: 22px;
        padding: 15px 16px;
        gap: 10px;
        border-radius: 13px;
        font-size: 13px;
    }

    .teminat-word-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        border-radius: 15px;
        font-size: 29px;
    }

    .teminat-download-card h2 {
        font-size: 21px;
    }

    .teminat-download-card p {
        margin-bottom: 20px;
        font-size: 13.5px;
    }

    .teminat-download-button {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 14px;
    }
}


/* =========================================================
   ÇOK DAR EKRANLAR
   ========================================================= */

@media (max-width: 374.98px) {

    .teminat-hero {
        padding-left: 12px;
        padding-right: 12px;
    }

        .teminat-hero h1 {
            font-size: 1.65rem;
        }

    .teminat-breadcrumb {
        font-size: 9.5px;
    }

    .teminat-info-card,
    .teminat-download-card {
        padding: 20px;
    }

    .teminat-download-button {
        padding-left: 12px;
        padding-right: 12px;
    }
}
