  /* Sayfaya özel stiller */
        .page-header {
            background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2d1516 100%);
            padding: 3rem 0;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
        }
        /* Proje Kartları */
        .project-card-list {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .project-card-list:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(139,44,45,0.15);
        }
        .project-img-wrapper-list {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        .project-img-wrapper-list img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .project-card-list:hover .project-img-wrapper-list img {
            transform: scale(1.08);
        }
        .project-status-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .status-devam {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: #fff;
        }
        .status-tamamlandi {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: #fff;
        }
        .status-planlandi {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: #fff;
        }
        .project-category-tag {
            display: inline-block;
            background: #f0ebe0;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary-burgundy);
            margin-bottom: 0.75rem;
        }
        .project-content-list {
            padding: 1.2rem;
            flex: 1;
        }
        .project-title-list {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--primary-burgundy);
            line-height: 1.4;
        }
        .project-desc-list {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 0.75rem;
            border-top: 1px solid #eee;
        }
        .project-date {
            font-size: 0.7rem;
            color: #999;
        }
        .project-date i {
            margin-right: 4px;
            color: var(--primary-gold);
        }
        .project-link {
            color: var(--primary-gold);
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        .project-link:hover {
            color: var(--primary-burgundy);
            transform: translateX(4px);
            display: inline-block;
        }
        /* Kategori Filtre Kartı */
        .category-sidebar {
            background: white;
            border-radius: 28px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
            border-bottom: 3px solid var(--primary-gold);
        }
        .category-sidebar h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-burgundy);
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        .category-sidebar h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 3px;
        }
        .category-filter-btn {
            display: block;
            width: 100%;
            padding: 12px 18px;
            margin-bottom: 0.8rem;
            border: none;
            background: #f8f5ef;
            border-radius: 50px;
            text-align: left;
            font-weight: 600;
            color: #4a4a4a;
            transition: all 0.3s;
            cursor: pointer;
        }
        .category-filter-btn i {
            margin-right: 12px;
            width: 24px;
            color: var(--primary-gold);
        }
        .category-filter-btn.active {
            background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
            color: white;
        }
        .category-filter-btn.active i {
            color: white;
        }
        .category-filter-btn:hover:not(.active) {
            background: #e8e0d4;
            transform: translateX(5px);
        }
        .category-count {
            float: right;
            background: rgba(0,0,0,0.08);
            padding: 2px 8px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        .category-filter-btn.active .category-count {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        /* Pagination */
        .pagination-custom {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .page-btn-custom {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid #e0d5c0;
            background: white;
            color: var(--primary-burgundy);
            font-weight: 600;
            transition: all 0.3s;
        }
        .page-btn-custom.active {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #2d2d2d;
        }
        .page-btn-custom:hover:not(.active) {
            border-color: var(--primary-gold);
            background: #fff3e0;
            transform: translateY(-2px);
        }
        .nav-btn-custom {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid var(--primary-gold);
            background: white;
            color: var(--primary-gold);
            transition: all 0.3s;
        }
        .nav-btn-custom:hover:not(:disabled) {
            background: var(--primary-gold);
            color: white;
            transform: scale(1.05);
        }
        .nav-btn-custom:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        /* Loading */
        .loading-spinner {
            text-align: center;
            padding: 3rem;
        }
        .no-results {
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: 30px;
        }
        @media (max-width: 992px) {
            .category-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }
            .page-header h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .project-img-wrapper-list {
                height: 180px;
            }
            .project-title-list {
                font-size: 1rem;
            }
        }