﻿/* --- Kurumsal Değişkenler --- */
:root {
    --primary-teal: #008080;
    --dark-teal: #004d4d;
    --light-teal: #f0fafa;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
}

.service-detail-wrapper {
    background-color: #fafbfc;
    min-height: 100vh;
}

.text-teal { color: var(--primary-teal); }
.tracking-wider { letter-spacing: 0.1em; }

/* --- Breadcrumb --- */
.breadcrumb-container {
    background-color: #ffffff;
}
.breadcrumb-item a {
    color: var(--primary-teal);
    transition: all 0.2s ease;
}

/* --- Header & Icon --- */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Bölümü */
.service-hero {
    background: linear-gradient(135deg, #008080 0%, #091000 100%);
    /* background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);*/
    position: relative;
    overflow: hidden;
}

    /* Arka plana hafif bir desen efekti (opsiyonel) */
    .service-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 20%);
        pointer-events: none;
    }

.service-title {
    font-size: 2.0rem;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* --- Lead Section (Giriş) --- */
.service-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #495057;
    padding: 1.5rem;
    /*background: white;*/
    background: var(--light-teal);
    border-left: 4px solid var(--primary-color, #008080);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
}

/* --- Main Content (Article Formatı) --- */
.service-main-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    line-height: 1.9;
    color: #2d3748;
}

.service-main-content h2, 
.service-main-content h3 {
    color: var(--primary-teal);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.service-main-content p {
    margin-bottom: 1.5rem;
}

.service-main-content ul {
    margin-bottom: 2rem;
}

.service-main-content li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 5px;
}

/* --- Buton --- */
.btn-service {
    background: transparent;
    color: #198754;
    border: 2px solid #198754;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-service:hover {
        background: #198754;
        color: white;
        transform: translateY(-2px);
    }
/* Back Button */
.back-btn {
    background: transparent;
    color: #198754;
    border: 2px solid #198754;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        background: var(--primary-gradient, #008080);
        border-color: var(--primary-color, #008080);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 128, 128, 0.2);
    }

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .service-title { font-size: 2rem; }
    .service-main-content { padding: 1.5rem; }
    .service-header { margin-bottom: 2rem; }
}