/* ========================================
       SERVICE DETAIL - MODERN TASARIM
    ======================================== */

    /* Hero */
    .service-hero {
        position: relative;
        background: var(--secondary-color);
        color: #fff;
        padding: 120px 0 80px;
        overflow: hidden;
    }
    .service-hero::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .service-hero .hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(4px);
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    .service-hero h1 {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    .service-hero .lead {
        font-size: 1.25rem;
        opacity: 0.85;
        max-width: 600px;
    }
    .service-hero .hero-stats {
        display: flex;
        gap: 2.5rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    .service-hero .hero-stats .stat-item {
        text-align: center;
    }
    .service-hero .hero-stats .stat-value {
        font-size: 2rem;
        font-weight: 800;
        display: block;
        line-height: 1;
    }
    .service-hero .hero-stats .stat-label {
        font-size: 0.75rem;
        opacity: 0.7;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Sticky Nav */
    .sticky-nav {
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,0.04);
        padding: 12px 0;
        top: 70px;
        z-index: 99;
        transition: all 0.2s;
    }
    .sticky-nav .nav-link {
        font-size: 0.8rem;
        font-weight: 600;
        color: #1a1a1a;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        transition: all 0.2s;
        text-decoration: none;
        letter-spacing: 0.3px;
    }
    .sticky-nav .nav-link:hover,
    .sticky-nav .nav-link:focus {
        background: var(--primary-color);
        color: #fff !important;
    }
    .sticky-nav .nav-link.active {
        background: var(--primary-color);
        color: #fff !important;
    }

    /* Section başlıkları */
    .section-title {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem;
        position: relative;
    }
    /* Benefit Cards */
    .benefit-card {
        background: #eef2fb;
        border: 1px solid rgba(0,0,0,0.04);
        border-radius: 16px;
        padding: 1.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }
    .benefit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        border-color: var(--primary-color);
    }
    .benefit-card .icon {
        width: 48px;
        height: 48px;
        background: rgba(108,59,255,0.08);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    .benefit-card h5 {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .benefit-card p {
        font-size: 0.95rem;
        color: #6b7280;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Timeline Modern */
    .timeline-modern .timeline-item {
        position: relative;
        padding-left: 2.5rem;
        padding-bottom: 2rem;
        border-left: 2px solid rgba(108,59,255,0.2);
        transition: all 0.2s;
    }
    .timeline-modern .timeline-item:last-child {
        border-left-color: transparent;
        padding-bottom: 0;
    }
    .timeline-modern .timeline-dot {
        position: absolute;
        left: -12px;
        top: 4px;
        width: 22px;
        height: 22px;
        background: var(--primary-color);
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 0 0 3px var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
    }
    .timeline-modern .timeline-item:last-child .timeline-dot {
        background: var(--secondary-color);
        box-shadow: 0 0 0 3px var(--secondary-color);
    }
    .timeline-modern .timeline-content h5 {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    .timeline-modern .timeline-content p {
        font-size: 0.95rem;
        color: #6b7280;
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* Stats Cards */
    .stat-card {
        background: #fff;
        border: 1px solid rgba(0,0,0,0.04);
        border-radius: 16px;
        padding: 1.5rem 1rem;
        text-align: center;
        transition: all 0.2s;
        height: 100%;
    }
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.04);
    }
    .stat-card .stat-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    .stat-card .stat-number {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--secondary-color);
        line-height: 1.2;
    }
    .stat-card .stat-label {
        font-size: 0.85rem;
        color: #6b7280;
        font-weight: 500;
    }

    /* Case Study */
    .case-study-card {
        background: linear-gradient(135deg, #cfd9f0 0%, #f0f4ff 100%);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(108,59,255,0.08);
    }
    .case-study-card .case-image {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    }

    /* CTA Block */
    .cta-block {
        background: linear-gradient(135deg, var(--color-gray-600) 0%, #1a1a2e 100%);
        border-radius: 24px;
        padding: 3rem 2rem;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    .cta-block::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .cta-block h3 {
        font-weight: 800;
        font-size: 2rem;
        letter-spacing: -0.02em;
        margin-bottom: 0.5rem;
        position: relative;
    }
    .cta-block p {
        opacity: 0.8;
        max-width: 500px;
        margin: 0 auto 1.5rem;
        font-size: 1.1rem;
        position: relative;
    }

    /* Sidebar */
    .sidebar-card {
        background: #fff;
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,0.04);
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .sidebar-card .list-item {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        transition: all 0.2s;
    }
    .sidebar-card .list-item:last-child {
        border-bottom: none;
    }
    .sidebar-card .list-item a {
        color: #1a1a1a;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
    }
    .sidebar-card .list-item a:hover {
        color: var(--primary-color);
    }
    .sidebar-card .list-item a i {
        font-size: 0.8rem;
        opacity: 0.5;
        transition: opacity 0.2s;
    }
    .sidebar-card .list-item a:hover i {
        opacity: 1;
    }

    .quick-contact {
        background: #f8faff;
        border-radius: 16px;
        padding: 1.5rem;
        text-align: center;
    }
    .quick-contact .btn {
        border-radius: 50px;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .service-hero {
            padding: 100px 0 60px;
        }
        .service-hero h1 {
            font-size: 2.5rem;
        }
        .service-hero .hero-stats {
            gap: 1.5rem;
        }
        .service-hero .hero-stats .stat-value {
            font-size: 1.5rem;
        }
        .sticky-nav .nav-link {
            font-size: 0.7rem;
            padding: 0.3rem 0.8rem;
        }
        .section-title {
            font-size: 1.6rem;
        }
        .cta-block {
            padding: 2rem 1.5rem;
        }
        .cta-block h3 {
            font-size: 1.5rem;
        }
        .case-study-card {
            padding: 1.5rem;
        }
    }

    .content h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark);
        margin-top: 2rem;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .content h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--dark);
        margin-top: 1.75rem;
        margin-bottom: 0.75rem;
        letter-spacing: -0.01em;
        line-height: 1.25;
    }

    .content h4 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--dark);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        letter-spacing: -0.01em;
        line-height: 1.3;
    }

    .content h5 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--dark);
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }

    .content h6 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .content h2 {
            font-size: 1.75rem;
            margin-top: 1.75rem;
        }
        .content h3 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
        }
        .content h4 {
            font-size: 1.3rem;
            margin-top: 1.25rem;
        }
        .content h5 {
            font-size: 1.1rem;
        }
        .content h6 {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .content h2 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
        }
        .content h3 {
            font-size: 1.3rem;
            margin-top: 1.25rem;
        }
        .content h4 {
            font-size: 1.1rem;
            margin-top: 1rem;
        }
        .content h5 {
            font-size: 1rem;
        }
        .content h6 {
            font-size: 0.9rem;
        }
    }

    /* İçerik paragraf ve diğer metinler */
    .content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #4a4a4a;
        margin-bottom: 1rem;
    }

    .content strong,
    .content b {
        color: var(--secondary-color);
        font-weight: 600;
    }

    .content a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .content a:hover {
        text-decoration: underline;
    }

    .content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 1.5rem 0;
    }

    .content .btn {
        display: inline-block;
        padding: 0.6rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
    }

    @media (max-width: 576px) {
        .content p {
            font-size: 0.95rem;
        }
    }

    .content ul {
        list-style: none;
        padding-left: 0;
        margin: 1.5rem 0;
    }

    .content ul li {
        position: relative;
        padding: 0.5rem 0 0.5rem 2rem;
        font-size: 1rem;
        line-height: 1.6;
        color: #1a1a1a;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.2s ease;
    }

    .content ul li:last-child {
        border-bottom: none;
    }

    .content ul li::before {
        content: '●';
        position: absolute;
        left: 0;
        top: 0.5rem;
        color: var(--primary-color);
        font-size: 1.2rem;
        opacity: 0.8;
    }

    .content ul.check-list li::before {
        content: '✓';
        font-weight: 700;
        font-size: 1.1rem;
        top: 0.45rem;
        opacity: 1;
    }

    /* Numaralı listeler */
    .content ol {
        padding-left: 1.5rem;
        margin: 1.5rem 0;
    }

    .content ol li {
        padding: 0.4rem 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #1a1a1a;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .content ol li:last-child {
        border-bottom: none;
    }

    /* İç içe listeler */
    .content ul ul,
    .content ol ul,
    .content ul ol,
    .content ol ol {
        margin: 0.5rem 0 0.5rem 1.5rem;
    }

    .content ul ul li::before {
        content: '◦';
        font-size: 1.4rem;
        top: 0.3rem;
    }

    .content ul ul ul li::before {
        content: '▪';
        font-size: 1.2rem;
        top: 0.4rem;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .content ul li {
            padding: 0.4rem 0 0.4rem 1.6rem;
            font-size: 0.9rem;
        }
        .content ul li::before {
            font-size: 1rem;
            top: 0.4rem;
        }
        .content ol li {
            font-size: 0.9rem;
        }
    }


    .faqs-section .accordion {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .faqs-section .accordion-item {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
        border-radius: 16px !important;
        overflow: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .faqs-section .accordion-item:hover {
        border-color: rgba(var(--primary-color-rgb), 0.12) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    /* Aktif item */
    .faqs-section .accordion-item.active {
        border-color: rgba(var(--primary-color-rgb), 0.15) !important;
        box-shadow: 0 8px 30px rgba(var(--primary-color-rgb), 0.06);
    }

    /* Accordion başlık */
    .faqs-section .accordion-button {
        background: transparent !important;
        color: #1a1a1a !important;
        font-weight: 600;
        font-size: 1.05rem;
        padding: 1.25rem 1.5rem;
        border: none;
        box-shadow: none !important;
        transition: all 0.3s ease;
        gap: 1rem;
        border-radius: 16px !important;
        position: relative;
    }

    .faqs-section .accordion-button:hover {
        background: rgba(var(--primary-color-rgb), 0.02) !important;
    }

    .faqs-section .accordion-button:not(.collapsed) {
        background: transparent !important;
        color: #1a1a1a !important;
        border-radius: 16px 16px 0 0 !important;
    }

    /* Soru numarası */
    .faqs-section .question-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: rgba(var(--primary-color-rgb), 0.06);
        color: var(--primary-color);
        font-size: 0.7rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .faqs-section .accordion-button:not(.collapsed) .question-number {
        background: var(--primary-color);
        color: #fff;
    }

    /* Soru metni */
    .faqs-section .question-text {
        flex: 1;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    /* Ok ikonu */
    .faqs-section .accordion-button::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c3bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
        background-size: 20px;
        width: 20px;
        height: 20px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: auto;
        flex-shrink: 0;
        opacity: 0.6;
    }

    .faqs-section .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg);
        opacity: 1;
    }

    /* Cevap içeriği */
    .faqs-section .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
        color: #4a4a4a;
        font-size: 0.95rem;
        line-height: 1.8;
        background: #ffffff;
        border-top: 1px solid rgba(var(--primary-color-rgb), 0.04);
    }

    .faqs-section .accordion-body p:last-child {
        margin-bottom: 0;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .faqs-section .accordion-button {
            font-size: 0.95rem;
            padding: 1rem 1.25rem;
            gap: 0.75rem;
        }
        .faqs-section .question-number {
            width: 24px;
            height: 24px;
            min-width: 24px;
            font-size: 0.6rem;
        }
        .faqs-section .accordion-button::after {
            background-size: 16px;
            width: 16px;
            height: 16px;
        }
        .faqs-section .accordion-body {
            padding: 0 1.25rem 1.25rem 1.25rem;
            font-size: 0.9rem;
        }
    }