/* Genel Bölüm Ayarları */
.hizmetler-bolumu {
    background-color: #0a0a0a; /* Resimdeki ekstra koyu zemin */
    padding: 80px 20px;
    position: relative;
    overflow: hidden; /* Dışarı taşan parlamaları gizler */
}

/* Tasarımdaki sağ taraftan vuran sarı ışık efekti */
.bg-glow-effect {
    position: absolute;
    top: 0;
    right: -150px;
    width: 400px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(251, 167, 7, 0.15) 0%, rgba(0,0,0,0) 70%);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
}

/* 1600px Sınır Kapsayıcısı */
.hizmetler-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- BAŞLIK ALANI --- */
.hizmetler-baslik-alani {
    text-align: center;
    margin-bottom: 60px;
}

.kucuk-baslik {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.kucuk-baslik .cizgi {
    width: 40px;
    height: 1px;
    background-color: var(--yellow);
}

.ana-baslik {
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sari-yazi {
    color: var(--yellow);
}

.aciklama-metni {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
}

.beyaz-yazi {
    color: #fff;
    font-weight: 600;
}

/* --- MASAÜSTÜ HİZMET KARTLARI (4'lü Grid) --- */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hizmet-karti {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hizmet-karti:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 167, 7, 0.4);
}

.kart-resim-alani {
    width: 100%;
    height: 220px;
}

.kart-resim-alani img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kart-icerik {
    padding: 40px 25px 30px 25px;
    position: relative;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Masaüstü İkon (Resim ile İçeriğin Kesişiminde) */
.kart-ikon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #161616;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--yellow);
    z-index: 5;
}

.kart-baslik {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 15px;
}

.kart-aciklama {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.mobil-ok {
    display: none; /* Masaüstünde gizli */
}

/* --- ALT GÜVENLİK ROZETLERİ (Masaüstü) --- */
.rozetler-kutusu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.rozet-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.rozet-item:last-child {
    border-right: none;
}

.rozet-ikon i {
    color: var(--yellow);
    font-size: 32px;
}

.rozet-metin h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rozet-metin p {
    color: #888;
    font-size: 13px;
    line-height: 1.4;
}

/* ========================================== */
/* === MOBİL VE TABLET TASARIMI (Görsel 1) == */
/* ========================================== */

@media (max-width: 1100px) {
    .hizmetler-bolumu {
        padding: 50px 15px;
    }

    .ana-baslik {
        font-size: 36px;
    }

    /* Kartlar Alt Alta ve Yatay Düzen (App View) */
    .hizmetler-grid {
        grid-template-columns: 1fr;
    }

    .hizmet-karti {
        flex-direction: row;
        align-items: stretch;
    }

    .kart-resim-alani {
        width: 40%;
        height: auto;
        min-height: 150px;
    }

    .kart-icerik {
        width: 60%;
        padding: 20px;
        padding-right: 40px; /* Ok ikonu için boşluk */
        text-align: left;
        justify-content: center;
    }

    /* Mobilde İkon Tasarımı (Kartın içinde, sol üstte) */
    .kart-ikon {
        position: static;
        transform: none;
        width: 40px;
        height: 40px;
        border-width: 1px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .kart-baslik {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .kart-aciklama {
        font-size: 12px;
    }

    /* Mobilde Sağ Tarafta Çıkan Sarı Ok */
    .mobil-ok {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--yellow);
        font-size: 16px;
    }

    /* Rozetler 2x2 Kutu Görünümü */
    .rozetler-kutusu {
        grid-template-columns: repeat(2, 1fr);
    }

    .rozet-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 25px 15px;
    }

    .rozet-item:nth-child(2n) {
        border-right: none;
    }

    .rozet-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 500px) {
    /* Çok küçük ekranlarda resim ve içerik oranını ayarlama */
    .kart-resim-alani { width: 35%; }
    .kart-icerik { width: 65%; }
}