/* ========================================== */
/* === SAYFA ÜST BAŞLIK (BREADCRUMB) ALANI == */
/* ========================================== */
.page-header-section {
    position: relative;
    background-color: #121212;
    padding: 120px 20px 70px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: -50%; 
    left: 50%; 
    transform: translateX(-50%);
    width: 80%; 
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(251, 167, 7, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.breadcrumb {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.breadcrumb a { color: #aaa; text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb i { color: #555; font-size: 11px; }
.breadcrumb .active { color: var(--yellow); }

/* ========================================== */
/* === HİZMETLER İÇERİK ALANI =============== */
/* ========================================== */
.hizmetler-sayfasi-bolumu {
    background-color: #0a0a0a;
    padding: 80px 20px;
    min-height: 600px;
}

/* 1600px Sınır */
.hizmetler-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Masaüstü 3 Kolon */
.hizmetler-sayfa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Kart Tasarımı */
.hizmet-karti-pro {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.hizmet-karti-pro:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 167, 7, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Resim ve İkon Rozeti */
.pro-resim-alani {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.pro-resim-alani img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hizmet-karti-pro:hover .pro-resim-alani img {
    transform: scale(1.1);
}

.pro-ikon-rozet {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(251, 167, 7, 0.4);
    z-index: 2;
    border: 4px solid #161616;
}

/* İçerik ve Buton */
.pro-icerik-alani {
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pro-baslik {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.hizmet-karti-pro:hover .pro-baslik {
    color: var(--yellow);
}

.pro-aciklama {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Butonu hep en alta itmek için */
}

/* Aksiyon Butonu */
.btn-pro-ara {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--yellow);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hizmet-karti-pro:hover .btn-pro-ara {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

/* ========================================== */
/* === MOBİL VE TABLET TASARIMI ============= */
/* ========================================== */
@media (max-width: 1100px) {
    /* Tablet için 2'li grid */
    .hizmetler-sayfa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobilde Başlık Küçültme */
    .page-header-section { padding: 90px 15px 50px; }
    .page-title { font-size: 36px; }
    
    .hizmetler-sayfasi-bolumu { padding: 50px 15px; }

    /* Mobilde 1'li Grid (Alt Alta) */
    .hizmetler-sayfa-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pro-resim-alani { height: 220px; }
    
    .pro-icerik-alani { padding: 40px 20px 25px 20px; }
    
    .pro-baslik { font-size: 20px; }
    
    .pro-aciklama { font-size: 14px; }
}