

   /* Hizmetler Alanı Özel Stilleri */
        .services-container {
            margin: 40px 0;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .services-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .services-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Hızlı Erişim Bölümü - Sade Tasarım */
        .services-quick-access {
            background: #f8fafc;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .services-quick-access-header {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .services-quick-access-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .services-quick-access-title i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .services-search-box {
            position: relative;
        }
        
        .select2-container--bootstrap-5 .select2-selection {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            min-height: 55px;
            transition: all 0.3s ease;
        }
        
        .select2-container--bootstrap-5 .select2-selection:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
            color: #2c3e50;
            line-height: 45px;
            padding-left: 15px;
            font-weight: 500;
        }
        
        .select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
            color: #a0aec0;
        }
        
        .select2-container--bootstrap-5 .select2-selection__arrow {
            height: 53px;
            right: 12px;
        }
        
        /* Select2 dropdown stilleri */
        .select2-container--bootstrap-5 .select2-dropdown {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .select2-container--bootstrap-5 .select2-results__option {
            padding: 12px 15px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .select2-container--bootstrap-5 .select2-results__option--highlighted {
            background-color: #3498db;
            color: white;
        }
        
        .select2-container--bootstrap-5 .select2-results__option--selected {
            background-color: #f8f9fa;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .search-hint {
            text-align: center;
            margin-top: 15px;
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Üst Kategori Stilleri */
        .services-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            padding: 12px 25px;
            background-color: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            color: #495057;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .category-btn:hover {
            background-color: #e9ecef;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .category-btn.active {
            background-color: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .category-btn.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #3498db;
        }
        
        /* Alt Kategori Yükleme Alanı */
        .subcategories-container {
            min-height: 300px;
            position: relative;
        }
        
        .subcategories-loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .subcategories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .subcategories-grid.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        
        .subcategory-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .subcategory-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .subcategory-img {
            height: 180px;
            background-color: #3498db;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .subcategory-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .subcategory-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .subcategory-desc {
            color: #7f8c8d;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .subcategory-link {
            display: inline-flex;
            align-items: center;
            color: #3498db;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .subcategory-link:hover {
            color: #2980b9;
            transform: translateX(5px);
        }
        
        .subcategory-link i {
            margin-left: 5px;
            transition: transform 0.2s;
        }
        
        .subcategory-link:hover i {
            transform: translateX(3px);
        }
        
        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .services-categories {
                flex-direction: column;
                align-items: center;
            }
            
            .category-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .subcategories-grid {
                grid-template-columns: 1fr;
            }
            
            .services-quick-access {
                padding: 20px;
            }
        }


.subcategory-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: none;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.15);
}

.subcategory-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.subcategory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subcategory-card:hover .subcategory-img img {
    transform: scale(1.1);
}

/* Gradient overlay efekti */
.subcategory-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.4) 0%, rgba(40, 167, 69, 0.3) 100%);
    z-index: 1;
}

.subcategory-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: white;
}

.subcategory-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subcategory-desc {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.subcategory-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.subcategory-link:hover {
    color: #0056b3;
    transform: translateX(5px);
}
        