/* ==========================================================================
   Hizmet Detay — Video Ön Planda Tasarım
   ========================================================================== */

.hizmet-detail-hero {
    min-height: 100vh;
    height: auto;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hizmet-detail-hero .container {
    padding: 140px 1rem 3rem;
    width: 100%;
}

/* --- Breadcrumb --- */
.hizmet-breadcrumb {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1.25rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.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);
}

/* --- 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;
    max-width: 1200px;
}

.hizmet-back-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Layout --- */
.hizmet-detail-layout {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.hizmet-detail-main {
    flex: 1;
    min-width: 0;
}

/* ==========================================================================
   Video Showcase — Galeri Yapısı
   ========================================================================== */

.hizmet-detail-showcase {
    margin-bottom: 1.5rem;
}

.hizmet-showcase-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.hizmet-showcase-main img,
.hizmet-showcase-main video,
.hizmet-showcase-main iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.hizmet-showcase-main iframe {
    object-fit: initial;
}

.hizmet-showcase-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.hizmet-showcase-thumb {
    position: relative;
    width: 90px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #000;
    padding: 0;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.6;
}

.hizmet-showcase-thumb:hover {
    opacity: 0.85;
}

.hizmet-showcase-thumb.is-active {
    border-color: var(--accent);
    opacity: 1;
}

.hizmet-showcase-thumb img,
.hizmet-showcase-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.hizmet-showcase-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    pointer-events: none;
}

/* ==========================================================================
   Detail Card
   ========================================================================== */

.hizmet-detail-card {
    background: rgba(30, 30, 30, 0.6);
    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;
    overflow: hidden;
}

.hizmet-detail-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.hizmet-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-detail-body {
    padding: 2.5rem;
}

.hizmet-detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hizmet-detail-content {
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.hizmet-detail-content p {
    margin-bottom: 1rem;
}

.hizmet-detail-content h2,
.hizmet-detail-content h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.hizmet-detail-content ul,
.hizmet-detail-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.hizmet-detail-content a {
    color: var(--accent);
    transition: opacity 0.3s ease;
}

.hizmet-detail-content a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.hizmet-detail-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: rgba(30, 30, 30, 0.6);
    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: 1.5rem;
    position: sticky;
    top: 140px;
}

/* --- CTA Butonları --- */
.hizmet-sidebar-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hizmet-cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 14px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hizmet-cta-contact:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.hizmet-cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    border-radius: 14px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hizmet-cta-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: translateY(-1px);
}

/* --- Sidebar List --- */
.hizmet-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hizmet-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hizmet-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 0.25s ease;
}

.hizmet-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hizmet-sidebar-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.hizmet-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-sidebar-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.hizmet-sidebar-item:hover .hizmet-sidebar-name {
    color: #fff;
}

.hizmet-sidebar-all {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Satoshi', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    transition: opacity 0.3s ease;
}

.hizmet-sidebar-all:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hizmet-detail-hero .container {
        padding: 100px 1.25rem 2rem;
    }

    .hizmet-detail-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hizmet-detail-sidebar {
        width: 100%;
        position: static;
    }

    .hizmet-sidebar-cta {
        flex-direction: row;
    }

    .hizmet-cta-contact,
    .hizmet-cta-whatsapp {
        flex: 1;
    }

    .hizmet-detail-title {
        font-size: 26px;
    }

    .hizmet-detail-body {
        padding: 1.75rem;
    }

    .hizmet-showcase-thumbs {
        gap: 0.4rem;
    }

    .hizmet-showcase-thumb {
        width: 75px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hizmet-detail-hero .container {
        padding: 80px 1rem 1.5rem;
    }

    .hizmet-detail-card {
        border-radius: 18px;
    }

    .hizmet-detail-sidebar {
        border-radius: 18px;
        padding: 1.25rem;
    }

    .hizmet-sidebar-cta {
        flex-direction: column;
    }

    .hizmet-detail-title {
        font-size: 22px;
    }

    .hizmet-detail-body {
        padding: 1.25rem;
    }

    .hizmet-showcase-thumb {
        width: 65px;
        height: 44px;
        border-radius: 8px;
    }

    .hizmet-showcase-main {
        border-radius: 16px;
    }
}
