/* ==========================================================================
   HİZMETLER & HİZMET DETAY MASTER STİL DOSYASI
   ========================================================================== */

/* ==========================================
   1. GÜVEN VE STANDART BANTI (SERVICES STRIP)
   ========================================== */
.service-trust-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--border, #e2e8f0);
    padding: 24px 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-strip-item i {
    font-size: 24px;
    color: var(--primary, #0284c7);
    background: #e0f2fe;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-strip-item div {
    display: flex;
    flex-direction: column;
}

.trust-strip-item strong {
    font-size: 14px;
    color: var(--text-dark, #0f172a);
    font-weight: 800;
}

.trust-strip-item span {
    font-size: 12.5px;
    color: var(--text-muted, #64748b);
    line-height: 1.4;
}

/* ==========================================
   2. HİZMETLER LİSTESİ (ZİKZAK MODERN AKIŞ)
   ========================================== */
.services-list-container {
    padding: 60px 0 90px 0;
    background-color: var(--bg-main, #f8fafc);
}

.services-vertical-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flow-card {
    background: #ffffff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 18px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.flow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -6px rgba(2, 132, 199, 0.08);
    border-color: #cbd5e1;
}

/* Zikzak Yön Değişimi */
.flow-card.reverse {
    grid-template-columns: 1.25fr 1fr;
}

.flow-card.reverse .flow-media {
    order: 2;
}

.flow-card.reverse .flow-content {
    order: 1;
}

/* Görsel Alanı */
.flow-media {
    position: relative;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.flow-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.flow-card:hover .flow-media img {
    transform: scale(1.03);
}

.flow-media-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* İçerik Alanı */
.flow-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.flow-lead {
    font-size: 14.5px;
    color: var(--text-muted, #64748b);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Standart / Uyarı Notu */
.flow-alert {
    background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 100%);
    border-left: 4px solid #0891b2;
    padding: 12px 16px;
    border-radius: 4px 10px 10px 4px;
    color: #0e7490;
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    border-top: 1px solid rgba(8, 145, 178, 0.1);
    border-right: 1px solid rgba(8, 145, 178, 0.1);
    border-bottom: 1px solid rgba(8, 145, 178, 0.1);
}

.flow-alert i {
    font-size: 16px;
    color: #0891b2;
    margin-top: 2px;
    flex-shrink: 0;
}

.flow-alert strong {
    color: #155e75;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* Maddeler */
.flow-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.flow-checklist li {
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.flow-checklist li i {
    color: #10b981;
    font-size: 12px;
    background: #ecfdf5;
    padding: 4px;
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Buton Grubu */
.flow-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.flow-btns .btn-solid,
.flow-btns .btn-outline {
    font-size: 13.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius, 8px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    box-sizing: border-box;
}

.flow-btns .btn-solid {
    background: var(--primary, #0284c7);
    color: #ffffff !important;
}

.flow-btns .btn-solid:hover {
    background: var(--primary-dark, #0369a1);
}

.flow-btns .btn-outline {
    border: 1px solid var(--border, #e2e8f0);
    color: var(--text-dark, #0f172a);
    background: #ffffff;
}

.flow-btns .btn-outline:hover {
    background: #f1f5f9;
}

/* ==========================================
   3. HİZMET DETAY SAYFASI
   ========================================== */
.detail-wrapper {
    padding: 50px 0 90px 0;
    background-color: var(--bg-main, #f8fafc);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 40px;
    align-items: start;
}

.detail-main {
    background: #ffffff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
}

.detail-media {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-media-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-media-badge i {
    color: #38bdf8;
}

.detail-text-body h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.detail-intro-p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-focus-alert {
    margin: 24px 0;
}

.service-focus-alert p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.detail-text-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin: 32px 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-text-body h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--primary, #0284c7);
    border-radius: 2px;
}

.detail-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.feat-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-pill i {
    color: var(--primary, #0284c7);
    font-size: 15px;
    flex-shrink: 0;
}

.step-flow-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.step-flow-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 14px 16px;
    border-radius: 10px;
}

.step-index {
    background: #e0f2fe;
    color: var(--primary, #0284c7);
    font-size: 13px;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-text strong {
    font-size: 13.5px;
    color: var(--text-dark, #0f172a);
}

.step-text span {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
}

.detail-protocol-box {
    background: #f8fafc;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.protocol-icon {
    font-size: 24px;
    color: var(--primary, #0284c7);
    margin-top: 2px;
    flex-shrink: 0;
}

.protocol-content h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin-bottom: 6px;
}

.protocol-content p {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin: 0;
}

.medical-boundary-note {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 12.5px;
    color: #92400e;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.medical-boundary-note i {
    font-size: 15px;
    color: #d97706;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================
   4. STICKY DANIŞMA PANELİ
   ========================================== */
.detail-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-box {
    background: #ffffff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

.sb-head {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    padding: 28px 22px;
    text-align: center;
}

.sb-head i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #e0f2fe;
}

.sb-head h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.sb-head p {
    font-size: 12.5px;
    color: #e0f2fe;
    line-height: 1.5;
    margin: 0;
}

.sb-body {
    padding: 24px 20px;
}

.sb-body .btn-solid,
.sb-body .btn-outline {
    font-size: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
}

.sb-body .btn-solid {
    background: #25d366;
    color: #ffffff !important;
}

.sb-body .btn-solid:hover {
    background: #20ba5a;
}

.sb-body .btn-outline {
    border: 1px solid var(--border, #e2e8f0);
    color: var(--text-dark, #0f172a);
    background: #f8fafc;
}

.sb-body .btn-outline:hover {
    background: #f1f5f9;
}

.w-100 { width: 100%; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 18px; }

.sb-points {
    border-top: 1px dashed var(--border, #e2e8f0);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.sb-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
}

.sb-points div i {
    color: var(--primary, #0284c7);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.sb-quick-box {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.sb-quick-box small {
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    color: var(--text-muted, #64748b);
    font-weight: 700;
    margin-bottom: 4px;
}

.sb-quick-box a {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary, #0284c7);
}

/* ==========================================
   5. LİSTE ALTI ÇAĞRI BLOĞU (CTA)
   ========================================== */
.service-cta-block {
    background: #0f172a;
    color: #ffffff;
    padding: 50px 0;
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 13.5px;
    color: #94a3b8;
    max-width: 650px;
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-call {
    background: var(--primary, #0284c7);
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
}

.btn-cta-wa {
    background: #25d366;
    color: #ffffff !important;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
}

/* ==========================================
   6. DUYARLI KIRILIMLAR (RESPONSIVE)
   ========================================== */
@media (max-width: 1024px) {
    .trust-strip-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .flow-card,
    .flow-card.reverse {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 24px;
    }

    .flow-card.reverse .flow-media {
        order: 1;
    }

    .flow-card.reverse .flow-content {
        order: 2;
    }

    .flow-media {
        height: 280px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .detail-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .service-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .services-list-container,
    .detail-wrapper {
        padding: 30px 0 50px 0;
    }

    .services-vertical-flow {
        gap: 24px;
    }

    .flow-card {
        padding: 18px;
        border-radius: 14px;
    }

    .flow-media {
        height: 200px;
    }

    .flow-content h2 {
        font-size: 1.35rem;
    }

    .flow-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .flow-btns a {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .detail-main {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .detail-media {
        height: 210px;
        margin-bottom: 20px;
    }

    .detail-text-body h2 {
        font-size: 1.35rem;
    }

    .detail-pill-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .step-flow-list li {
        padding: 12px;
        gap: 10px;
    }

    .detail-protocol-box {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions a {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}