:root {
    --bs-danger: #d60109;
    --bs-danger-dark: #b50108;
    --bs-success: #1da552;
    --bs-success-dark: #168240;
    --bs-black: #111111;
    --mt-red: #d60109;
    --mt-red-dark: #b50108;
    --mt-black: #111111;
}
.btn-danger {
    --bs-btn-bg: var(--bs-danger);
    --bs-btn-border-color: var(--bs-danger);
    --bs-btn-hover-bg: var(--bs-danger-dark);
    --bs-btn-hover-border-color: var(--bs-danger-dark);
}
.btn-success {
    --bs-btn-bg: var(--bs-success);
    --bs-btn-border-color: var(--bs-success);
    --bs-btn-hover-bg: var(--bs-success-dark);
    --bs-btn-hover-border-color: var(--bs-success-dark);
}
    

    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        color: #222;
        background: var(--bs-light);
    }

    ul li {
        list-style: none;
    }
    footer a{
        text-decoration: none;
        color: #000;
    }
    footer span {
        color: var(--bs-danger);
        font-weight: 700;
        border-bottom: 2px solid var(--bs-danger);
        margin-bottom: 8px;
        display: inline-block;
    }
    .bg-cover {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    
    /* ── Section titles ── */
    .section-title {
        font-size: 1.55rem;
        font-weight: 800;
        color: var(--bs-black);
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 48px;
        height: 3px;
        background: var(--bs-danger);
        border-radius: 2px;
    }

    .section-eyebrow {
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--bs-danger);
    }

    /* ── Buttons ── */
    .btn-bs-danger {
        background: var(--bs-danger);
        color: #fff;
        border: none;
        font-weight: 700;
        border-radius: 6px;
        padding: 11px 22px;
    }

    .btn-bs-danger:hover {
        background: var(--bs-danger-dark);
        color: #fff;
    }

    .btn-mt-wa {
        background: #25d366;
        color: #fff;
        border: none;
        font-weight: 700;
        border-radius: 6px;
        padding: 11px 22px;
    }

    .btn-mt-wa:hover {
        background: #1daa53;
        color: #fff;
    }

    .btn-mt-outline {
        border: 2px solid var(--bs-danger);
        color: var(--bs-danger);
        font-weight: 700;
        border-radius: 6px;
        padding: 9px 20px;
        background: transparent;
    }

    .btn-mt-outline:hover {
        background: var(--bs-danger);
        color: #fff;
    }

    /* ══════════════════════════════
       1. HERO
    ══════════════════════════════ */
    .hero {
        background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 60%, transparent 100%),
            url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
        min-height: 520px;
        display: flex;
        align-items: center;
    }

    .hero-badge {
        display: inline-block;
        background: var(--bs-danger);
        color: #fff;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 3px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 900;
        color: #fff;
        line-height: 1.1;
    }

    .hero h1 span {
        color: var(--bs-danger);
    }

    .hero p {
        color: #ddd;
        font-size: 1.05rem;
        max-width: 500px;
    }

    .hero-checklist {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hero-checklist li {
        color: #eee;
        font-size: .9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
    }

    .hero-checklist li i {
        color: var(--bs-danger);
        font-size: 1rem;
    }

    /* ══════════════════════════════
       2. FEATURE BADGES
    ══════════════════════════════ */
    .features-bar {
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
        margin-top: -1px;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px 16px;
        text-align: center;
        gap: 6px;
        border-right: 1px solid #f0f0f0;
    }

    .feature-item:last-child {
        border-right: none;
    }

    .feature-item i {
        font-size: 2rem;
        color: var(--bs-danger);
    }

    .feature-item strong {
        font-size: .95rem;
        font-weight: 800;
        color: var(--bs-black);
    }

    .feature-item span {
        font-size: .78rem;
        color: #666;
    }

    /* ══════════════════════════════
       3. HİZMETLER
    ══════════════════════════════ */
    .hizmet-card {
        border: 1.5px solid #f0f0f0;
        border-radius: 12px;
        padding: 28px 20px;
        text-align: center;
        background: #fff;
        transition: border-color .2s, box-shadow .2s, transform .2s;
        cursor: pointer;
        height: 100%;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hizmet-card:hover {
        border-color: var(--bs-danger);
        box-shadow: 0 8px 28px rgba(204, 0, 0, .12);
        transform: translateY(-4px);
        color: inherit;
    }

    .hizmet-icon {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        background: #fff0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--bs-danger);
        flex-shrink: 0;
    }

    .hizmet-card:hover .hizmet-icon {
        background: var(--bs-danger);
        color: #fff;
    }

    .hizmet-card strong {
        font-size: .95rem;
        font-weight: 800;
        color: var(--bs-black);
        line-height: 1.3;
    }

    .hizmet-card p {
        font-size: .8rem;
        color: #666;
        margin: 0;
    }

    /* ══════════════════════════════
       4. NASIL ÇALIŞIYORUZ
    ══════════════════════════════ */
    .step-card {
        background: #fff;
        border: 1.5px solid #f0f0f0;
        border-radius: 12px;
        padding: 28px 20px;
        text-align: center;
        position: relative;
        height: 100%;
    }

    .step-number {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--bs-danger);
        color: #fff;
        font-size: 1.1rem;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
    }

    /* ══════════════════════════════
       5. HİZMET BÖLGELERİ
    ══════════════════════════════ */
    .bolge-card {
        border-radius: 10px;
        overflow: hidden;
        border: 1.5px solid #f0f0f0;
        text-decoration: none;
        color: inherit;
        display: block;
        transition: border-color .2s, box-shadow .2s;
    }

    .bolge-card:hover {
        border-color: var(--bs-danger);
        box-shadow: 0 6px 20px rgba(204, 0, 0, .12);
        color: inherit;
    }

    .bolge-body {
        padding: 12px 14px;
        background: #fff;
    }

    .bolge-body strong {
        font-size: .95rem;
        font-weight: 800;
        display: block;
        margin-bottom: 2px;
    }

    .bolge-body span {
        font-size: .8rem;
        color: var(--bs-danger);
        font-weight: 700;
    }

    /* ══════════════════════════════
       6. STATS / NEDEN BİZ
    ══════════════════════════════ */
    .stat-bar {
        background: var(--bs-black);
        color: #fff;
        padding: 48px 0;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item .stat-num {
        font-size: 2.8rem;
        font-weight: 900;
        color: var(--bs-danger);
        line-height: 1;
    }

    .stat-item .stat-label {
        font-size: .88rem;
        color: #aaa;
        margin-top: 6px;
    }

    .neden-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        background: #fff;
        border-radius: 10px;
        border: 1.5px solid #f0f0f0;
        padding: 20px;
        height: 100%;
    }

    .neden-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        border-radius: 10px;
        background: #fff0f0;
        color: var(--bs-danger);
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .neden-item h6 {
        font-weight: 800;
        margin-bottom: 4px;
        font-size: .95rem;
    }

    .neden-item p {
        font-size: .82rem;
        color: #666;
        margin: 0;
    }

    /* ══════════════════════════════
       7. BLOG
    ══════════════════════════════ */
    .blog-card {
        border: 1.5px solid #f0f0f0;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        height: 100%;
        text-decoration: none;
        color: inherit;
        display: block;
        transition: box-shadow .2s;
    }

    .blog-card:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
        color: inherit;
    }

    .blog-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        background: #eee;
        display: block;
    }

    .blog-body {
        padding: 18px;
    }

    .blog-cat {
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--bs-danger);
        margin-bottom: 8px;
        display: block;
    }

    .blog-body h5 {
        font-size: 1rem;
        font-weight: 800;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .blog-body p {
        font-size: .82rem;
        color: #666;
        margin-bottom: 12px;
    }

    .blog-date {
        font-size: .78rem;
        color: #999;
    }

    /* ══════════════════════════════
       8. CTA BANNER
    ══════════════════════════════ */
    .cta-banner {
        background: var(--bs-danger);
        padding: 56px 0;
        text-align: center;
    }

    .cta-banner h2 {
        font-size: clamp(1.5rem, 4vw, 2.4rem);
        font-weight: 900;
        color: #fff;
    }

    .cta-banner p {
        color: rgba(255, 255, 255, .85);
        font-size: 1.05rem;
    }

    .btn-cta-white {
        background: #fff;
        color: var(--bs-danger);
        font-weight: 800;
        font-size: 1rem;
        border: none;
        border-radius: 6px;
        padding: 13px 30px;
    }

    .btn-cta-white:hover {
        background: #f0f0f0;
        color: var(--bs-danger);
    }

    .btn-cta-border {
        border: 2px solid rgba(255, 255, 255, .7);
        color: #fff;
        font-weight: 800;
        font-size: 1rem;
        background: transparent;
        border-radius: 6px;
        padding: 13px 30px;
    }

    .btn-cta-border:hover {
        background: rgba(255, 255, 255, .15);
        color: #fff;
    }

    /* ══════════════════════════════
       GENEL YARDIMCI
    ══════════════════════════════ */
    section {
        padding: 64px 0;
    }

    .bg-light-gray {
        background: #f8f8f8;
    }

    @media (max-width: 767px) {
        section {
            padding: 44px 0;
        }

        .feature-item {
            border-right: none;
            border-bottom: 1px solid #f0f0f0;
        }

    }


        /* ── Genel ── */
        .section-eyebrow {
            font-size: .75rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--mt-red);
        }
    
        .section-title {
            font-size: 1.7rem;
            font-weight: 900;
            color: var(--mt-black);
            position: relative;
            padding-bottom: 10px;
        }
    
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 48px;
            height: 3px;
            background: var(--mt-red);
            border-radius: 2px;
        }
    
        .section-title.centered::after {
            left: 50%;
            transform: translateX(-50%);
        }
    
        .btn-mt-red {
            background: var(--mt-red);
            color: #fff;
            border: none;
            font-weight: 700;
            border-radius: 6px;
            padding: 11px 24px;
        }
    
        .btn-mt-red:hover {
            background: var(--mt-red-dark);
            color: #fff;
        }
    
        .btn-mt-wa {
            background: #25d366;
            color: #fff;
            border: none;
            font-weight: 700;
            border-radius: 6px;
            padding: 11px 24px;
        }
    
        .btn-mt-wa:hover {
            background: #1daa53;
            color: #fff;
        }
    
        .btn-mt-outline {
            border: 2px solid var(--mt-red);
            color: var(--mt-red);
            font-weight: 700;
            border-radius: 6px;
            padding: 9px 20px;
            background: transparent;
        }
    
        .btn-mt-outline:hover {
            background: var(--mt-red);
            color: #fff;
        }
    
        /* ── 1. PAGE HERO ── */
        .page-hero {
            background: linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .5) 60%, transparent 100%),
                url('https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=1400&q=80') center/cover no-repeat;
            min-height: 380px;
            display: flex;
            align-items: center;
        }
    
        .page-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 900;
            color: #fff;
        }
    
        .page-hero h1 span {
            color: var(--mt-red);
        }
    
        .page-hero p {
            color: #ddd;
            font-size: 1rem;
            max-width: 520px;
        }
    
        .breadcrumb-item a {
            color: #aaa;
            text-decoration: none;
        }
    
        .breadcrumb-item.active {
            color: #eee;
        }
    
        .breadcrumb-item+.breadcrumb-item::before {
            color: #666;
        }
    
        /* ── 2. ALT HİZMETLER ── */
        .alt-hizmet-card {
            border: 1.5px solid #f0f0f0;
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
            background: #fff;
            transition: border-color .2s, box-shadow .2s, transform .2s;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            height: 100%;
        }
    
        .alt-hizmet-card:hover {
            border-color: var(--mt-red);
            box-shadow: 0 8px 28px rgba(204, 0, 0, .12);
            transform: translateY(-4px);
            color: inherit;
        }
    
        .alt-hizmet-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #fff0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: var(--mt-red);
            flex-shrink: 0;
            transition: background .2s, color .2s;
        }
    
        .alt-hizmet-card:hover .alt-hizmet-icon {
            background: var(--mt-red);
            color: #fff;
        }
    
        .alt-hizmet-card strong {
            font-size: .95rem;
            font-weight: 800;
            color: var(--mt-black);
            line-height: 1.3;
        }
    
        .alt-hizmet-card p {
            font-size: .8rem;
            color: #666;
            margin: 0;
        }
    
        .alt-hizmet-card .card-link {
            font-size: .8rem;
            font-weight: 700;
            color: var(--mt-red);
            margin-top: auto;
            text-decoration: none;
        }
    
        .alt-hizmet-card:hover .card-link {
            text-decoration: underline;
        }
    
        /* ── 3. DETAY / AÇIKLAMA ── */
        .detay-section {
            background: #f8f8f8;
        }
    
        .detay-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: #fff;
            border-radius: 10px;
            border: 1.5px solid #f0f0f0;
            padding: 20px;
            height: 100%;
        }
    
        .detay-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 10px;
            background: #fff0f0;
            color: var(--mt-red);
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
        .detay-item h6 {
            font-weight: 800;
            margin-bottom: 4px;
            font-size: .95rem;
        }
    
        .detay-item p {
            font-size: .82rem;
            color: #666;
            margin: 0;
        }
    
        /* ── 4. SÜREÇ ── */
        .surec-step {
            background: #fff;
            border: 1.5px solid #f0f0f0;
            border-radius: 12px;
            padding: 28px 20px;
            text-align: center;
            position: relative;
            height: 100%;
        }
    
        .surec-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--mt-red);
            color: #fff;
            font-size: 1.1rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }
    
        .surec-step h6 {
            font-weight: 800;
            font-size: .95rem;
            margin-bottom: 6px;
        }
    
        .surec-step p {
            font-size: .82rem;
            color: #666;
            margin: 0;
        }
    
        .surec-arrow {
            position: absolute;
            top: 20px;
            right: -14px;
            font-size: 1.3rem;
            color: #ddd;
            z-index: 1;
        }
    
        /* ── 5. SSS ── */
        .accordion-button:not(.collapsed) {
            background: #fff0f0;
            color: var(--mt-red);
            font-weight: 700;
        }
    
        .accordion-button:focus {
            box-shadow: none;
        }
    
        .accordion-button {
            font-weight: 700;
            font-size: .95rem;
        }
    
        .accordion-body {
            font-size: .88rem;
            color: #444;
            line-height: 1.7;
        }
    
        /* ── 6. BÖLGELER ── */
        .bolge-tag {
            display: inline-block;
            padding: 7px 16px;
            border: 1.5px solid #e8e8e8;
            border-radius: 50px;
            font-size: .85rem;
            font-weight: 600;
            color: #444;
            text-decoration: none;
            transition: all .15s;
        }
    
        .bolge-tag:hover {
            border-color: var(--mt-red);
            color: var(--mt-red);
            background: #fff0f0;
        }
    
        /* ── 7. CTA BANNER ── */
        .cta-banner {
            background: var(--mt-red);
            padding: 56px 0;
            text-align: center;
        }
    
        .cta-banner h2 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            font-weight: 900;
            color: #fff;
        }
    
        .cta-banner p {
            color: rgba(255, 255, 255, .85);
            font-size: 1rem;
        }
    
        .btn-cta-white {
            background: #fff;
            color: var(--mt-red);
            font-weight: 800;
            border: none;
            border-radius: 6px;
            padding: 13px 28px;
            font-size: 1rem;
        }
    
        .btn-cta-white:hover {
            background: #f0f0f0;
            color: var(--mt-red);
        }
    
        .btn-cta-border {
            border: 2px solid rgba(255, 255, 255, .7);
            color: #fff;
            font-weight: 800;
            background: transparent;
            border-radius: 6px;
            padding: 13px 28px;
            font-size: 1rem;
        }
    
        .btn-cta-border:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
        }
    
        /* ── SIDEBAR ── */
        .sidebar-card {
            border: 1.5px solid #f0f0f0;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            margin-bottom: 24px;
        }
    
        .sidebar-card-title {
            background: var(--mt-black);
            color: #fff;
            font-size: .9rem;
            font-weight: 800;
            padding: 12px 18px;
            letter-spacing: .5px;
            text-transform: uppercase;
        }
    
        .sidebar-card-body {
            padding: 16px 18px;
        }
    
        .sidebar-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 9px 0;
            border-bottom: 1px solid #f5f5f5;
            text-decoration: none;
            color: #333;
            font-size: .88rem;
            font-weight: 600;
        }
    
        .sidebar-link:last-child {
            border-bottom: none;
        }
    
        .sidebar-link:hover {
            color: var(--mt-red);
        }
    
        .sidebar-link i {
            font-size: .8rem;
            color: var(--mt-red);
        }
    
        .contact-box {
            background: var(--mt-red);
            border-radius: 10px;
            padding: 22px;
            text-align: center;
            color: #fff;
        }
    
        .contact-box .phone {
            font-size: 1.3rem;
            font-weight: 900;
            letter-spacing: .5px;
        }
    
        .contact-box p {
            font-size: .82rem;
            margin: 6px 0 14px;
            opacity: .9;
        }
    
        section {
            padding: 64px 0;
        }
    
        .bg-light-gray {
            background: #f8f8f8;
        }
    
        @media (max-width: 767px) {
            section {
                padding: 44px 0;
            }
    
            .surec-arrow {
                display: none;
            }
        }