/* Service Details Page Styles */
/* HTML Şablonuna Birebir Uygun */

/* Page Header */
.page-header {
    background: var(--page-header-color, var(--primary-color, #10b9af));
    padding: 150px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23medical)"/></svg>');
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Details Section */
.service-details {
    padding: 100px 0;
    background: var(--white, #ffffff);
}

.service-info {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color, #10b9af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Feature List - HTML Şablonundaki Gibi */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #10b9af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* Feature Icon - Hizmet Bilgileri İçin */
.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #10b9af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* Sidebar - HTML Şablonundaki Gibi */
.sidebar {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-item {
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color, #3b82f6);
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-item a,
.sidebar-item span {
    text-decoration: none;
    color: #000 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.sidebar-item a:hover,
.sidebar-item span:hover {
    color: #000 !important;
}

.sidebar-item.active {
    background: rgba(16, 185, 175, 0.08);
    border-left: 4px solid var(--primary-color, #10b9af);
}

.sidebar-item.active a,
.sidebar-item.active span {
    color: var(--primary-color, #10b9af) !important;
    font-weight: 600;
}


/* Service Content - Quill Editör İçeriği */
.service-content {
    line-height: 1.8;
}

.service-content h2,
.service-content h3,
.service-content h4,
.service-content h5,
.service-content h6 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 600;
}

.service-content h2:first-child,
.service-content h3:first-child,
.service-content h4:first-child,
.service-content h5:first-child,
.service-content h6:first-child {
    margin-top: 0;
}

.service-content p {
    margin-bottom: 15px;
    color: #64748b;
}

.service-content ul,
.service-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-content li {
    margin-bottom: 10px;
    color: #64748b;
}

.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.service-content blockquote {
    border-left: 4px solid var(--primary-color, #10b9af);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #64748b;
}

.service-content strong {
    color: #1e293b;
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .service-info,
    .sidebar {
        padding: 25px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Animations - HTML Şablonundaki Gibi */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accordion / FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    background: transparent;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #1e293b;
    box-shadow: none;
    border: 2px solid var(--primary-color, #3b82f6);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 20px;
    line-height: 1.8;
    color: #64748b;
    background: transparent;
}

.sidebar-item a:hover {
    color: var(--primary-color, #3b82f6);
}

/* Category Filter - Active category highlight */
.sidebar-item.category-filter {
    cursor: pointer;
}

.sidebar-item.category-filter.active {
    background: rgba(16, 185, 175, 0.08);
    border-left: 4px solid var(--primary-color, #10b9af);
}

.sidebar-item.category-filter.active a {
    color: var(--primary-color, #10b9af) !important;
    font-weight: 600;
}
