/* ==========================================================================
   Hizmet Arşiv / Kategori — Hero İçi Tasarım
   ========================================================================== */

.hizmet-hero {
    min-height: 100vh;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hizmet-hero .container {
    padding: 140px 1rem 3rem;
    width: 100%;
}

.hizmet-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header --- */
.hizmet-hero-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hizmet-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hizmet-hero-desc {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* --- Breadcrumb --- */
.hizmet-breadcrumb {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hizmet-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.hizmet-breadcrumb a:hover {
    color: var(--accent);
}

.hizmet-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 0.4rem;
}

.hizmet-breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Ana Arşiv: Glass Wrapper + Kategori Kartları
   ========================================================================== */

.hizmet-archive-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.hizmet-archive-wrapper .hizmet-hero-title {
    margin-bottom: 0.25rem;
}

.hizmet-archive-wrapper .hizmet-hero-desc {
    margin-bottom: 2rem;
}

/* ==========================================================================
   Ana Arşiv: Kategori Kartları
   ========================================================================== */

.hizmet-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hizmet-cat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.hizmet-cat-card:hover {
    transform: translateY(-4px);
}

.hizmet-cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.hizmet-cat-card:hover .hizmet-cat-card-bg {
    transform: scale(1.06);
}

.hizmet-cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hizmet-cat-card-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    width: 100%;
}

.hizmet-cat-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.hizmet-cat-card-count {
    font-family: 'Satoshi', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Kategori Detay: Glass Wrapper + 2 Sütun Grid
   ========================================================================== */

.hizmet-category-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
}

.hizmet-category-wrapper .hizmet-hero-title {
    margin-bottom: 1.25rem;
}

.hizmet-category-wrapper .hizmet-hero-desc {
    margin-bottom: 2rem;
}

.hizmet-category-wrapper .hizmet-breadcrumb {
    margin-bottom: 1.25rem;
}

.hizmet-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    text-align: left;
    align-items: stretch;
}

.hizmet-service-grid .hizmet-service-item {
    height: 100%;
}

.hizmet-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.hizmet-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
    min-height: 64px;
}

.hizmet-service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.hizmet-service-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.hizmet-service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-service-info {
    flex: 1;
    min-width: 0;
}

.hizmet-service-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.hizmet-service-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hizmet-service-item:hover .hizmet-service-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

/* --- Back Link --- */
.hizmet-back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.hizmet-back-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Empty --- */
.hizmet-empty {
    text-align: center;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    padding: 2rem 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hizmet-hero .container {
        padding: 100px 1.25rem 2rem;
    }

    .hizmet-hero-title {
        font-size: 30px;
    }

    .hizmet-cat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hizmet-archive-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .hizmet-cat-card {
        aspect-ratio: 16 / 9;
    }

    .hizmet-category-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .hizmet-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hizmet-hero .container {
        padding: 80px 1rem 1.5rem;
    }

    .hizmet-hero-title {
        font-size: 26px;
    }

    .hizmet-cat-card-title {
        font-size: 18px;
    }

    .hizmet-archive-wrapper {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }

    .hizmet-service-item {
        padding: 10px 12px;
    }

    .hizmet-service-name {
        font-size: 14px;
    }

    .hizmet-category-wrapper {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
    }
}
